[pdal-commits] [PDAL/PDAL] 483a2e: Initial commit of DBSCAN clustering

Connor Manning noreply at github.com
Tue Feb 11 11:18:48 PST 2020


  Branch: refs/heads/issue-2902-ept-update
  Home:   https://github.com/PDAL/PDAL
  Commit: 483a2ecdcdb696d4027503c49b9dcb9d2a919bf9
      https://github.com/PDAL/PDAL/commit/483a2ecdcdb696d4027503c49b9dcb9d2a919bf9
  Author: Bradley J Chambers <brad.chambers at gmail.com>
  Date:   2020-01-17 (Fri, 17 Jan 2020)

  Changed paths:
    M doc/references.rst
    A doc/stages/filters.dbscan.rst
    M doc/stages/filters.rst
    A filters/DBSCANFilter.cpp
    A filters/DBSCANFilter.hpp

  Log Message:
  -----------
  Initial commit of DBSCAN clustering


  Commit: 1389c7ea3ce008a3eb26ebb6e07eaa74fba14980
      https://github.com/PDAL/PDAL/commit/1389c7ea3ce008a3eb26ebb6e07eaa74fba14980
  Author: Bradley J Chambers <brad.chambers at gmail.com>
  Date:   2020-01-17 (Fri, 17 Jan 2020)

  Changed paths:
    M filters/DBSCANFilter.cpp
    M pdal/KDIndex.hpp

  Log Message:
  -----------
  Begin playing around with n-dimensional KDIndex


  Commit: e443da4dd58a270351d3ade1220c874f30098c64
      https://github.com/PDAL/PDAL/commit/e443da4dd58a270351d3ade1220c874f30098c64
  Author: Bradley J Chambers <brad.chambers at gmail.com>
  Date:   2020-01-17 (Fri, 17 Jan 2020)

  Changed paths:
    M filters/DBSCANFilter.cpp
    M filters/DBSCANFilter.hpp

  Log Message:
  -----------
  Finishing KDFlexIndex


  Commit: 9ed519f2aad2f833b4cb0598237372c450fae0cc
      https://github.com/PDAL/PDAL/commit/9ed519f2aad2f833b4cb0598237372c450fae0cc
  Author: Bradley J Chambers <brad.chambers at gmail.com>
  Date:   2020-01-17 (Fri, 17 Jan 2020)

  Changed paths:
    M filters/DBSCANFilter.cpp

  Log Message:
  -----------
  Initialize bbox properly


  Commit: 621a7f43c696330893fb3ed83f751d79fa21eaab
      https://github.com/PDAL/PDAL/commit/621a7f43c696330893fb3ed83f751d79fa21eaab
  Author: Bradley J Chambers <brad.chambers at gmail.com>
  Date:   2020-01-17 (Fri, 17 Jan 2020)

  Changed paths:
    M filters/DBSCANFilter.cpp
    M filters/DBSCANFilter.hpp

  Log Message:
  -----------
  Implicit deletes and move ctor to CPP


  Commit: c86934f8b320d1e26dcc50fbc1beb72c62a54e37
      https://github.com/PDAL/PDAL/commit/c86934f8b320d1e26dcc50fbc1beb72c62a54e37
  Author: Bradley J Chambers <brad.chambers at gmail.com>
  Date:   2020-01-17 (Fri, 17 Jan 2020)

  Changed paths:
    M pdal/KDIndex.hpp

  Log Message:
  -----------
  Remove the explicit KDNormalIndex as it can be replicated with KDFlexIndex


  Commit: d0e3a4a157bc76942207d2da5fa1de3a0590801b
      https://github.com/PDAL/PDAL/commit/d0e3a4a157bc76942207d2da5fa1de3a0590801b
  Author: Bradley J Chambers <brad.chambers at gmail.com>
  Date:   2020-01-17 (Fri, 17 Jan 2020)

  Changed paths:
    M filters/DBSCANFilter.cpp
    M pdal/KDIndex.hpp

  Log Message:
  -----------
  Move KDFlexIndex from DBSCANFilter to KDIndex


  Commit: 9ee2528ce369382e16d0d5677732f7d867c6975f
      https://github.com/PDAL/PDAL/commit/9ee2528ce369382e16d0d5677732f7d867c6975f
  Author: Bradley J Chambers <brad.chambers at gmail.com>
  Date:   2020-01-17 (Fri, 17 Jan 2020)

  Changed paths:
    M doc/stages/filters.dbscan.rst

  Log Message:
  -----------
  Add note about dimensions in the docs


  Commit: 3118efaa4d54bc0c496ae2527cc135a4582663d8
      https://github.com/PDAL/PDAL/commit/3118efaa4d54bc0c496ae2527cc135a4582663d8
  Author: Bradley J Chambers <brad.chambers at gmail.com>
  Date:   2020-01-17 (Fri, 17 Jan 2020)

  Changed paths:
    M doc/stages/filters.dbscan.rst
    M filters/DBSCANFilter.cpp

  Log Message:
  -----------
  Default dimensions to X,Y,Z


  Commit: 0475c5f20be6e185c26658eb05c1ae14e8f377d3
      https://github.com/PDAL/PDAL/commit/0475c5f20be6e185c26658eb05c1ae14e8f377d3
  Author: Bradley J Chambers <brad.chambers at gmail.com>
  Date:   2020-01-17 (Fri, 17 Jan 2020)

  Changed paths:
    M doc/stages/filters.dbscan.rst

  Log Message:
  -----------
  Clarification on dimensions when setting min_points


  Commit: cf60baa68cd8e5d5a072d97f58500eeac4212098
      https://github.com/PDAL/PDAL/commit/cf60baa68cd8e5d5a072d97f58500eeac4212098
  Author: Bradley J Chambers <brad.chambers at gmail.com>
  Date:   2020-01-17 (Fri, 17 Jan 2020)

  Changed paths:
    M doc/references.rst
    A doc/stages/filters.dbscan.rst
    M doc/stages/filters.rst
    A filters/DBSCANFilter.cpp
    A filters/DBSCANFilter.hpp
    M pdal/KDIndex.hpp

  Log Message:
  -----------
  Initial commit of DBSCAN clustering

* Add a new n-dimensional index called KDFlexIndex to KDIndex


  Commit: 0a90a05b270e0cb55773188b78d593f51af37784
      https://github.com/PDAL/PDAL/commit/0a90a05b270e0cb55773188b78d593f51af37784
  Author: Andrew Bell <andrew.bell.ia at gmail.com>
  Date:   2020-01-17 (Fri, 17 Jan 2020)

  Changed paths:
    A test/data/filters/elm2.txt
    M test/unit/filters/ELMFilterTest.cpp

  Log Message:
  -----------
  Add a test for the ELM filter (#2869)

* Add simple test for ELM filter.

* Add a second test.


  Commit: b47a7625f5b90da8bdf44a52412eddee0cbc5ef2
      https://github.com/PDAL/PDAL/commit/b47a7625f5b90da8bdf44a52412eddee0cbc5ef2
  Author: Howard Butler <howard at hobu.co>
  Date:   2020-01-20 (Mon, 20 Jan 2020)

  Changed paths:
    M CMakeLists.txt

  Log Message:
  -----------
  bump version to 2.1.0 to eliminate confusion with 2.0.0 builds when using master


  Commit: 653947042c73b0d7cbe28c5e3c5e6c9630a46748
      https://github.com/PDAL/PDAL/commit/653947042c73b0d7cbe28c5e3c5e6c9630a46748
  Author: Jules Robichaud-Gagnon <j.robichaudg at gmail.com>
  Date:   2020-01-22 (Wed, 22 Jan 2020)

  Changed paths:
    M doc/stages/filters.python.rst

  Log Message:
  -----------
  Python filter doc (#2879)

* Add a warning to remember numpy needs to be installed

* Use appropriate key for file name

* Fix some code indent issues


  Commit: f364adf8f87be53aabed7fa3a3f0b707c9901d87
      https://github.com/PDAL/PDAL/commit/f364adf8f87be53aabed7fa3a3f0b707c9901d87
  Author: Nick M Cummins <nickmcummins at gmail.com>
  Date:   2020-01-23 (Thu, 23 Jan 2020)

  Changed paths:
    M tools/nitfwrap/NitfWrap.cpp

  Log Message:
  -----------
  NitfWrap: Fix compilation error 'pdal::Log::Log(const string&, const string&, bool) is private within this context' (#2877)


  Commit: b2976da97f4e15c378af5c5da04d2cba5d5be4d3
      https://github.com/PDAL/PDAL/commit/b2976da97f4e15c378af5c5da04d2cba5d5be4d3
  Author: Andrew Bell <andrew.bell.ia at gmail.com>
  Date:   2020-01-24 (Fri, 24 Jan 2020)

  Changed paths:
    M pdal/GDALUtils.cpp
    M pdal/Geometry.hpp
    M pdal/Polygon.hpp

  Log Message:
  -----------
  Gdal utils doc (#2884)

* Update docs for GDALUtils.
Fix leaks and such in getPolygons().

* Move dialect declaration.


  Commit: 2389b27ba2d84debbaef5441e202238b41558638
      https://github.com/PDAL/PDAL/commit/2389b27ba2d84debbaef5441e202238b41558638
  Author: Andrew Bell <andrew.bell.ia at gmail.com>
  Date:   2020-01-24 (Fri, 24 Jan 2020)

  Changed paths:
    M filters/ClusterFilter.cpp
    M filters/ClusterFilter.hpp

  Log Message:
  -----------
  Register ClusterID dimension in filters.cluster (#2887)

* Make ClusterID a built-in dimension.

* Make sure cluster dimension gets registered.


  Commit: d4a2fdefbe3bc3519f1c81c7484c4c26d3f0a36d
      https://github.com/PDAL/PDAL/commit/d4a2fdefbe3bc3519f1c81c7484c4c26d3f0a36d
  Author: Howard Butler <howard at hobu.co>
  Date:   2020-01-28 (Tue, 28 Jan 2020)

  Changed paths:
    M doc/stages/readers.numpy.rst
    M pdal/StageExtensions.cpp
    M plugins/python/io/CMakeLists.txt
    M plugins/python/io/NumpyReader.cpp
    M plugins/python/io/NumpyReader.hpp
    M plugins/python/plang/Invocation.cpp
    M plugins/python/plang/Invocation.hpp
    M plugins/python/test/NumpyReaderTest.cpp
    A test/data/plang/threedim.py

  Log Message:
  -----------
  Support passing a reference to a .py script to readers.numpy along with function/module/args options that reference a function that returns a Numpy array (#2867)

* support passing a reference to a .py script to readers.numpy along with function/module/args options that reference a function that returns a Numpy array

* make sure to add nlohman includes

* address review comments in #2867

* increment PDAL version to 2.1 to avoid collision

* remove unused reference to nlohman


  Commit: 49a4bc8b98efd9f38657f105977a8c9e8b085c25
      https://github.com/PDAL/PDAL/commit/49a4bc8b98efd9f38657f105977a8c9e8b085c25
  Author: vvmruder <vvmruder at users.noreply.github.com>
  Date:   2020-01-28 (Tue, 28 Jan 2020)

  Changed paths:
    A doc/images/filters.transformation.rotation_x_axis_counter-clockwise.svg
    A doc/images/filters.transformation.rotation_x_axis_counter-clockwise.svg.png
    A doc/images/filters.transformation.rotation_y_axis_counter-clockwise.svg
    A doc/images/filters.transformation.rotation_y_axis_counter-clockwise.svg.png
    A doc/images/filters.transformation.rotation_z_axis_counter-clockwise.svg
    A doc/images/filters.transformation.rotation_z_axis_counter-clockwise.svg.png
    A doc/images/filters.transformation.scaling.svg
    A doc/images/filters.transformation.scaling.svg.png
    A doc/images/filters.transformation.translation.svg
    A doc/images/filters.transformation.translation.svg.png
    M doc/stages/filters.transformation.rst

  Log Message:
  -----------
  [WIP] Add little description on transformation filter (#2747)

* add graphics and first description

* fix styling

* fix styling

* add description for more tranformations

* fix wrong order for z-axis rotation, add more description about figures

* fix typo

* refine text

* refine text


  Commit: 6924fde879c5a19fbef37eea9ae02ee393ca0440
      https://github.com/PDAL/PDAL/commit/6924fde879c5a19fbef37eea9ae02ee393ca0440
  Author: Bradley J Chambers <brad.chambers at gmail.com>
  Date:   2020-01-28 (Tue, 28 Jan 2020)

  Changed paths:

  Log Message:
  -----------
  Merge branch 'issue-2748-dbscan-clustering' of github.com:PDAL/PDAL into issue-2748-dbscan-clustering


  Commit: 8e705cebf3296d0a0be0c8da57e60f7a13a06920
      https://github.com/PDAL/PDAL/commit/8e705cebf3296d0a0be0c8da57e60f7a13a06920
  Author: Bradley J Chambers <brad.chambers at gmail.com>
  Date:   2020-01-28 (Tue, 28 Jan 2020)

  Changed paths:
    M doc/stages/filters.dbscan.rst

  Log Message:
  -----------
  Add versionadded


  Commit: 58e7c35ee74723424c1e5edfc3b9adc60911a907
      https://github.com/PDAL/PDAL/commit/58e7c35ee74723424c1e5edfc3b9adc60911a907
  Author: Andrew Bell <andrew.bell.ia at gmail.com>
  Date:   2020-01-29 (Wed, 29 Jan 2020)

  Changed paths:
    M io/PcdReader.cpp

  Log Message:
  -----------
  Force X/Y/Z to 64 bit. (#2893)


  Commit: 146b8fab032326fa7a2fed6477396fa4dbe6713b
      https://github.com/PDAL/PDAL/commit/146b8fab032326fa7a2fed6477396fa4dbe6713b
  Author: Howard Butler <howard at hobu.co>
  Date:   2020-01-30 (Thu, 30 Jan 2020)

  Changed paths:
    M CMakeLists.txt

  Log Message:
  -----------
  require C++17 #2890 (#2896)


  Commit: c9274622f87273ea6b1e21f9e4e07b800571cc8c
      https://github.com/PDAL/PDAL/commit/c9274622f87273ea6b1e21f9e4e07b800571cc8c
  Author: Howard Butler <howard at hobu.co>
  Date:   2020-01-30 (Thu, 30 Jan 2020)

  Changed paths:
    R cmake/sqlite.cmake
    M plugins/CMakeLists.txt
    R plugins/sqlite/CMakeLists.txt
    R plugins/sqlite/io/SQLiteCommon.cpp
    R plugins/sqlite/io/SQLiteCommon.hpp
    R plugins/sqlite/io/SQLiteReader.cpp
    R plugins/sqlite/io/SQLiteReader.hpp
    R plugins/sqlite/io/SQLiteWriter.cpp
    R plugins/sqlite/io/SQLiteWriter.hpp
    R plugins/sqlite/test/SQLiteTest.cpp
    M scripts/azp/linux.yml
    M scripts/azp/osx.yml
    M scripts/azp/win.yml
    M scripts/conda/osx.sh

  Log Message:
  -----------
  remove SQLite drivers #2646 (#2897)

* remove SQLite drivers #2646

* remove CMake for sqlite


  Commit: a7ceb208511dc47d94e040e982cdf5878e2ff5a2
      https://github.com/PDAL/PDAL/commit/a7ceb208511dc47d94e040e982cdf5878e2ff5a2
  Author: chambbj <brad.chambers at gmail.com>
  Date:   2020-01-30 (Thu, 30 Jan 2020)

  Changed paths:
    M doc/references.rst
    A doc/stages/filters.dbscan.rst
    M doc/stages/filters.rst
    A filters/DBSCANFilter.cpp
    A filters/DBSCANFilter.hpp
    M pdal/KDIndex.hpp

  Log Message:
  -----------
  Merge pull request #2749 from PDAL/issue-2748-dbscan-clustering

Initial commit of DBSCAN clustering


  Commit: 8e1577aca55b9f0d66f0157e52f15b8a420cc341
      https://github.com/PDAL/PDAL/commit/8e1577aca55b9f0d66f0157e52f15b8a420cc341
  Author: Howard Butler <howard at hobu.co>
  Date:   2020-01-31 (Fri, 31 Jan 2020)

  Changed paths:
    M scripts/azp/osx.yml

  Log Message:
  -----------
  update to next OSX azp image (#2901)


  Commit: 00688458df3ad6be615075ed5f06519f8cb89d04
      https://github.com/PDAL/PDAL/commit/00688458df3ad6be615075ed5f06519f8cb89d04
  Author: Andrew Bell <andrew.bell.ia at gmail.com>
  Date:   2020-02-03 (Mon, 03 Feb 2020)

  Changed paths:
    M plugins/python/plang/Redirector.cpp
    M plugins/python/plang/Script.hpp
    M plugins/sqlite/io/SQLiteCommon.hpp
    M vendor/pdalboost/boost/iostreams/detail/functional.hpp

  Log Message:
  -----------
  Fix compilation on newer clang.


  Commit: 24bd2348295b225baf72b6cb84788eff5a67de6d
      https://github.com/PDAL/PDAL/commit/24bd2348295b225baf72b6cb84788eff5a67de6d
  Author: Andrew Bell <andrew.bell.ia at gmail.com>
  Date:   2020-02-03 (Mon, 03 Feb 2020)

  Changed paths:
    M CMakeLists.txt
    R cmake/sqlite.cmake
    M doc/references.rst
    A doc/stages/filters.dbscan.rst
    M doc/stages/filters.rst
    A filters/DBSCANFilter.cpp
    A filters/DBSCANFilter.hpp
    M io/PcdReader.cpp
    M pdal/KDIndex.hpp
    M plugins/CMakeLists.txt
    R plugins/sqlite/CMakeLists.txt
    R plugins/sqlite/io/SQLiteCommon.cpp
    R plugins/sqlite/io/SQLiteCommon.hpp
    R plugins/sqlite/io/SQLiteReader.cpp
    R plugins/sqlite/io/SQLiteReader.hpp
    R plugins/sqlite/io/SQLiteWriter.cpp
    R plugins/sqlite/io/SQLiteWriter.hpp
    R plugins/sqlite/test/SQLiteTest.cpp
    M scripts/azp/linux.yml
    M scripts/azp/osx.yml
    M scripts/azp/win.yml
    M scripts/conda/osx.sh

  Log Message:
  -----------
  Merge remote-tracking branch 'origin/master'


  Commit: 7405d3ec920dcc9b283efb0c8d0e5048265ea3d7
      https://github.com/PDAL/PDAL/commit/7405d3ec920dcc9b283efb0c8d0e5048265ea3d7
  Author: Howard Butler <howard at hobu.co>
  Date:   2020-02-03 (Mon, 03 Feb 2020)

  Changed paths:
    M plugins/rdb/CMakeLists.txt
    M scripts/conda/win64-setup.bat
    M scripts/conda/win64.bat

  Log Message:
  -----------
  RDB windows build tweaks (#2909)

* tiledb and e57 config

* rdb building on windows

* rdb win64.bat


  Commit: 82e602403e3375ff681b3611c06f75710190dc37
      https://github.com/PDAL/PDAL/commit/82e602403e3375ff681b3611c06f75710190dc37
  Author: Howard Butler <howard at hobu.co>
  Date:   2020-02-03 (Mon, 03 Feb 2020)

  Changed paths:
    M plugins/CMakeLists.txt
    M plugins/matlab/filters/Environment.cpp
    R plugins/python/CMakeLists.txt
    R plugins/python/filters/CMakeLists.txt
    R plugins/python/filters/PythonFilter.cpp
    R plugins/python/filters/PythonFilter.hpp
    R plugins/python/io/CMakeLists.txt
    R plugins/python/io/NumpyReader.cpp
    R plugins/python/io/NumpyReader.hpp
    R plugins/python/plang/Environment.cpp
    R plugins/python/plang/Environment.hpp
    R plugins/python/plang/Invocation.cpp
    R plugins/python/plang/Invocation.hpp
    R plugins/python/plang/Redirector.cpp
    R plugins/python/plang/Redirector.hpp
    R plugins/python/plang/Script.cpp
    R plugins/python/plang/Script.hpp
    R plugins/python/test/NumpyReaderTest.cpp
    R plugins/python/test/PythonFilterTest.cpp
    R plugins/python/test/make-test-data.py
    M scripts/azp/linux.yml
    M scripts/azp/osx.yml
    M scripts/azp/win.yml
    M scripts/ci/script.sh
    M scripts/conda/osx.sh

  Log Message:
  -----------
  move Python to https://github.com/PDAL/python (#2895)

* move Python to https://github.com/PDAL/python

* adjust azp scripts for python removal

* remove travis python config

* remove more python cruft


  Commit: dc43767583d4bdcb2ef038cf8e8b99b6e3a61592
      https://github.com/PDAL/PDAL/commit/dc43767583d4bdcb2ef038cf8e8b99b6e3a61592
  Author: Andrew Bell <andrew.bell.ia at gmail.com>
  Date:   2020-02-03 (Mon, 03 Feb 2020)

  Changed paths:
    M plugins/i3s/lepcc/src/ClusterRGB.cpp
    M plugins/i3s/lepcc/src/ClusterRGB.h
    M plugins/i3s/lepcc/src/Huffman.cpp
    M plugins/i3s/lepcc/src/include/lepcc_types.h

  Log Message:
  -----------
  Don't do memcpy (#2910)

* Don't do memcpy.

* Pair is value-initialized (0'd).  No need to memset.


  Commit: ed2bb5a1b6eb15caea314e2e66f45aa392475c8c
      https://github.com/PDAL/PDAL/commit/ed2bb5a1b6eb15caea314e2e66f45aa392475c8c
  Author: Andrew Bell <andrew.bell.ia at gmail.com>
  Date:   2020-02-04 (Tue, 04 Feb 2020)

  Changed paths:
    M plugins/i3s/lepcc/src/ClusterRGB.cpp
    M plugins/i3s/lepcc/src/Huffman.cpp
    M test/unit/filters/SkewnessFilterTest.cpp
    M vendor/eigen/Eigen/src/Core/ArrayWrapper.h
    M vendor/eigen/Eigen/src/Core/util/XprHelper.h
    M vendor/pdalboost/boost/iostreams/detail/adapter/concept_adapter.hpp
    M vendor/pdalboost/boost/iostreams/detail/functional.hpp

  Log Message:
  -----------
  Gcc9.2 fixes (#2913)

* GCC 9.2 fixes.

* Explicitly delete undefined assignment operators so that we actually
generate copy ctors that we need.

* Eigen fixes for GCC 9.2.


  Commit: 51442a846c2e4050a1e8d909bf9bb376616d2b1b
      https://github.com/PDAL/PDAL/commit/51442a846c2e4050a1e8d909bf9bb376616d2b1b
  Author: Howard Butler <howard at hobu.co>
  Date:   2020-02-04 (Tue, 04 Feb 2020)

  Changed paths:
    M azure-pipelines.yml
    M plugins/tiledb/CMakeLists.txt
    A scripts/azp/linux-conda.yml

  Log Message:
  -----------
  Implement a Linux build based on Conda with a pinned GDAL dependency (#2911)

* add Linux/Conda build

* fix job name

* conda junk

* set uid/gid

* set uid:gid

* conda user stuff again

* more usermod

* clobber /opt/conda perms

* clobber user to vsts_azpcontainer

* use azp conda

* fix syntax

* remove manual env setting

* conda init

* LD_FLAGS

* no pin

* another swing

* selectively shut off tiledb tests with BUILD_TILEDB_TESTS

* try pinning gdal

* use correct GDAL pin


  Commit: 0ee0d63cbd580ff9a108c90dba91b147ebdd4649
      https://github.com/PDAL/PDAL/commit/0ee0d63cbd580ff9a108c90dba91b147ebdd4649
  Author: Howard Butler <howard at hobu.co>
  Date:   2020-02-04 (Tue, 04 Feb 2020)

  Changed paths:
    M kernels/InfoKernel.cpp
    M scripts/docker/ubuntu/Dockerfile
    M test/unit/apps/InfoTest.cpp

  Log Message:
  -----------
  Add reader, now, and file_size keys to pdal info output (#2900)

* scratch

* add now, file_size, and reader to 'pdal info' output

* add debug lint

* update test output

* output comparison information when we fail a pdal info test

* fix up comparison test


  Commit: cd0b2073818f36270ac6d449972a079d1d1c89ed
      https://github.com/PDAL/PDAL/commit/cd0b2073818f36270ac6d449972a079d1d1c89ed
  Author: Andrew Bell <andrew.bell.ia at gmail.com>
  Date:   2020-02-05 (Wed, 05 Feb 2020)

  Changed paths:
    M plugins/e57/CMakeLists.txt
    M plugins/e57/io/Utils.cpp
    M plugins/e57/libE57Format/CMakeLists.txt
    R plugins/e57/libE57Format/cmake/Modules/CMakeGenerateDocumentation.cmake
    R plugins/e57/libE57Format/cmake/Modules/FindICU.cmake
    R plugins/e57/libE57Format/cmake/Modules/Tags.cmake
    R plugins/e57/libE57Format/cmake/c_flag_overrides.cmake
    R plugins/e57/libE57Format/cmake/cxx_flag_overrides.cmake
    M plugins/e57/libE57Format/src/CheckedFile.cpp
    M plugins/e57/libE57Format/src/E57Exception.cpp

  Log Message:
  -----------
  Simplify E57 build and fix warnings. (#2914)


  Commit: 26d49f58dca99ea0bfc0c6de13abe02754157866
      https://github.com/PDAL/PDAL/commit/26d49f58dca99ea0bfc0c6de13abe02754157866
  Author: chambbj <brad.chambers at gmail.com>
  Date:   2020-02-06 (Thu, 06 Feb 2020)

  Changed paths:
    R doc/images/filters.transformation.rotation_x_axis_counter-clockwise.svg
    R doc/images/filters.transformation.rotation_x_axis_counter-clockwise.svg.png
    R doc/images/filters.transformation.rotation_y_axis_counter-clockwise.svg
    R doc/images/filters.transformation.rotation_y_axis_counter-clockwise.svg.png
    R doc/images/filters.transformation.rotation_z_axis_counter-clockwise.svg
    R doc/images/filters.transformation.rotation_z_axis_counter-clockwise.svg.png
    R doc/images/filters.transformation.scaling.svg
    R doc/images/filters.transformation.scaling.svg.png
    R doc/images/filters.transformation.translation.svg
    R doc/images/filters.transformation.translation.svg.png
    M doc/stages/filters.transformation.rst

  Log Message:
  -----------
  Refined wording of transformation filter documentation (#2915)


  Commit: 9731263dae351b715895f77d9342d92629193401
      https://github.com/PDAL/PDAL/commit/9731263dae351b715895f77d9342d92629193401
  Author: Andrew Bell <andrew.bell.ia at gmail.com>
  Date:   2020-02-06 (Thu, 06 Feb 2020)

  Changed paths:
    M .gitattributes
    M apps/CMakeLists.txt

  Log Message:
  -----------
  pdal-config on windows


  Commit: df0122313bb4478269164d0f078ed224da7badb7
      https://github.com/PDAL/PDAL/commit/df0122313bb4478269164d0f078ed224da7badb7
  Author: Andrew Bell <andrew.bell.ia at gmail.com>
  Date:   2020-02-06 (Thu, 06 Feb 2020)

  Changed paths:
    R doc/images/filters.transformation.rotation_x_axis_counter-clockwise.svg
    R doc/images/filters.transformation.rotation_x_axis_counter-clockwise.svg.png
    R doc/images/filters.transformation.rotation_y_axis_counter-clockwise.svg
    R doc/images/filters.transformation.rotation_y_axis_counter-clockwise.svg.png
    R doc/images/filters.transformation.rotation_z_axis_counter-clockwise.svg
    R doc/images/filters.transformation.rotation_z_axis_counter-clockwise.svg.png
    R doc/images/filters.transformation.scaling.svg
    R doc/images/filters.transformation.scaling.svg.png
    R doc/images/filters.transformation.translation.svg
    R doc/images/filters.transformation.translation.svg.png
    M doc/stages/filters.transformation.rst

  Log Message:
  -----------
  Merge remote-tracking branch 'origin/master'


  Commit: c09f2b1b5a8c060fc44b787d90aee105bddfbcf7
      https://github.com/PDAL/PDAL/commit/c09f2b1b5a8c060fc44b787d90aee105bddfbcf7
  Author: Andrew Bell <andrew.bell.ia at gmail.com>
  Date:   2020-02-07 (Fri, 07 Feb 2020)

  Changed paths:
    M .gitattributes
    M apps/CMakeLists.txt
    M io/LasHeader.cpp
    M pdal/util/Uuid.hpp
    M tools/lasdump/Header.cpp

  Log Message:
  -----------
  Windows updates (#2917)

* Updates for VS 2017

* Use constexpr function call for Uuid size.


  Commit: 48d8db4037e2259aa6c0fea3b5664c9f05a91323
      https://github.com/PDAL/PDAL/commit/48d8db4037e2259aa6c0fea3b5664c9f05a91323
  Author: Howard Butler <howard at hobu.co>
  Date:   2020-02-07 (Fri, 07 Feb 2020)

  Changed paths:
    M scripts/azp/win.yml

  Log Message:
  -----------
  make AzP/Windows use GDAL 3 (#2918)


  Commit: 3b8c0f5ca351fcb396355b06a8c154263fc460e7
      https://github.com/PDAL/PDAL/commit/3b8c0f5ca351fcb396355b06a8c154263fc460e7
  Author: Andrew Bell <andrew.bell.ia at gmail.com>
  Date:   2020-02-07 (Fri, 07 Feb 2020)

  Changed paths:
    M plugins/e57/libE57Format/src/CheckedFile.cpp

  Log Message:
  -----------
  E57 changes for GCC 9.2.


  Commit: b1970c9160d86032d2a4531549b4eaf3746ad152
      https://github.com/PDAL/PDAL/commit/b1970c9160d86032d2a4531549b4eaf3746ad152
  Author: Andrew Bell <andrew.bell.ia at gmail.com>
  Date:   2020-02-07 (Fri, 07 Feb 2020)

  Changed paths:
    M scripts/azp/win.yml

  Log Message:
  -----------
  Merge remote-tracking branch 'origin/master'


  Commit: b24899d44fe20214543f037614b370e2cca4ecd1
      https://github.com/PDAL/PDAL/commit/b24899d44fe20214543f037614b370e2cca4ecd1
  Author: Howard Butler <howard at hobu.co>
  Date:   2020-02-08 (Sat, 08 Feb 2020)

  Changed paths:
    M azure-pipelines.yml
    M scripts/azp/doc.yml

  Log Message:
  -----------
  add AzP/docs build (#2919)

* add AzP/docs build

* try uploading doc builds to s3

* rejigger variables

* remove extraneous ninja command

* variable settings

* variable quoting

* more variable churn

* more variable churns

* one more time

* azp variable churning some more

* build PDF too

* output URLs

* condition doc upload for only PullRequest

* yaml is whitespace sensitive

* --quiet aws sync

* try var subst again

* quiet file upload

* try quoting var

* reenable the rest of CI


  Commit: a8f82c2cf15307b775132039b0c9af729624d188
      https://github.com/PDAL/PDAL/commit/a8f82c2cf15307b775132039b0c9af729624d188
  Author: Howard Butler <howard at hobu.co>
  Date:   2020-02-10 (Mon, 10 Feb 2020)

  Changed paths:
    M CMakeLists.txt

  Log Message:
  -----------
  Revert #2890 – use C++11 as standard instead of C++17


  Commit: 8ce4403af2601f16f96f85ffa2f91a6f0d2c8c53
      https://github.com/PDAL/PDAL/commit/8ce4403af2601f16f96f85ffa2f91a6f0d2c8c53
  Author: chambbj <brad.chambers at gmail.com>
  Date:   2020-02-11 (Tue, 11 Feb 2020)

  Changed paths:
    M filters/ELMFilter.cpp
    M test/unit/filters/ELMFilterTest.cpp

  Log Message:
  -----------
  Check for empty PointView in ELM filter (#2924)


  Commit: cb1026c4e5645294eb72351fce7e85f453bc6a8d
      https://github.com/PDAL/PDAL/commit/cb1026c4e5645294eb72351fce7e85f453bc6a8d
  Author: Connor Manning <connor at hobu.co>
  Date:   2020-02-11 (Tue, 11 Feb 2020)

  Changed paths:
    M .gitattributes
    M CMakeLists.txt
    M apps/CMakeLists.txt
    M azure-pipelines.yml
    R cmake/sqlite.cmake
    M doc/references.rst
    A doc/stages/filters.dbscan.rst
    M doc/stages/filters.python.rst
    M doc/stages/filters.rst
    M doc/stages/filters.transformation.rst
    M doc/stages/readers.numpy.rst
    M filters/ClusterFilter.cpp
    M filters/ClusterFilter.hpp
    A filters/DBSCANFilter.cpp
    A filters/DBSCANFilter.hpp
    M filters/ELMFilter.cpp
    M io/LasHeader.cpp
    M io/PcdReader.cpp
    M kernels/InfoKernel.cpp
    M pdal/GDALUtils.cpp
    M pdal/Geometry.hpp
    M pdal/KDIndex.hpp
    M pdal/Polygon.hpp
    M pdal/StageExtensions.cpp
    M pdal/util/Uuid.hpp
    M plugins/CMakeLists.txt
    M plugins/e57/CMakeLists.txt
    M plugins/e57/io/Utils.cpp
    M plugins/e57/libE57Format/CMakeLists.txt
    R plugins/e57/libE57Format/cmake/Modules/CMakeGenerateDocumentation.cmake
    R plugins/e57/libE57Format/cmake/Modules/FindICU.cmake
    R plugins/e57/libE57Format/cmake/Modules/Tags.cmake
    R plugins/e57/libE57Format/cmake/c_flag_overrides.cmake
    R plugins/e57/libE57Format/cmake/cxx_flag_overrides.cmake
    M plugins/e57/libE57Format/src/CheckedFile.cpp
    M plugins/e57/libE57Format/src/E57Exception.cpp
    M plugins/i3s/lepcc/src/ClusterRGB.cpp
    M plugins/i3s/lepcc/src/ClusterRGB.h
    M plugins/i3s/lepcc/src/Huffman.cpp
    M plugins/i3s/lepcc/src/include/lepcc_types.h
    M plugins/matlab/filters/Environment.cpp
    R plugins/python/CMakeLists.txt
    R plugins/python/filters/CMakeLists.txt
    R plugins/python/filters/PythonFilter.cpp
    R plugins/python/filters/PythonFilter.hpp
    R plugins/python/io/CMakeLists.txt
    R plugins/python/io/NumpyReader.cpp
    R plugins/python/io/NumpyReader.hpp
    R plugins/python/plang/Environment.cpp
    R plugins/python/plang/Environment.hpp
    R plugins/python/plang/Invocation.cpp
    R plugins/python/plang/Invocation.hpp
    R plugins/python/plang/Redirector.cpp
    R plugins/python/plang/Redirector.hpp
    R plugins/python/plang/Script.cpp
    R plugins/python/plang/Script.hpp
    R plugins/python/test/NumpyReaderTest.cpp
    R plugins/python/test/PythonFilterTest.cpp
    R plugins/python/test/make-test-data.py
    M plugins/rdb/CMakeLists.txt
    R plugins/sqlite/CMakeLists.txt
    R plugins/sqlite/io/SQLiteCommon.cpp
    R plugins/sqlite/io/SQLiteCommon.hpp
    R plugins/sqlite/io/SQLiteReader.cpp
    R plugins/sqlite/io/SQLiteReader.hpp
    R plugins/sqlite/io/SQLiteWriter.cpp
    R plugins/sqlite/io/SQLiteWriter.hpp
    R plugins/sqlite/test/SQLiteTest.cpp
    M plugins/tiledb/CMakeLists.txt
    M scripts/azp/doc.yml
    A scripts/azp/linux-conda.yml
    M scripts/azp/linux.yml
    M scripts/azp/osx.yml
    M scripts/azp/win.yml
    M scripts/ci/script.sh
    M scripts/conda/osx.sh
    M scripts/conda/win64-setup.bat
    M scripts/conda/win64.bat
    M scripts/docker/ubuntu/Dockerfile
    A test/data/filters/elm2.txt
    A test/data/plang/threedim.py
    M test/unit/apps/InfoTest.cpp
    M test/unit/filters/ELMFilterTest.cpp
    M test/unit/filters/SkewnessFilterTest.cpp
    M tools/lasdump/Header.cpp
    M tools/nitfwrap/NitfWrap.cpp
    M vendor/eigen/Eigen/src/Core/ArrayWrapper.h
    M vendor/eigen/Eigen/src/Core/util/XprHelper.h
    M vendor/pdalboost/boost/iostreams/detail/adapter/concept_adapter.hpp
    M vendor/pdalboost/boost/iostreams/detail/functional.hpp

  Log Message:
  -----------
  Merge branch 'master' into issue-2902-ept-update


Compare: https://github.com/PDAL/PDAL/compare/1ca20b6798f9...cb1026c4e564


More information about the pdal-commits mailing list