Skip to content

Commit

Permalink
complete removal of greyhound support #2594
Browse files Browse the repository at this point in the history
  • Loading branch information
hobu committed Jun 27, 2019
1 parent 1cbe386 commit 25294aa
Show file tree
Hide file tree
Showing 7 changed files with 2 additions and 194 deletions.
5 changes: 0 additions & 5 deletions cmake/options.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,6 @@ option(BUILD_PLUGIN_I3S
add_feature_info("I3S plugin" BUILD_PLUGIN_I3S
"Read from a I3S server or from a SLPK file")

option(BUILD_PLUGIN_GREYHOUND
"Choose if Greyhound support should be built" FALSE)
add_feature_info("Greyhound plugin" BUILD_PLUGIN_GREYHOUND
"read points from a Greyhound server")

option(BUILD_PLUGIN_ICEBRIDGE
"Choose if Icebridge support should be built" FALSE)
add_feature_info("Icebridge plugin" BUILD_PLUGIN_ICEBRIDGE
Expand Down
116 changes: 0 additions & 116 deletions doc/stages/readers.greyhound.rst

This file was deleted.

6 changes: 1 addition & 5 deletions doc/stages/readers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ normalize common dimension types, like X, Y, Z, or Intensity, which are often
found in LiDAR point clouds. Not all dimension types need to be fixed, however.
Database drivers typically return unstructured lists of dimensions. A reader
might provide a simple file type, like :ref:`readers.text`, a complex database
like :ref:`readers.oci`, or a network service like :ref:`readers.greyhound`.
like :ref:`readers.oci`, or a network service like :ref:`readers.ept`.


.. toctree::
Expand All @@ -23,7 +23,6 @@ like :ref:`readers.oci`, or a network service like :ref:`readers.greyhound`.
readers.faux
readers.gdal
readers.geowave
readers.greyhound
readers.i3s
readers.ilvis2
readers.las
Expand Down Expand Up @@ -73,9 +72,6 @@ like :ref:`readers.oci`, or a network service like :ref:`readers.greyhound`.
:ref:`readers.geowave`
Read point cloud data from Accumulo.

:ref:`readers.greyhound`
Query point cloud data from a Greyhound server.

:ref:`readers.i3s`
Read data stored in the Esri I3S format. The data is read from an
appropriate server.
Expand Down
61 changes: 0 additions & 61 deletions doc/stages/writers.greyhound.rst

This file was deleted.

5 changes: 0 additions & 5 deletions doc/stages/writers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ dimension type, while others only understand fixed dimension names.
writers.e57
writers.gdal
writers.geowave
writers.greyhound
writers.las
writers.matlab
writers.nitf
Expand Down Expand Up @@ -51,10 +50,6 @@ dimension type, while others only understand fixed dimension names.
:ref:`writers.geowave`
Write point cloud data to Accumulo.

:ref:`writers.greyhound`
Append new dimensions (or update existing dimensions) onto a Greyhound
resource. Must be used along with a Greyhound reader, and intermediate
filters that cull points are not allowed.

:ref:`writers.las`
Write ASPRS LAS versions 1.0 - 1.4 formatted data. LAZ support is also
Expand Down
1 change: 0 additions & 1 deletion pdal/StageExtensions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ const std::string extension_json (
R"PDALEXTENSIONS(
{
"readers.greyhound" : "greyhound",
"readers.icebridge" : "icebridge h5",
"readers.matlab" : "mat",
"writers.matlab" : "mat",
Expand Down
2 changes: 1 addition & 1 deletion pdal/StageFactory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ namespace pdal
namespace
{

const std::vector<std::string> protocols { "ept", "greyhound", "i3s" };
const std::vector<std::string> protocols { "ept", "i3s" };

std::string getDriverProtocol(std::string filename)
{
Expand Down

0 comments on commit 25294aa

Please sign in to comment.