Skip to content

Commit

Permalink
Merge branch 'master' into azp
Browse files Browse the repository at this point in the history
  • Loading branch information
hobu committed Jul 23, 2019
2 parents 55f738b + 28541f6 commit 3f8d821
Show file tree
Hide file tree
Showing 46 changed files with 647 additions and 2,937 deletions.
7 changes: 1 addition & 6 deletions PDALConfig.cmake.in
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,6 @@ endforeach(_dir)

include("${CMAKE_CURRENT_LIST_DIR}/PDALTargets.cmake")

if (WIN32)
# On windows link in pdal_util as well
set(PDAL_LIBRARIES "@PDAL_LIB_NAME@" "@PDAL_UTIL_LIB_NAME@")
else (WIN32)
set(PDAL_LIBRARIES "@PDAL_LIB_NAME@")
endif(WIN32)
set(PDAL_LIBRARIES @PDAL_BASE_LIB_NAME@ @PDAL_UTIL_LIB_NAME@)

check_required_components(PDAL)
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 filters/PlaneFitFilter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ void PlaneFitFilter::setPlaneFit(PointView& view, const PointId& i,
Eigen::SelfAdjointEigenSolver<Eigen::Matrix3d> solver(B);
if (solver.info() != Eigen::Success)
throwError("Cannot perform eigen decomposition.");
auto eval = solver.eigenvalues();
Eigen::Vector3d normal = solver.eigenvectors().col(0);

// Compute point to plane distance of the query point.
Expand Down

0 comments on commit 3f8d821

Please sign in to comment.