[pdal-commits] [PDAL/PDAL] c9cb95: Programmable filter can add dimensions to context

GitHub noreply at github.com
Mon Sep 22 11:50:11 PDT 2014


  Branch: refs/heads/indexing
  Home:   https://github.com/PDAL/PDAL
  Commit: c9cb95ea53244f7c3503c38099c1e8caa428e4cc
      https://github.com/PDAL/PDAL/commit/c9cb95ea53244f7c3503c38099c1e8caa428e4cc
  Author: Pete Gadomski <pete.gadomski at gmail.com>
  Date:   2014-09-09 (Tue, 09 Sep 2014)

  Changed paths:
    M doc/stages/filters.programmable.rst
    M include/pdal/filters/Programmable.hpp
    M src/filters/Programmable.cpp
    M test/unit/plang/ProgrammableFilterTest.cpp

  Log Message:
  -----------
  Programmable filter can add dimensions to context

Using one or more `add_dimension` options on a programmable filter will
instruct the filter to add those dimensions to the primary
PointContext. This way, the programmable filter can set dimensions that
might be not present on the PointContext at first.


  Commit: 08fe3641ae92c5ab25bdb6f6ad1c0f7242dc5d4f
      https://github.com/PDAL/PDAL/commit/08fe3641ae92c5ab25bdb6f6ad1c0f7242dc5d4f
  Author: Andrew Bell <andrew.bell.ia at gmail.com>
  Date:   2014-09-10 (Wed, 10 Sep 2014)

  Changed paths:
    M doc/tutorial/overview.rst
    A doc/tutorial/pipeline.png

  Log Message:
  -----------
  Update overview for readers.
Add missing image.


  Commit: 8a41a63696a88e187a30309cc49b67a454211ec1
      https://github.com/PDAL/PDAL/commit/8a41a63696a88e187a30309cc49b67a454211ec1
  Author: Andrew Bell <andrew.bell.ia at gmail.com>
  Date:   2014-09-10 (Wed, 10 Sep 2014)

  Changed paths:
    M include/pdal/Charbuf.hpp
    M include/pdal/Dimension.hpp
    M include/pdal/IStream.hpp
    M include/pdal/PointContext.hpp
    M include/pdal/Reader.hpp
    R include/pdal/ReaderIterator.hpp
    M include/pdal/Stage.hpp
    R include/pdal/StageIterator.hpp
    M include/pdal/WebSocketClient.hpp
    M include/pdal/drivers/bpf/BpfReader.hpp
    R include/pdal/drivers/bpf/BpfSeqIterator.hpp
    R include/pdal/drivers/caris/CloudIterator.hpp
    M include/pdal/drivers/caris/CloudReader.hpp
    M include/pdal/drivers/faux/Reader.hpp
    M include/pdal/drivers/greyhound/Reader.hpp
    M include/pdal/drivers/icebridge/Reader.hpp
    M include/pdal/drivers/las/Reader.hpp
    M include/pdal/drivers/las/Support.hpp
    M include/pdal/drivers/las/Writer.hpp
    A include/pdal/drivers/las/ZipPoint.hpp
    M include/pdal/drivers/oci/OciReader.hpp
    R include/pdal/drivers/oci/OciSeqIterator.hpp
    M include/pdal/drivers/pcd/Reader.hpp
    R include/pdal/drivers/pgpointcloud/PgIterator.hpp
    M include/pdal/drivers/pgpointcloud/PgReader.hpp
    M include/pdal/drivers/qfit/Reader.hpp
    M include/pdal/drivers/sbet/Reader.hpp
    R include/pdal/drivers/sqlite/SQLiteIterator.hpp
    M include/pdal/drivers/sqlite/SQLiteReader.hpp
    M include/pdal/drivers/terrasolid/Reader.hpp
    M include/pdal/kernel/Delta.hpp
    M include/pdal/kernel/Diff.hpp
    M include/pdal/kernel/Info.hpp
    M include/pdal/kernel/Pipeline.hpp
    M pdal_defines.h.in
    M src/CMakeLists.txt
    M src/Reader.cpp
    R src/ReaderIterator.cpp
    M src/Stage.cpp
    M src/StageFactory.cpp
    R src/StageIterator.cpp
    M src/WebSocketClient.cpp
    M src/Writer.cpp
    M src/drivers/bpf/BpfReader.cpp
    R src/drivers/bpf/BpfSeqIterator.cpp
    M src/drivers/caris/CloudReader.cpp
    M src/drivers/caris/Utils.cpp
    M src/drivers/caris/Utils.hpp
    R src/drivers/caris/boost_range_algorithm_count.hpp
    M src/drivers/caris/caris/caris_pc_wrapper.h
    M src/drivers/caris/pdal_csar.cpp
    M src/drivers/faux/Reader.cpp
    M src/drivers/greyhound/Exchanges.hpp
    M src/drivers/greyhound/Reader.cpp
    M src/drivers/icebridge/Reader.cpp
    M src/drivers/las/LasHeaderReader.cpp
    M src/drivers/las/LasHeaderWriter.cpp
    M src/drivers/las/Reader.cpp
    M src/drivers/las/Writer.cpp
    M src/drivers/las/ZipPoint.cpp
    R src/drivers/las/ZipPoint.hpp
    M src/drivers/oci/OciReader.cpp
    R src/drivers/oci/OciSeqIterator.cpp
    M src/drivers/pcd/Reader.cpp
    R src/drivers/pgpointcloud/PgIterator.cpp
    M src/drivers/pgpointcloud/PgReader.cpp
    M src/drivers/qfit/Reader.cpp
    M src/drivers/sbet/Reader.cpp
    R src/drivers/sqlite/SQLiteIterator.cpp
    M src/drivers/sqlite/SQLiteReader.cpp
    M src/drivers/terrasolid/Reader.cpp
    M test/unit/CMakeLists.txt
    M test/unit/SpatialReferenceTest.cpp
    M test/unit/Support.cpp
    M test/unit/XMLSchemaTest.cpp
    M test/unit/apps/pc2pcTest.cpp
    M test/unit/drivers/bpf/BPFTest.cpp
    M test/unit/drivers/faux/FauxReaderTest.cpp
    M test/unit/drivers/icebridge/IcebridgeReaderTest.cpp
    M test/unit/drivers/las/LasReaderTest.cpp
    M test/unit/drivers/nitf/NitfReaderTest.cpp
    M test/unit/drivers/oci/OCITest.cpp
    M test/unit/drivers/qfit/QFITReaderTest.cpp
    M test/unit/drivers/sbet/SbetReaderTest.cpp
    M test/unit/drivers/terrasolid/TerraSolidReaderTest.cpp
    M test/unit/filters/ChipperTest.cpp
    M test/unit/filters/ColorizationFilterTest.cpp
    M test/unit/filters/CropFilterTest.cpp
    M test/unit/filters/DecimationFilterTest.cpp
    M test/unit/filters/HexbinFilterTest.cpp
    M test/unit/filters/InPlaceReprojectionFilterTest.cpp
    M test/unit/filters/ReprojectionFilterTest.cpp
    M test/unit/filters/SplitterTest.cpp
    M test/unit/filters/StatsFilterTest.cpp

  Log Message:
  -----------
  Merge branch 'master' of https://github.com/PDAL/PDAL


  Commit: c5a1de0fe75828adb386da623490e116473277ce
      https://github.com/PDAL/PDAL/commit/c5a1de0fe75828adb386da623490e116473277ce
  Author: Connor Manning <connor at hobu.co>
  Date:   2014-09-10 (Wed, 10 Sep 2014)

  Changed paths:
    M include/pdal/QuadIndex.hpp
    M src/QuadIndex.cpp

  Log Message:
  -----------
  Add tree depth query to QuadIndex.


  Commit: 95bedea9bc7ec8dd1d5905dcea9fa641225a8266
      https://github.com/PDAL/PDAL/commit/95bedea9bc7ec8dd1d5905dcea9fa641225a8266
  Author: Howard Butler <howard at hobu.co>
  Date:   2014-09-10 (Wed, 10 Sep 2014)

  Changed paths:
    M cmake/examples/hobu-config.sh
    R test/data/1.0_0.las
    R test/data/1.0_0_nosrs.las
    R test/data/1.0_1.las
    R test/data/1.0_1_nosrs.las
    R test/data/1.1_0.las
    R test/data/1.1_0_nosrs.las
    R test/data/1.1_1.las
    R test/data/1.1_1_nosrs.las
    R test/data/1.2-no-points.las
    R test/data/1.2-with-color-clipped.las
    R test/data/1.2-with-color.las
    R test/data/1.2-with-color.las.wkt
    R test/data/1.2_0.las
    R test/data/1.2_0_nosrs.las
    R test/data/1.2_1.las
    R test/data/1.2_1_nosrs.las
    R test/data/1.2_2.las
    R test/data/1.2_2_nosrs.las
    R test/data/1.2_3.las
    R test/data/1.2_3_nosrs.las
    R test/data/TextWriterTest-geojson.json
    R test/data/autzen-dd.las
    R test/data/autzen-point-format-3.las
    R test/data/autzen-point-format-3.txt
    R test/data/autzen-selection-dd.wkt
    R test/data/autzen-selection.wkt
    R test/data/autzen-srs.wkt
    R test/data/autzen-thin-srs.las
    R test/data/autzen-thin.las
    R test/data/autzen-utm-chipped-25.las
    R test/data/autzen-utm.las
    R test/data/autzen.jpg
    R test/data/autzen.jpg.aux.xml
    R test/data/autzen.las
    R test/data/autzen.wld
    A test/data/autzen/autzen-dd.las
    A test/data/autzen/autzen-point-format-3.las
    A test/data/autzen/autzen-point-format-3.txt
    A test/data/autzen/autzen-selection-dd.wkt
    A test/data/autzen/autzen-selection.wkt
    A test/data/autzen/autzen-srs.wkt
    A test/data/autzen/autzen-thin-srs.las
    A test/data/autzen/autzen-thin.las
    A test/data/autzen/autzen-utm-chipped-25.las
    A test/data/autzen/autzen-utm.las
    A test/data/autzen/autzen.jpg
    A test/data/autzen/autzen.jpg.aux.xml
    A test/data/autzen/autzen.las
    A test/data/autzen/autzen.wld
    A test/data/bpf/bpf.xml
    A test/data/drivers/text-writer-csv.xml
    A test/data/drivers/text-writer-geojson.xml
    A test/data/drivers/text-writer-space-delimited.xml
    R test/data/epsg_4326.las
    M test/data/filters/colorize-multi.xml
    M test/data/filters/colorize.xml
    M test/data/filters/crop_wkt.xml
    M test/data/filters/crop_wkt_2d.xml
    M test/data/filters/crop_wkt_2d_classification.xml
    M test/data/filters/decimate.xml
    M test/data/filters/hexbin-info.xml
    M test/data/filters/hexbin.xml
    A test/data/filters/hextest.txt
    A test/data/filters/merge.xml
    M test/data/filters/reproject.xml
    M test/data/filters/scaling.xml
    M test/data/filters/selector.xml
    M test/data/filters/splitter.xml
    M test/data/filters/stats.xml
    R test/data/hextest.las
    R test/data/hextest.txt
    R test/data/interesting.las
    A test/data/las/1.2-with-color-clipped.las
    A test/data/las/1.2-with-color.las
    A test/data/las/1.2-with-color.las.wkt
    A test/data/las/epsg_4326.las
    A test/data/las/hextest.las
    A test/data/las/interesting.las
    A test/data/las/lots_of_vlr.las
    A test/data/las/mvk-thin.las
    A test/data/las/mvk-thin.las.wkt
    A test/data/las/no-points.las
    A test/data/las/noise-clean.las
    A test/data/las/noise-dirty.las
    A test/data/las/permutations/1.0_0.las
    A test/data/las/permutations/1.0_1.las
    A test/data/las/permutations/1.1_0.las
    A test/data/las/permutations/1.1_1.las
    A test/data/las/permutations/1.2-no-points.las
    A test/data/las/permutations/1.2_0.las
    A test/data/las/permutations/1.2_1.las
    A test/data/las/permutations/1.2_2.las
    A test/data/las/permutations/1.2_3.las
    A test/data/las/simple.las
    A test/data/las/utm15.las
    A test/data/las/utm17.las
    A test/data/laz/simple.laz
    R test/data/log_py.txt
    A test/data/logs/log_py.txt
    A test/data/logs/logtest.txt
    A test/data/logs/logtest_1.txt
    A test/data/logs/logtest_123.txt
    A test/data/logs/logtest_2.txt
    A test/data/logs/logtest_3.txt
    R test/data/logtest.txt
    R test/data/logtest_1.txt
    R test/data/logtest_123.txt
    R test/data/logtest_2.txt
    R test/data/logtest_3.txt
    R test/data/lots_of_vlr.las
    R test/data/mvk-thin.las
    R test/data/mvk-thin.las.wkt
    M test/data/nitf/conversion.xml
    A test/data/nitf/write_options.xml
    R test/data/no-points.las
    R test/data/noise-clean.las
    R test/data/noise-dirty.las
    M test/data/pipeline/bad/pipeline_bad01.xml
    M test/data/pipeline/bad/pipeline_bad05.xml
    M test/data/pipeline/bad/pipeline_bad06.xml
    M test/data/pipeline/bad/pipeline_bad07.xml
    M test/data/pipeline/bad/pipeline_bad08.xml
    M test/data/pipeline/bad/pipeline_bad09.xml
    R test/data/pipeline/create-dimension.xml
    M test/data/pipeline/drop_color.xml
    R test/data/pipeline/merge.xml
    R test/data/pipeline/mosaic.xml
    R test/data/pipeline/pipeline_asc.xml
    R test/data/pipeline/pipeline_csv.xml
    R test/data/pipeline/pipeline_geojson.xml
    M test/data/pipeline/pipeline_interpolate.xml
    M test/data/pipeline/pipeline_multioptions.xml
    R test/data/pipeline/pipeline_nitf.xml
    M test/data/pipeline/pipeline_read.xml
    M test/data/pipeline/pipeline_read_notype.xml
    M test/data/pipeline/pipeline_readcomments.xml
    R test/data/pipeline/pipeline_webgl.xml
    M test/data/pipeline/pipeline_writecomments.xml
    M test/data/plang/from-module.xml
    M test/data/plang/predicate-embed.xml
    M test/data/plang/predicate-keep-last-return.xml
    M test/data/plang/predicate-keep-specified-returns.xml
    A test/data/plang/programmable-update-y-dims.xml
    R test/data/simple.las
    R test/data/simple.laz
    R test/data/text.txt
    A test/data/text/TextWriterTest-geojson.json
    A test/data/text/text.txt
    R test/data/utm15.las
    R test/data/utm17.las
    M test/unit/FileUtilsTest.cpp
    M test/unit/LogTest.cpp
    M test/unit/PipelineManagerTest.cpp
    M test/unit/SpatialReferenceTest.cpp
    M test/unit/StageFactoryTest.cpp
    M test/unit/StreamFactoryTest.cpp
    M test/unit/SupportTest.cpp
    M test/unit/drivers/las/LasReaderTest.cpp
    M test/unit/drivers/las/LasWriterTest.cpp
    M test/unit/drivers/nitf/NitfWriterTest.cpp
    M test/unit/drivers/oci/OCITest.cpp
    M test/unit/drivers/pgpointcloud/PgpointcloudWriterTest.cpp
    M test/unit/drivers/sqlite/SQLiteTest.cpp
    M test/unit/drivers/text/TextWriterTest.cpp
    M test/unit/filters/ChipperTest.cpp
    M test/unit/filters/ColorizationFilterTest.cpp
    M test/unit/filters/CropFilterTest.cpp
    M test/unit/filters/HexbinFilterTest.cpp
    M test/unit/filters/InPlaceReprojectionFilterTest.cpp
    M test/unit/filters/MergeTest.cpp
    M test/unit/filters/PCLBlockFilterTest.cpp
    M test/unit/filters/ReprojectionFilterTest.cpp
    M test/unit/filters/SplitterTest.cpp
    M test/unit/filters/StatsFilterTest.cpp
    M test/unit/plang/ProgrammableFilterTest.cpp

  Log Message:
  -----------
  Reorganize test data #441


  Commit: ec40ff56c265b3d4801e155cfd8fa9d2e3338362
      https://github.com/PDAL/PDAL/commit/ec40ff56c265b3d4801e155cfd8fa9d2e3338362
  Author: Andrew Bell <andrew.bell.ia at gmail.com>
  Date:   2014-09-10 (Wed, 10 Sep 2014)

  Changed paths:
    M doc/tutorial/overview.rst

  Log Message:
  -----------
  Fix RST.


  Commit: 28262ebb8f95fe851bd344590cc958d02739dcdb
      https://github.com/PDAL/PDAL/commit/28262ebb8f95fe851bd344590cc958d02739dcdb
  Author: Pete Gadomski <pete.gadomski at gmail.com>
  Date:   2014-09-11 (Thu, 11 Sep 2014)

  Changed paths:
    M include/pdal/kernel/Application.hpp
    M src/kernel/Application.cpp
    M test/data/drivers/text-writer-geojson.xml
    M test/data/filters/crop_wkt_2d.xml
    M test/data/filters/crop_wkt_2d_classification.xml
    M test/data/filters/decimate.xml

  Log Message:
  -----------
  Remove chunk size

The --chunk-size app argument is no longer applicable. Removing it to
avoid future confusion.


  Commit: ebe6bcb1b152ae727ee6bdfb25c6e2dd28e3c836
      https://github.com/PDAL/PDAL/commit/ebe6bcb1b152ae727ee6bdfb25c6e2dd28e3c836
  Author: Bradley J Chambers <brad.chambers at gmail.com>
  Date:   2014-09-11 (Thu, 11 Sep 2014)

  Changed paths:
    M apps/pdal.cpp
    M include/pdal/Utils.hpp
    M include/pdal/drivers/faux/Reader.hpp
    M include/pdal/kernel/Kernel.hpp
    A include/pdal/kernel/Random.hpp
    M src/CMakeLists.txt
    M src/Utils.cpp
    M src/drivers/faux/Reader.cpp
    A src/kernel/Random.cpp

  Log Message:
  -----------
  add random kernel

* uniform distribution (user-defined bounds)
* normal distribution (user-defined mean and standard deviation)


  Commit: 1ec7292cd81304cb995f6476029679ead6cfc4da
      https://github.com/PDAL/PDAL/commit/1ec7292cd81304cb995f6476029679ead6cfc4da
  Author: Howard Butler <howard at hobu.co>
  Date:   2014-09-11 (Thu, 11 Sep 2014)

  Changed paths:
    M include/pdal/kernel/Application.hpp
    M src/kernel/Application.cpp
    M test/data/drivers/text-writer-geojson.xml
    M test/data/filters/crop_wkt_2d.xml
    M test/data/filters/crop_wkt_2d_classification.xml
    M test/data/filters/decimate.xml

  Log Message:
  -----------
  Merge pull request #449 from gadomski/extract-chunk-size

Remove chunk size


  Commit: 261e9bca3e1b26219c01f7be02049131040d6cb7
      https://github.com/PDAL/PDAL/commit/261e9bca3e1b26219c01f7be02049131040d6cb7
  Author: Howard Butler <howard at hobu.co>
  Date:   2014-09-11 (Thu, 11 Sep 2014)

  Changed paths:
    M src/kernel/Delta.cpp

  Log Message:
  -----------
  output std::endl for each pt in --detail of 'pdal delta'


  Commit: c5e8127b1abfbbff3bf4e4c2fa6c0d3def64af85
      https://github.com/PDAL/PDAL/commit/c5e8127b1abfbbff3bf4e4c2fa6c0d3def64af85
  Author: Connor Manning <connor at hobu.co>
  Date:   2014-09-11 (Thu, 11 Sep 2014)

  Changed paths:
    M src/kernel/Info.cpp

  Log Message:
  -----------
  Update method used to get dimensions.


  Commit: 74c899b7d8862a24dd505f52740566cd1548d21b
      https://github.com/PDAL/PDAL/commit/74c899b7d8862a24dd505f52740566cd1548d21b
  Author: Andrew Bell <andrew.bell.ia at gmail.com>
  Date:   2014-09-11 (Thu, 11 Sep 2014)

  Changed paths:
    M include/pdal/PDALUtils.hpp
    M include/pdal/PointContext.hpp

  Log Message:
  -----------
  Fix dumping of dimensions from point context.


  Commit: 9a9b33c8cdb69cd264ce1f97ac11aa274171c79b
      https://github.com/PDAL/PDAL/commit/9a9b33c8cdb69cd264ce1f97ac11aa274171c79b
  Author: Andrew Bell <andrew.bell.ia at gmail.com>
  Date:   2014-09-11 (Thu, 11 Sep 2014)

  Changed paths:
    M include/pdal/PDALUtils.hpp
    M include/pdal/PointContext.hpp

  Log Message:
  -----------
  Merge pull request #451 from PDAL/bpfmeta

Fix dumping of dimensions from point context.


  Commit: ccdf432edbd67cf6f439eadd9831073a04f99993
      https://github.com/PDAL/PDAL/commit/ccdf432edbd67cf6f439eadd9831073a04f99993
  Author: Andrew Bell <andrew.bell.ia at gmail.com>
  Date:   2014-09-11 (Thu, 11 Sep 2014)

  Changed paths:
    M doc/tutorial/overview.rst
    M include/pdal/Metadata.hpp
    M include/pdal/Utils.hpp
    M include/pdal/drivers/bpf/BpfHeader.hpp
    M include/pdal/drivers/bpf/BpfReader.hpp
    M src/Metadata.cpp
    M src/Utils.cpp
    M src/drivers/bpf/BpfHeader.cpp
    M src/drivers/bpf/BpfReader.cpp
    M src/drivers/las/Reader.cpp
    M test/unit/MetadataTest.cpp

  Log Message:
  -----------
  Stick embedded BPF ULEM files into metadata.


  Commit: 0f55da3552a615a9e913e853a271a13469ac740c
      https://github.com/PDAL/PDAL/commit/0f55da3552a615a9e913e853a271a13469ac740c
  Author: Howard Butler <howard at hobu.co>
  Date:   2014-09-12 (Fri, 12 Sep 2014)

  Changed paths:
    M doc/tutorial/overview.rst
    M include/pdal/Metadata.hpp
    M include/pdal/Utils.hpp
    M include/pdal/drivers/bpf/BpfHeader.hpp
    M include/pdal/drivers/bpf/BpfReader.hpp
    M src/Metadata.cpp
    M src/Utils.cpp
    M src/drivers/bpf/BpfHeader.cpp
    M src/drivers/bpf/BpfReader.cpp
    M src/drivers/las/Reader.cpp
    M test/unit/MetadataTest.cpp

  Log Message:
  -----------
  Merge pull request #452 from PDAL/bpfmeta

Stick embedded BPF ULEM files into metadata.


  Commit: cd36bf85b47d70ad1bc3ed941f236149fbc3f12c
      https://github.com/PDAL/PDAL/commit/cd36bf85b47d70ad1bc3ed941f236149fbc3f12c
  Author: Howard Butler <howard at hobu.co>
  Date:   2014-09-12 (Fri, 12 Sep 2014)

  Changed paths:
    M apps/pdal.cpp
    M include/pdal/Utils.hpp
    M include/pdal/drivers/faux/Reader.hpp
    M include/pdal/kernel/Kernel.hpp
    A include/pdal/kernel/Random.hpp
    M src/CMakeLists.txt
    M src/Utils.cpp
    M src/drivers/faux/Reader.cpp
    A src/kernel/Random.cpp

  Log Message:
  -----------
  Merge pull request #450 from chambbj/random-ctx

add random kernel


  Commit: 943cbbc3be7365e19edb84031486e6dcf97234dd
      https://github.com/PDAL/PDAL/commit/943cbbc3be7365e19edb84031486e6dcf97234dd
  Author: Howard Butler <howard at hobu.co>
  Date:   2014-09-12 (Fri, 12 Sep 2014)

  Changed paths:
    M doc/stages/filters.programmable.rst
    M include/pdal/filters/Programmable.hpp
    M src/filters/Programmable.cpp
    M test/unit/plang/ProgrammableFilterTest.cpp

  Log Message:
  -----------
  Merge pull request #447 from gadomski/programmable-add-dimension

Programmable filter can add dimensions to context


  Commit: e6fe0bc43e86f147c5ed272a0bea89547a32db36
      https://github.com/PDAL/PDAL/commit/e6fe0bc43e86f147c5ed272a0bea89547a32db36
  Author: Pete Gadomski <pete.gadomski at gmail.com>
  Date:   2014-09-12 (Fri, 12 Sep 2014)

  Changed paths:
    M include/pdal/pdal_config.hpp
    M src/pdal_config.cpp
    M test/unit/CMakeLists.txt

  Log Message:
  -----------
  Remove leftover embedded boost cruft

Removes IsEmbeddedBoost() and calls, as well as embedded boost check in
test/unit/CMakeLists.txt.


  Commit: 81a0806f15bf47918acb13b8047605b995eebd95
      https://github.com/PDAL/PDAL/commit/81a0806f15bf47918acb13b8047605b995eebd95
  Author: Andrew Bell <andrew.bell.ia at gmail.com>
  Date:   2014-09-12 (Fri, 12 Sep 2014)

  Changed paths:
    M src/drivers/bpf/BpfReader.cpp

  Log Message:
  -----------
  BPF spatial reference in metadata.


  Commit: d3af923553357c44bdcf2680e9472a348cefe8b7
      https://github.com/PDAL/PDAL/commit/d3af923553357c44bdcf2680e9472a348cefe8b7
  Author: Andrew Bell <andrew.bell.ia at gmail.com>
  Date:   2014-09-12 (Fri, 12 Sep 2014)

  Changed paths:
    M doc/tutorial/overview.rst
    M include/pdal/PDALUtils.hpp
    M include/pdal/PipelineManager.hpp
    M include/pdal/PointBuffer.hpp
    M include/pdal/PointContext.hpp
    M include/pdal/Stage.hpp
    M include/pdal/drivers/bpf/BpfReader.hpp
    M include/pdal/drivers/caris/CloudReader.hpp
    M include/pdal/drivers/faux/Reader.hpp
    M include/pdal/drivers/greyhound/Reader.hpp
    M include/pdal/drivers/icebridge/Reader.hpp
    M include/pdal/drivers/las/Reader.hpp
    M include/pdal/drivers/las/Writer.hpp
    M include/pdal/drivers/nitf/Writer.hpp
    M include/pdal/drivers/oci/OciReader.hpp
    M include/pdal/drivers/oci/Writer.hpp
    M include/pdal/drivers/oci/common.hpp
    M include/pdal/drivers/p2g/P2gWriter.hpp
    M include/pdal/drivers/pcd/Reader.hpp
    M include/pdal/drivers/pcd/Writer.hpp
    M include/pdal/drivers/pgpointcloud/PgReader.hpp
    M include/pdal/drivers/pgpointcloud/Writer.hpp
    M include/pdal/drivers/qfit/Reader.hpp
    M include/pdal/drivers/sbet/Reader.hpp
    M include/pdal/drivers/sbet/Writer.hpp
    M include/pdal/drivers/sqlite/SQLiteCommon.hpp
    M include/pdal/drivers/sqlite/SQLiteReader.hpp
    M include/pdal/drivers/sqlite/SQLiteWriter.hpp
    M include/pdal/drivers/terrasolid/Reader.hpp
    M include/pdal/drivers/text/Writer.hpp
    M src/Stage.cpp
    M src/drivers/bpf/BpfReader.cpp
    M src/drivers/caris/CloudReader.cpp
    M src/drivers/faux/Reader.cpp
    M src/drivers/greyhound/Reader.cpp
    M src/drivers/icebridge/Reader.cpp
    M src/drivers/las/Reader.cpp
    M src/drivers/las/Writer.cpp
    M src/drivers/nitf/Writer.cpp
    M src/drivers/oci/OciReader.cpp
    M src/drivers/oci/Writer.cpp
    M src/drivers/p2g/P2gWriter.cpp
    M src/drivers/pcd/Reader.cpp
    M src/drivers/pgpointcloud/PgReader.cpp
    M src/drivers/pgpointcloud/Writer.cpp
    M src/drivers/qfit/Reader.cpp
    M src/drivers/sbet/Reader.cpp
    M src/drivers/sbet/Writer.cpp
    M src/drivers/sqlite/SQLiteReader.cpp
    M src/drivers/sqlite/SQLiteWriter.cpp
    M src/drivers/terrasolid/Reader.cpp
    M src/drivers/text/Writer.cpp

  Log Message:
  -----------
  PointContext -> PointContextRef


  Commit: 642ec518eaf2fe29e35e0fb14283f260ab0c40c2
      https://github.com/PDAL/PDAL/commit/642ec518eaf2fe29e35e0fb14283f260ab0c40c2
  Author: Andrew Bell <andrew.bell.ia at gmail.com>
  Date:   2014-09-12 (Fri, 12 Sep 2014)

  Changed paths:
    M src/drivers/bpf/BpfReader.cpp

  Log Message:
  -----------
  Merge branch 'master' of https://github.com/PDAL/PDAL into ptctxref


  Commit: 629060cbbb9c2080407ffc36835fa14d00b55416
      https://github.com/PDAL/PDAL/commit/629060cbbb9c2080407ffc36835fa14d00b55416
  Author: Howard Butler <howard at hobu.co>
  Date:   2014-09-13 (Sat, 13 Sep 2014)

  Changed paths:
    M doc/tutorial/overview.rst
    M include/pdal/PDALUtils.hpp
    M include/pdal/PipelineManager.hpp
    M include/pdal/PointBuffer.hpp
    M include/pdal/PointContext.hpp
    M include/pdal/Stage.hpp
    M include/pdal/drivers/bpf/BpfReader.hpp
    M include/pdal/drivers/caris/CloudReader.hpp
    M include/pdal/drivers/faux/Reader.hpp
    M include/pdal/drivers/greyhound/Reader.hpp
    M include/pdal/drivers/icebridge/Reader.hpp
    M include/pdal/drivers/las/Reader.hpp
    M include/pdal/drivers/las/Writer.hpp
    M include/pdal/drivers/nitf/Writer.hpp
    M include/pdal/drivers/oci/OciReader.hpp
    M include/pdal/drivers/oci/Writer.hpp
    M include/pdal/drivers/oci/common.hpp
    M include/pdal/drivers/p2g/P2gWriter.hpp
    M include/pdal/drivers/pcd/Reader.hpp
    M include/pdal/drivers/pcd/Writer.hpp
    M include/pdal/drivers/pgpointcloud/PgReader.hpp
    M include/pdal/drivers/pgpointcloud/Writer.hpp
    M include/pdal/drivers/qfit/Reader.hpp
    M include/pdal/drivers/sbet/Reader.hpp
    M include/pdal/drivers/sbet/Writer.hpp
    M include/pdal/drivers/sqlite/SQLiteCommon.hpp
    M include/pdal/drivers/sqlite/SQLiteReader.hpp
    M include/pdal/drivers/sqlite/SQLiteWriter.hpp
    M include/pdal/drivers/terrasolid/Reader.hpp
    M include/pdal/drivers/text/Writer.hpp
    M src/Stage.cpp
    M src/drivers/bpf/BpfReader.cpp
    M src/drivers/caris/CloudReader.cpp
    M src/drivers/faux/Reader.cpp
    M src/drivers/greyhound/Reader.cpp
    M src/drivers/icebridge/Reader.cpp
    M src/drivers/las/Reader.cpp
    M src/drivers/las/Writer.cpp
    M src/drivers/nitf/Writer.cpp
    M src/drivers/oci/OciReader.cpp
    M src/drivers/oci/Writer.cpp
    M src/drivers/p2g/P2gWriter.cpp
    M src/drivers/pcd/Reader.cpp
    M src/drivers/pgpointcloud/PgReader.cpp
    M src/drivers/pgpointcloud/Writer.cpp
    M src/drivers/qfit/Reader.cpp
    M src/drivers/sbet/Reader.cpp
    M src/drivers/sbet/Writer.cpp
    M src/drivers/sqlite/SQLiteReader.cpp
    M src/drivers/sqlite/SQLiteWriter.cpp
    M src/drivers/terrasolid/Reader.cpp
    M src/drivers/text/Writer.cpp

  Log Message:
  -----------
  Merge pull request #455 from PDAL/ptctxref

Ptctxref


  Commit: d86004dea5d3056d3bacee96d73cbebbdfd234dd
      https://github.com/PDAL/PDAL/commit/d86004dea5d3056d3bacee96d73cbebbdfd234dd
  Author: Howard Butler <howard at hobu.co>
  Date:   2014-09-13 (Sat, 13 Sep 2014)

  Changed paths:
    M include/pdal/pdal_config.hpp
    M src/pdal_config.cpp
    M test/unit/CMakeLists.txt

  Log Message:
  -----------
  Merge pull request #453 from gadomski/remove-embedded-boost-cruft

Remove leftover embedded boost cruft


  Commit: 16c15bd21239e0f6b979f5620869e99a7034a7dc
      https://github.com/PDAL/PDAL/commit/16c15bd21239e0f6b979f5620869e99a7034a7dc
  Author: Pete Gadomski <pete.gadomski at gmail.com>
  Date:   2014-09-15 (Mon, 15 Sep 2014)

  Changed paths:
    M include/pdal/PointBuffer.hpp

  Log Message:
  -----------
  Remove a duplicate include from PointBuffer.hpp

Just a little Monday cleaning.


  Commit: 51b11498cdc4f11c765cf723625100d826aa4da6
      https://github.com/PDAL/PDAL/commit/51b11498cdc4f11c765cf723625100d826aa4da6
  Author: Pete Gadomski <pete.gadomski at gmail.com>
  Date:   2014-09-15 (Mon, 15 Sep 2014)

  Changed paths:
    M CMakeLists.txt
    A doc/stages/drivers.rxp.reader.rst
    M doc/stages/index.rst
    M include/pdal/Dimension.hpp
    M include/pdal/Drivers.hpp
    A include/pdal/drivers/rxp/RxpReader.hpp
    M pdal_defines.h.in
    M scripts/ci/script.sh
    M src/CMakeLists.txt
    M src/StageFactory.cpp
    A src/drivers/rxp/RxpReader.cpp
    M src/pdal_config.cpp
    A test/data/rxp/130501_232206_cut.rxp
    M test/unit/CMakeLists.txt
    A test/unit/drivers/rxp/RxpReaderTest.cpp

  Log Message:
  -----------
  Add the rxp reader

RXP is the streaming file format used by RIEGL Laser Measurement Systems
(http://www.riegl.com). Support for reading rxp
files is provided by RiVLib, RIEGL's own library which they release for
use by their customers.

RiVLib only supports reading rxp files, not writing them.


  Commit: 29f7130f30ecc4203354c2a4617be7ba3cf85302
      https://github.com/PDAL/PDAL/commit/29f7130f30ecc4203354c2a4617be7ba3cf85302
  Author: Bradley J Chambers <brad.chambers at gmail.com>
  Date:   2014-09-15 (Mon, 15 Sep 2014)

  Changed paths:
    M include/pdal/filters/Decimation.hpp
    M include/pdal/kernel/Translate.hpp
    A include/stubs/pcl/filters/voxel_grid.h
    M src/filters/Decimation.cpp
    M src/kernel/Translate.cpp

  Log Message:
  -----------
  add PCL VoxelGrid as a decimation option (not the default)


  Commit: 06502f635e7101c1b701933acf9f56a8beef4942
      https://github.com/PDAL/PDAL/commit/06502f635e7101c1b701933acf9f56a8beef4942
  Author: Howard Butler <howard at hobu.co>
  Date:   2014-09-15 (Mon, 15 Sep 2014)

  Changed paths:
    M include/pdal/filters/Decimation.hpp
    M include/pdal/kernel/Translate.hpp
    A include/stubs/pcl/filters/voxel_grid.h
    M src/filters/Decimation.cpp
    M src/kernel/Translate.cpp

  Log Message:
  -----------
  Merge pull request #454 from chambbj/voxel-grid-ctx

add PCL VoxelGrid as a decimation option (not the default)


  Commit: feab6d76dc8d1121a7c146348fbe9df88cdec0cb
      https://github.com/PDAL/PDAL/commit/feab6d76dc8d1121a7c146348fbe9df88cdec0cb
  Author: Howard Butler <howard at hobu.co>
  Date:   2014-09-15 (Mon, 15 Sep 2014)

  Changed paths:
    M CMakeLists.txt
    A doc/stages/drivers.rxp.reader.rst
    M doc/stages/index.rst
    M include/pdal/Dimension.hpp
    M include/pdal/Drivers.hpp
    A include/pdal/drivers/rxp/RxpReader.hpp
    M pdal_defines.h.in
    M scripts/ci/script.sh
    M src/CMakeLists.txt
    M src/StageFactory.cpp
    A src/drivers/rxp/RxpReader.cpp
    M src/pdal_config.cpp
    A test/data/rxp/130501_232206_cut.rxp
    M test/unit/CMakeLists.txt
    A test/unit/drivers/rxp/RxpReaderTest.cpp

  Log Message:
  -----------
  Merge pull request #456 from gadomski/rxp-driver

Add the rxp reader


  Commit: a845d742ed060445dd54dfe7518579dd1d5e9257
      https://github.com/PDAL/PDAL/commit/a845d742ed060445dd54dfe7518579dd1d5e9257
  Author: Bradley J Chambers <brad.chambers at gmail.com>
  Date:   2014-09-15 (Mon, 15 Sep 2014)

  Changed paths:
    M src/kernel/PCL.cpp

  Log Message:
  -----------
  fix small bug with pcl kernel, move pcl stage out of makeReader


  Commit: f424a95f893d8ce14f439b15f90cb19d55b7e298
      https://github.com/PDAL/PDAL/commit/f424a95f893d8ce14f439b15f90cb19d55b7e298
  Author: Howard Butler <howard at hobu.co>
  Date:   2014-09-15 (Mon, 15 Sep 2014)

  Changed paths:
    M src/kernel/PCL.cpp

  Log Message:
  -----------
  Merge pull request #457 from chambbj/pcl-kernel-bug

fix small bug with pcl kernel, move pcl stage out of makeReader


  Commit: cc7af1206bee1ba9b31e74f95a52950466e1c458
      https://github.com/PDAL/PDAL/commit/cc7af1206bee1ba9b31e74f95a52950466e1c458
  Author: Pete Gadomski <pete.gadomski at gmail.com>
  Date:   2014-09-15 (Mon, 15 Sep 2014)

  Changed paths:
    M src/filters/Decimation.cpp

  Log Message:
  -----------
  Guard a PCLConversions include

This passed Travis b/c stubs are now ON for Travis
(f85550e6d3532460a18847b7f178e552961e3953). I'm not sure if it's
worth the hassle to add a whole new row to the build matrix to test with
stubs off, but a stubs off test would have been necessary to catch this
problem.


  Commit: 6797ac4c3ac47c5ed169ef6e6f918fd80c8b9fa1
      https://github.com/PDAL/PDAL/commit/6797ac4c3ac47c5ed169ef6e6f918fd80c8b9fa1
  Author: Pete Gadomski <pete.gadomski at gmail.com>
  Date:   2014-09-15 (Mon, 15 Sep 2014)

  Changed paths:
    M src/drivers/rxp/RxpReader.cpp

  Log Message:
  -----------
  Catch bad_numeric_cast, rethrow better

Also, use long, not int32_t, for rxp moving average. This seems slightly
clearer to me.

Per @abellgithub's comments on 51b11498cdc4f11c765cf723625100d826aa4da6.


  Commit: 5931bfebd1ce265431b7859af88c646fac7252fb
      https://github.com/PDAL/PDAL/commit/5931bfebd1ce265431b7859af88c646fac7252fb
  Author: Pete Gadomski <pete.gadomski at gmail.com>
  Date:   2014-09-15 (Mon, 15 Sep 2014)

  Changed paths:
    M include/pdal/kernel/Info.hpp
    M src/kernel/Info.cpp

  Log Message:
  -----------
  Remove m_useREST from kernel/Info

This unused variable was throwing a warning. I'm removing it since I'm
not sure how it was meant to be used.


  Commit: f03d1180f6173d8c511cb43e90b8fbdf599c744c
      https://github.com/PDAL/PDAL/commit/f03d1180f6173d8c511cb43e90b8fbdf599c744c
  Author: Howard Butler <howard at hobu.co>
  Date:   2014-09-15 (Mon, 15 Sep 2014)

  Changed paths:
    M include/pdal/kernel/Info.hpp
    M src/kernel/Info.cpp

  Log Message:
  -----------
  Merge pull request #459 from gadomski/remove-unused-variable

Remove m_useREST from kernel/Info


  Commit: 52d9cf1a6060e79089fc6db810c7ee649cbfd397
      https://github.com/PDAL/PDAL/commit/52d9cf1a6060e79089fc6db810c7ee649cbfd397
  Author: Howard Butler <howard at hobu.co>
  Date:   2014-09-15 (Mon, 15 Sep 2014)

  Changed paths:
    M src/filters/Decimation.cpp

  Log Message:
  -----------
  Merge pull request #458 from gadomski/guard-pcl-include

Guard a PCLConversions include


  Commit: cf1f27759232b593bcaec704e2e58b5d5d26a188
      https://github.com/PDAL/PDAL/commit/cf1f27759232b593bcaec704e2e58b5d5d26a188
  Author: Bradley J Chambers <brad.chambers at gmail.com>
  Date:   2014-09-15 (Mon, 15 Sep 2014)

  Changed paths:
    M include/pdal/kernel/Application.hpp
    M include/pdal/kernel/Translate.hpp
    M src/kernel/Application.cpp
    M src/kernel/PCL.cpp
    M src/kernel/Random.cpp
    M src/kernel/Translate.cpp

  Log Message:
  -----------
  scale/offset now in Application.cpp

* --scale and --offset are once again available as Translate options
  (see #445), but are now available to Random and PCL kernels as well
* scale and offset are now set at the Application (vice Translate) level
* scale and offset are set (along with debug and verbosity level) via
  setCommonOptions()
* there are a number of things that could be bubbled up from the
  individual kernels, so this is likely the first of a few commits aimed
  at streamlining things


  Commit: abd41600e075e29ea72acc73b405075812e8a1c6
      https://github.com/PDAL/PDAL/commit/abd41600e075e29ea72acc73b405075812e8a1c6
  Author: Howard Butler <howard at hobu.co>
  Date:   2014-09-15 (Mon, 15 Sep 2014)

  Changed paths:
    M include/pdal/kernel/Application.hpp
    M include/pdal/kernel/Translate.hpp
    M src/kernel/Application.cpp
    M src/kernel/PCL.cpp
    M src/kernel/Random.cpp
    M src/kernel/Translate.cpp

  Log Message:
  -----------
  Merge pull request #461 from chambbj/issues/445-scale-offset

scale/offset now in Application.cpp


  Commit: 936ef4cf8ea101ccbf807954bda82704aa1511b6
      https://github.com/PDAL/PDAL/commit/936ef4cf8ea101ccbf807954bda82704aa1511b6
  Author: Andrew Bell <andrew.bell.ia at gmail.com>
  Date:   2014-09-15 (Mon, 15 Sep 2014)

  Changed paths:
    M include/pdal/RawPtBuf.hpp
    M test/unit/PointBufferTest.cpp

  Log Message:
  -----------
  Test to exercise large point buffers.
Test random access to filled point buffer.


  Commit: 079416774c1c56649cac53a2700d20901a5ca26e
      https://github.com/PDAL/PDAL/commit/079416774c1c56649cac53a2700d20901a5ca26e
  Author: Andrew Bell <andrew.bell.ia at gmail.com>
  Date:   2014-09-15 (Mon, 15 Sep 2014)

  Changed paths:
    M test/unit/PointBufferTest.cpp

  Log Message:
  -----------
  Remove debug.


  Commit: 959fdc80a707e2db67a7ada5a7884dc4b8996014
      https://github.com/PDAL/PDAL/commit/959fdc80a707e2db67a7ada5a7884dc4b8996014
  Author: Howard Butler <howard at hobu.co>
  Date:   2014-09-15 (Mon, 15 Sep 2014)

  Changed paths:
    M include/pdal/RawPtBuf.hpp
    M test/unit/PointBufferTest.cpp

  Log Message:
  -----------
  Merge pull request #462 from PDAL/ctxchunk

Ctxchunk


  Commit: 9e82e375b1e83d6d6ac844b030b3fb8ffd320dc5
      https://github.com/PDAL/PDAL/commit/9e82e375b1e83d6d6ac844b030b3fb8ffd320dc5
  Author: Pete Gadomski <pete.gadomski at gmail.com>
  Date:   2014-09-16 (Tue, 16 Sep 2014)

  Changed paths:
    M doc/stages/drivers.rxp.reader.rst

  Log Message:
  -----------
  Fix typo in rxp docs


  Commit: 53662a054a6a590b5f6bba7a00a011e20cde0708
      https://github.com/PDAL/PDAL/commit/53662a054a6a590b5f6bba7a00a011e20cde0708
  Author: Pete Gadomski <pete.gadomski at gmail.com>
  Date:   2014-09-16 (Tue, 16 Sep 2014)

  Changed paths:
    M doc/stages/drivers.rxp.reader.rst

  Log Message:
  -----------
  Fix another rxp docs typo

Spam spam spam.


  Commit: 52f9d00438d5c440c3b85f2954874b200041024c
      https://github.com/PDAL/PDAL/commit/52f9d00438d5c440c3b85f2954874b200041024c
  Author: Bradley J Chambers <brad.chambers at gmail.com>
  Date:   2014-09-16 (Tue, 16 Sep 2014)

  Changed paths:
    M apps/pdal.cpp
    M include/pdal/Kernel.hpp
    M include/pdal/filters/PCLBlock.hpp
    A include/pdal/kernel/Ground.hpp
    M include/pdal/kernel/Kernel.hpp
    M src/CMakeLists.txt
    M src/filters/PCLBlock.cpp
    A src/kernel/Ground.cpp
    M src/kernel/PCL.cpp

  Log Message:
  -----------
  add a new kernel to directly invoke ground filtering algorithms from the
command line (currently only PMF, which requires PCL)


  Commit: 453994d1d90b853ee22ca9e1944f2b9372b4b723
      https://github.com/PDAL/PDAL/commit/453994d1d90b853ee22ca9e1944f2b9372b4b723
  Author: Bradley J Chambers <brad.chambers at gmail.com>
  Date:   2014-09-16 (Tue, 16 Sep 2014)

  Changed paths:
    M include/stubs/pcl/pipeline/pipeline.h

  Log Message:
  -----------
  fix PCL stub for setJSON in pipeline


  Commit: 937e54d473cbcec248ad930c4676706b73f718d5
      https://github.com/PDAL/PDAL/commit/937e54d473cbcec248ad930c4676706b73f718d5
  Author: Howard Butler <howard at hobu.co>
  Date:   2014-09-16 (Tue, 16 Sep 2014)

  Changed paths:
    M apps/pdal.cpp
    M include/pdal/Kernel.hpp
    M include/pdal/filters/PCLBlock.hpp
    A include/pdal/kernel/Ground.hpp
    M include/pdal/kernel/Kernel.hpp
    M include/stubs/pcl/pipeline/pipeline.h
    M src/CMakeLists.txt
    M src/filters/PCLBlock.cpp
    A src/kernel/Ground.cpp
    M src/kernel/PCL.cpp

  Log Message:
  -----------
  Merge pull request #463 from chambbj/ground-kernel

add a new kernel to directly invoke ground filtering algorithms from the


  Commit: 0327546443f8866fcc3ea926d706190c1bb933f7
      https://github.com/PDAL/PDAL/commit/0327546443f8866fcc3ea926d706190c1bb933f7
  Author: Pete Gadomski <pete.gadomski at gmail.com>
  Date:   2014-09-17 (Wed, 17 Sep 2014)

  Changed paths:
    M apps/pdal.cpp
    M include/pdal/Kernel.hpp
    M include/pdal/kernel/Kernel.hpp
    M src/CMakeLists.txt

  Log Message:
  -----------
  Include ground kernel app only if we have PCL

For now, the ground filter can't run without PCL, so we should ghost it
away if we don't have PCL.


  Commit: 5a2225c3c55718d0a3edf2580e3f54379a12fb14
      https://github.com/PDAL/PDAL/commit/5a2225c3c55718d0a3edf2580e3f54379a12fb14
  Author: Howard Butler <howard at hobu.co>
  Date:   2014-09-17 (Wed, 17 Sep 2014)

  Changed paths:
    M apps/pdal.cpp
    M include/pdal/Kernel.hpp
    M include/pdal/kernel/Kernel.hpp
    M src/CMakeLists.txt

  Log Message:
  -----------
  Merge pull request #464 from gadomski/ground-depends-on-pcl

Include ground kernel app only if we have PCL


  Commit: 051a4f527d3697ff23a276dc6a428d7f218e1cf2
      https://github.com/PDAL/PDAL/commit/051a4f527d3697ff23a276dc6a428d7f218e1cf2
  Author: Pete Gadomski <pete.gadomski at gmail.com>
  Date:   2014-09-17 (Wed, 17 Sep 2014)

  Changed paths:
    M include/pdal/drivers/rxp/RxpReader.hpp
    M src/drivers/rxp/RxpReader.cpp
    M test/unit/drivers/rxp/RxpReaderTest.cpp

  Log Message:
  -----------
  Factor out rxp moving average to a free function

This makes it easier to test.


  Commit: f10f2c55874eff1d073623974efb3679b09b987a
      https://github.com/PDAL/PDAL/commit/f10f2c55874eff1d073623974efb3679b09b987a
  Author: Pete Gadomski <pete.gadomski at gmail.com>
  Date:   2014-09-17 (Wed, 17 Sep 2014)

  Changed paths:
    M scripts/ci/script.sh

  Log Message:
  -----------
  Always test WITH_STUBS=OFF

More useful than WITH_STUBS=ON, since our out-of-the-box builds are no
stubs.


  Commit: dcf5238a072a224768a14b895df3ed869658c063
      https://github.com/PDAL/PDAL/commit/dcf5238a072a224768a14b895df3ed869658c063
  Author: Howard Butler <howard at hobu.co>
  Date:   2014-09-17 (Wed, 17 Sep 2014)

  Changed paths:
    M scripts/ci/script.sh

  Log Message:
  -----------
  Merge pull request #465 from gadomski/test-without-stubs

Always test WITH_STUBS=OFF


  Commit: c092f06a7ed70675141585ef63d839aa673e7e77
      https://github.com/PDAL/PDAL/commit/c092f06a7ed70675141585ef63d839aa673e7e77
  Author: Bradley J Chambers <brad.chambers at gmail.com>
  Date:   2014-09-17 (Wed, 17 Sep 2014)

  Changed paths:
    A include/stubs/pcl/pcl_config.h
    M src/pdal_config.cpp

  Log Message:
  -----------
  add PCL version to full version string (if present)


  Commit: ac44b8910e6419fb49448e906123667166525f40
      https://github.com/PDAL/PDAL/commit/ac44b8910e6419fb49448e906123667166525f40
  Author: Pete Gadomski <pete.gadomski at gmail.com>
  Date:   2014-09-17 (Wed, 17 Sep 2014)

  Changed paths:
    M test/unit/CMakeLists.txt
    M test/unit/TestConfig.cpp
    R test/unit/TestConfig.hpp
    A test/unit/TestConfig.hpp.in

  Log Message:
  -----------
  Default tests' data path to repo's data

My rough guess is that 99% of the times pdal_test is run, it uses
${CMAKE_SOURCE_DIR}/test/data as its data path. This patch sets the
default test data path to that directory, using cmake's configure_file.
Now you can just run:

```bash
pdal_test
```

to run the test suite.

The old invocations are still valid: `pdal_test /my/other/test/data`,
etc.


  Commit: e656a7784884728c9c3c9cc17ae77df096b128cf
      https://github.com/PDAL/PDAL/commit/e656a7784884728c9c3c9cc17ae77df096b128cf
  Author: Howard Butler <howard at hobu.co>
  Date:   2014-09-17 (Wed, 17 Sep 2014)

  Changed paths:
    M test/unit/CMakeLists.txt
    M test/unit/TestConfig.cpp
    R test/unit/TestConfig.hpp
    A test/unit/TestConfig.hpp.in

  Log Message:
  -----------
  Merge pull request #466 from gadomski/run-tests-without-path

Default tests' data path to repo's data


  Commit: da763b36760a5a16d7b272f42fb97357d2a975a6
      https://github.com/PDAL/PDAL/commit/da763b36760a5a16d7b272f42fb97357d2a975a6
  Author: Pete Gadomski <pete.gadomski at gmail.com>
  Date:   2014-09-17 (Wed, 17 Sep 2014)

  Changed paths:
    M CMakeLists.txt
    R doc/stages/drivers.rxp.reader.rst
    M doc/stages/index.rst
    M include/pdal/Dimension.hpp
    M include/pdal/Drivers.hpp
    R include/pdal/drivers/rxp/RxpReader.hpp
    M pdal_defines.h.in
    M scripts/ci/script.sh
    M src/CMakeLists.txt
    M src/StageFactory.cpp
    R src/drivers/rxp/RxpReader.cpp
    M src/pdal_config.cpp
    R test/data/rxp/130501_232206_cut.rxp
    M test/unit/CMakeLists.txt
    R test/unit/drivers/rxp/RxpReaderTest.cpp

  Log Message:
  -----------
  Remove rxp driver


  Commit: dd76b4f73ce7b3cd0ea01bbdd73fb0c02ca8c46c
      https://github.com/PDAL/PDAL/commit/dd76b4f73ce7b3cd0ea01bbdd73fb0c02ca8c46c
  Author: Pete Gadomski <pete.gadomski at gmail.com>
  Date:   2014-09-17 (Wed, 17 Sep 2014)

  Changed paths:
    M .travis.yml
    M scripts/ci/script.sh

  Log Message:
  -----------
  Add stubs_only mode to Travis

This mode builds with no optional components (no PCL, especially), but
with stubs.


  Commit: cc9f29b31602bda96d61a75dbdaae92d60378b6a
      https://github.com/PDAL/PDAL/commit/cc9f29b31602bda96d61a75dbdaae92d60378b6a
  Author: Pete Gadomski <pete.gadomski at gmail.com>
  Date:   2014-09-17 (Wed, 17 Sep 2014)

  Changed paths:
    M .travis.yml
    M scripts/ci/script.sh

  Log Message:
  -----------
  Merge pull request #467 from gadomski/travis-stubs-only

Add stubs_only mode to Travis


  Commit: d9c770d76cee1b6a6ef131cf0c9b749f03e2f819
      https://github.com/PDAL/PDAL/commit/d9c770d76cee1b6a6ef131cf0c9b749f03e2f819
  Author: Pete Gadomski <pete.gadomski at gmail.com>
  Date:   2014-09-17 (Wed, 17 Sep 2014)

  Changed paths:
    M .travis.yml

  Log Message:
  -----------
  Add secure slack notifications to travis

Slack gets notified on all failures and all fixes (not every success).


  Commit: a81afe8595c8f7073661341158d267c15a06913e
      https://github.com/PDAL/PDAL/commit/a81afe8595c8f7073661341158d267c15a06913e
  Author: Pete Gadomski <pete.gadomski at gmail.com>
  Date:   2014-09-17 (Wed, 17 Sep 2014)

  Changed paths:
    M .travis.yml

  Log Message:
  -----------
  Merge pull request #468 from gadomski/travis-notify-slack

Add secure slack notifications to travis


  Commit: dfacdef1e8ff8274ee4695d5eb91ecca4b339747
      https://github.com/PDAL/PDAL/commit/dfacdef1e8ff8274ee4695d5eb91ecca4b339747
  Author: Bradley J Chambers <brad.chambers at gmail.com>
  Date:   2014-09-17 (Wed, 17 Sep 2014)

  Changed paths:
    M doc/apps.rst
    M doc/community.rst
    M doc/compilation/dependencies.rst
    M doc/stages/drivers.faux.reader.rst
    R doc/stages/filters.byteswap.rst
    R doc/stages/filters.cache.rst
    R doc/stages/filters.inplacereprojection.rst
    R doc/stages/filters.scaling.rst
    R doc/stages/filters.selector.rst
    M doc/stages/index.rst
    M doc/vagrant.rst

  Log Message:
  -----------
  update a number of documents (PCL, deprecated filters, etc.)


  Commit: 3b1b52761d740fcadb5b98156311cd76e6fc3f27
      https://github.com/PDAL/PDAL/commit/3b1b52761d740fcadb5b98156311cd76e6fc3f27
  Author: Andrew Bell <andrew.bell.ia at gmail.com>
  Date:   2014-09-17 (Wed, 17 Sep 2014)

  Changed paths:
    M src/drivers/las/Header.cpp
    M test/unit/drivers/las/LasReaderTest.cpp

  Log Message:
  -----------
  Add LAS header test.
Fix scale bug in LAS header copy ctor.


  Commit: d7555fd0d2bb81d24b31c4b64c55e30c35c631dd
      https://github.com/PDAL/PDAL/commit/d7555fd0d2bb81d24b31c4b64c55e30c35c631dd
  Author: Andrew Bell <andrew.bell.ia at gmail.com>
  Date:   2014-09-17 (Wed, 17 Sep 2014)

  Changed paths:
    M .travis.yml

  Log Message:
  -----------
  Merge branch 'master' of https://www.github.com/PDAL/PDAL


  Commit: 7b7efae261154c3beb51d272c4e475ef28b7fc3f
      https://github.com/PDAL/PDAL/commit/7b7efae261154c3beb51d272c4e475ef28b7fc3f
  Author: Howard Butler <howard at hobu.co>
  Date:   2014-09-18 (Thu, 18 Sep 2014)

  Changed paths:
    M src/drivers/oci/common.cpp

  Log Message:
  -----------
  clean up oci warning nit


  Commit: 3e656603a4efde76522721d9aa17902c0fe3bc84
      https://github.com/PDAL/PDAL/commit/3e656603a4efde76522721d9aa17902c0fe3bc84
  Author: Howard Butler <howard at hobu.co>
  Date:   2014-09-18 (Thu, 18 Sep 2014)

  Changed paths:
    M test/data/bpf/bpf.xml

  Log Message:
  -----------
  update example to point-context-schema (no filters.scaling anymore)


  Commit: 270f5cddf9954505f46a26a73a9055a86eeaa11c
      https://github.com/PDAL/PDAL/commit/270f5cddf9954505f46a26a73a9055a86eeaa11c
  Author: Howard Butler <howard at hobu.co>
  Date:   2014-09-18 (Thu, 18 Sep 2014)

  Changed paths:
    M include/pdal/drivers/nitf/Writer.hpp
    M src/drivers/nitf/Writer.cpp
    M src/kernel/Info.cpp

  Log Message:
  -----------
  add additional classifcation field option to drivers.nitf.writer


  Commit: 7023f35ff8419187f8cf2a9bb1fb0c32e2a60690
      https://github.com/PDAL/PDAL/commit/7023f35ff8419187f8cf2a9bb1fb0c32e2a60690
  Author: Paul Ramsey <pramsey at cleverelephant.ca>
  Date:   2014-09-18 (Thu, 18 Sep 2014)

  Changed paths:
    M src/PipelineWriter.cpp

  Log Message:
  -----------
  Allow build on Boost 1.56


  Commit: 8d05e6bc00decbf3b5342748713a2b533f36e920
      https://github.com/PDAL/PDAL/commit/8d05e6bc00decbf3b5342748713a2b533f36e920
  Author: Howard Butler <howard at hobu.co>
  Date:   2014-09-18 (Thu, 18 Sep 2014)

  Changed paths:
    M src/PipelineWriter.cpp

  Log Message:
  -----------
  Merge pull request #471 from pramsey/boost56

Allow build on Boost 1.56


  Commit: 1ba8de319b823a075f74a60a0c60d6a8f786b61d
      https://github.com/PDAL/PDAL/commit/1ba8de319b823a075f74a60a0c60d6a8f786b61d
  Author: Howard Butler <howard at hobu.co>
  Date:   2014-09-18 (Thu, 18 Sep 2014)

  Changed paths:
    M doc/apps.rst
    M doc/community.rst
    M doc/compilation/dependencies.rst
    M doc/stages/drivers.faux.reader.rst
    R doc/stages/filters.byteswap.rst
    R doc/stages/filters.cache.rst
    R doc/stages/filters.inplacereprojection.rst
    R doc/stages/filters.scaling.rst
    R doc/stages/filters.selector.rst
    M doc/stages/index.rst
    M doc/vagrant.rst

  Log Message:
  -----------
  Merge pull request #469 from chambbj/doc-updates

update a number of documents (PCL, deprecated filters, etc.)


  Commit: d40edc946f2315314ae0098850d10feaabb7d985
      https://github.com/PDAL/PDAL/commit/d40edc946f2315314ae0098850d10feaabb7d985
  Author: Paul Ramsey <pramsey at cleverelephant.ca>
  Date:   2014-09-18 (Thu, 18 Sep 2014)

  Changed paths:
    M doc/stages/drivers.pgpointcloud.writer.rst

  Log Message:
  -----------
  Add undoc'ed options for pgpointcloud writer


  Commit: c3b970f233f8ef9fe68e67ca30315af873bbe274
      https://github.com/PDAL/PDAL/commit/c3b970f233f8ef9fe68e67ca30315af873bbe274
  Author: Howard Butler <howard at hobu.co>
  Date:   2014-09-18 (Thu, 18 Sep 2014)

  Changed paths:
    M doc/stages/drivers.pgpointcloud.writer.rst

  Log Message:
  -----------
  Merge pull request #472 from pramsey/pgdoc

Add undoc'ed options for pgpointcloud writer


  Commit: c6d987c01dbb4e53d92df0cf8397293e2d9fd3dd
      https://github.com/PDAL/PDAL/commit/c6d987c01dbb4e53d92df0cf8397293e2d9fd3dd
  Author: Howard Butler <howard at hobu.co>
  Date:   2014-09-19 (Fri, 19 Sep 2014)

  Changed paths:
    A test/data/bpf/bpf2nitf.xml

  Log Message:
  -----------
  add bpf2nitf example pipeline


  Commit: 6876b7362068de56057a7963683ab9247cd67f6d
      https://github.com/PDAL/PDAL/commit/6876b7362068de56057a7963683ab9247cd67f6d
  Author: Connor Manning <connor at hobu.co>
  Date:   2014-09-19 (Fri, 19 Sep 2014)

  Changed paths:
    M .travis.yml
    M apps/pdal.cpp
    M cmake/examples/hobu-config.sh
    M doc/apps.rst
    M doc/community.rst
    M doc/compilation/dependencies.rst
    M doc/stages/drivers.faux.reader.rst
    M doc/stages/drivers.pgpointcloud.writer.rst
    R doc/stages/filters.byteswap.rst
    R doc/stages/filters.cache.rst
    R doc/stages/filters.inplacereprojection.rst
    M doc/stages/filters.programmable.rst
    R doc/stages/filters.scaling.rst
    R doc/stages/filters.selector.rst
    M doc/stages/index.rst
    M doc/tutorial/overview.rst
    A doc/tutorial/pipeline.png
    M doc/vagrant.rst
    M include/pdal/Dimension.hpp
    M include/pdal/Kernel.hpp
    M include/pdal/Metadata.hpp
    M include/pdal/PDALUtils.hpp
    M include/pdal/PipelineManager.hpp
    M include/pdal/PointBuffer.hpp
    M include/pdal/PointContext.hpp
    M include/pdal/RawPtBuf.hpp
    M include/pdal/Stage.hpp
    M include/pdal/Utils.hpp
    M include/pdal/drivers/bpf/BpfHeader.hpp
    M include/pdal/drivers/bpf/BpfReader.hpp
    M include/pdal/drivers/caris/CloudReader.hpp
    M include/pdal/drivers/faux/Reader.hpp
    M include/pdal/drivers/greyhound/Reader.hpp
    M include/pdal/drivers/icebridge/Reader.hpp
    M include/pdal/drivers/las/Reader.hpp
    M include/pdal/drivers/las/Writer.hpp
    M include/pdal/drivers/nitf/Writer.hpp
    M include/pdal/drivers/oci/OciReader.hpp
    M include/pdal/drivers/oci/Writer.hpp
    M include/pdal/drivers/oci/common.hpp
    M include/pdal/drivers/p2g/P2gWriter.hpp
    M include/pdal/drivers/pcd/Reader.hpp
    M include/pdal/drivers/pcd/Writer.hpp
    M include/pdal/drivers/pgpointcloud/PgReader.hpp
    M include/pdal/drivers/pgpointcloud/Writer.hpp
    M include/pdal/drivers/qfit/Reader.hpp
    M include/pdal/drivers/sbet/Reader.hpp
    M include/pdal/drivers/sbet/Writer.hpp
    M include/pdal/drivers/sqlite/SQLiteCommon.hpp
    M include/pdal/drivers/sqlite/SQLiteReader.hpp
    M include/pdal/drivers/sqlite/SQLiteWriter.hpp
    M include/pdal/drivers/terrasolid/Reader.hpp
    M include/pdal/drivers/text/Writer.hpp
    M include/pdal/filters/Decimation.hpp
    M include/pdal/filters/PCLBlock.hpp
    M include/pdal/filters/Programmable.hpp
    M include/pdal/kernel/Application.hpp
    A include/pdal/kernel/Ground.hpp
    M include/pdal/kernel/Info.hpp
    M include/pdal/kernel/Kernel.hpp
    A include/pdal/kernel/Random.hpp
    M include/pdal/kernel/Translate.hpp
    M include/pdal/pdal_config.hpp
    A include/stubs/pcl/filters/voxel_grid.h
    A include/stubs/pcl/pcl_config.h
    M include/stubs/pcl/pipeline/pipeline.h
    M scripts/ci/script.sh
    M src/CMakeLists.txt
    M src/Metadata.cpp
    M src/PipelineWriter.cpp
    M src/Stage.cpp
    M src/StageFactory.cpp
    M src/Utils.cpp
    M src/drivers/bpf/BpfHeader.cpp
    M src/drivers/bpf/BpfReader.cpp
    M src/drivers/caris/CloudReader.cpp
    M src/drivers/faux/Reader.cpp
    M src/drivers/greyhound/Reader.cpp
    M src/drivers/icebridge/Reader.cpp
    M src/drivers/las/Header.cpp
    M src/drivers/las/Reader.cpp
    M src/drivers/las/Writer.cpp
    M src/drivers/nitf/Writer.cpp
    M src/drivers/oci/OciReader.cpp
    M src/drivers/oci/Writer.cpp
    M src/drivers/oci/common.cpp
    M src/drivers/p2g/P2gWriter.cpp
    M src/drivers/pcd/Reader.cpp
    M src/drivers/pgpointcloud/PgReader.cpp
    M src/drivers/pgpointcloud/Writer.cpp
    M src/drivers/qfit/Reader.cpp
    M src/drivers/sbet/Reader.cpp
    M src/drivers/sbet/Writer.cpp
    M src/drivers/sqlite/SQLiteReader.cpp
    M src/drivers/sqlite/SQLiteWriter.cpp
    M src/drivers/terrasolid/Reader.cpp
    M src/drivers/text/Writer.cpp
    M src/filters/Decimation.cpp
    M src/filters/PCLBlock.cpp
    M src/filters/Programmable.cpp
    M src/kernel/Application.cpp
    M src/kernel/Delta.cpp
    A src/kernel/Ground.cpp
    M src/kernel/Info.cpp
    M src/kernel/PCL.cpp
    A src/kernel/Random.cpp
    M src/kernel/Translate.cpp
    M src/pdal_config.cpp
    R test/data/1.0_0.las
    R test/data/1.0_0_nosrs.las
    R test/data/1.0_1.las
    R test/data/1.0_1_nosrs.las
    R test/data/1.1_0.las
    R test/data/1.1_0_nosrs.las
    R test/data/1.1_1.las
    R test/data/1.1_1_nosrs.las
    R test/data/1.2-no-points.las
    R test/data/1.2-with-color-clipped.las
    R test/data/1.2-with-color.las
    R test/data/1.2-with-color.las.wkt
    R test/data/1.2_0.las
    R test/data/1.2_0_nosrs.las
    R test/data/1.2_1.las
    R test/data/1.2_1_nosrs.las
    R test/data/1.2_2.las
    R test/data/1.2_2_nosrs.las
    R test/data/1.2_3.las
    R test/data/1.2_3_nosrs.las
    R test/data/TextWriterTest-geojson.json
    R test/data/autzen-dd.las
    R test/data/autzen-point-format-3.las
    R test/data/autzen-point-format-3.txt
    R test/data/autzen-selection-dd.wkt
    R test/data/autzen-selection.wkt
    R test/data/autzen-srs.wkt
    R test/data/autzen-thin-srs.las
    R test/data/autzen-thin.las
    R test/data/autzen-utm-chipped-25.las
    R test/data/autzen-utm.las
    R test/data/autzen.jpg
    R test/data/autzen.jpg.aux.xml
    R test/data/autzen.las
    R test/data/autzen.wld
    A test/data/autzen/autzen-dd.las
    A test/data/autzen/autzen-point-format-3.las
    A test/data/autzen/autzen-point-format-3.txt
    A test/data/autzen/autzen-selection-dd.wkt
    A test/data/autzen/autzen-selection.wkt
    A test/data/autzen/autzen-srs.wkt
    A test/data/autzen/autzen-thin-srs.las
    A test/data/autzen/autzen-thin.las
    A test/data/autzen/autzen-utm-chipped-25.las
    A test/data/autzen/autzen-utm.las
    A test/data/autzen/autzen.jpg
    A test/data/autzen/autzen.jpg.aux.xml
    A test/data/autzen/autzen.las
    A test/data/autzen/autzen.wld
    A test/data/bpf/bpf.xml
    A test/data/bpf/bpf2nitf.xml
    A test/data/drivers/text-writer-csv.xml
    A test/data/drivers/text-writer-geojson.xml
    A test/data/drivers/text-writer-space-delimited.xml
    R test/data/epsg_4326.las
    M test/data/filters/colorize-multi.xml
    M test/data/filters/colorize.xml
    M test/data/filters/crop_wkt.xml
    M test/data/filters/crop_wkt_2d.xml
    M test/data/filters/crop_wkt_2d_classification.xml
    M test/data/filters/decimate.xml
    M test/data/filters/hexbin-info.xml
    M test/data/filters/hexbin.xml
    A test/data/filters/hextest.txt
    A test/data/filters/merge.xml
    M test/data/filters/reproject.xml
    M test/data/filters/scaling.xml
    M test/data/filters/selector.xml
    M test/data/filters/splitter.xml
    M test/data/filters/stats.xml
    R test/data/hextest.las
    R test/data/hextest.txt
    R test/data/interesting.las
    A test/data/las/1.2-with-color-clipped.las
    A test/data/las/1.2-with-color.las
    A test/data/las/1.2-with-color.las.wkt
    A test/data/las/epsg_4326.las
    A test/data/las/hextest.las
    A test/data/las/interesting.las
    A test/data/las/lots_of_vlr.las
    A test/data/las/mvk-thin.las
    A test/data/las/mvk-thin.las.wkt
    A test/data/las/no-points.las
    A test/data/las/noise-clean.las
    A test/data/las/noise-dirty.las
    A test/data/las/permutations/1.0_0.las
    A test/data/las/permutations/1.0_1.las
    A test/data/las/permutations/1.1_0.las
    A test/data/las/permutations/1.1_1.las
    A test/data/las/permutations/1.2-no-points.las
    A test/data/las/permutations/1.2_0.las
    A test/data/las/permutations/1.2_1.las
    A test/data/las/permutations/1.2_2.las
    A test/data/las/permutations/1.2_3.las
    A test/data/las/simple.las
    A test/data/las/utm15.las
    A test/data/las/utm17.las
    A test/data/laz/simple.laz
    R test/data/log_py.txt
    A test/data/logs/log_py.txt
    A test/data/logs/logtest.txt
    A test/data/logs/logtest_1.txt
    A test/data/logs/logtest_123.txt
    A test/data/logs/logtest_2.txt
    A test/data/logs/logtest_3.txt
    R test/data/logtest.txt
    R test/data/logtest_1.txt
    R test/data/logtest_123.txt
    R test/data/logtest_2.txt
    R test/data/logtest_3.txt
    R test/data/lots_of_vlr.las
    R test/data/mvk-thin.las
    R test/data/mvk-thin.las.wkt
    M test/data/nitf/conversion.xml
    A test/data/nitf/write_options.xml
    R test/data/no-points.las
    R test/data/noise-clean.las
    R test/data/noise-dirty.las
    M test/data/pipeline/bad/pipeline_bad01.xml
    M test/data/pipeline/bad/pipeline_bad05.xml
    M test/data/pipeline/bad/pipeline_bad06.xml
    M test/data/pipeline/bad/pipeline_bad07.xml
    M test/data/pipeline/bad/pipeline_bad08.xml
    M test/data/pipeline/bad/pipeline_bad09.xml
    R test/data/pipeline/create-dimension.xml
    M test/data/pipeline/drop_color.xml
    R test/data/pipeline/merge.xml
    R test/data/pipeline/mosaic.xml
    R test/data/pipeline/pipeline_asc.xml
    R test/data/pipeline/pipeline_csv.xml
    R test/data/pipeline/pipeline_geojson.xml
    M test/data/pipeline/pipeline_interpolate.xml
    M test/data/pipeline/pipeline_multioptions.xml
    R test/data/pipeline/pipeline_nitf.xml
    M test/data/pipeline/pipeline_read.xml
    M test/data/pipeline/pipeline_read_notype.xml
    M test/data/pipeline/pipeline_readcomments.xml
    R test/data/pipeline/pipeline_webgl.xml
    M test/data/pipeline/pipeline_writecomments.xml
    M test/data/plang/from-module.xml
    M test/data/plang/predicate-embed.xml
    M test/data/plang/predicate-keep-last-return.xml
    M test/data/plang/predicate-keep-specified-returns.xml
    A test/data/plang/programmable-update-y-dims.xml
    R test/data/simple.las
    R test/data/simple.laz
    R test/data/text.txt
    A test/data/text/TextWriterTest-geojson.json
    A test/data/text/text.txt
    R test/data/utm15.las
    R test/data/utm17.las
    M test/unit/CMakeLists.txt
    M test/unit/FileUtilsTest.cpp
    M test/unit/LogTest.cpp
    M test/unit/MetadataTest.cpp
    M test/unit/PipelineManagerTest.cpp
    M test/unit/PointBufferTest.cpp
    M test/unit/SpatialReferenceTest.cpp
    M test/unit/StageFactoryTest.cpp
    M test/unit/StreamFactoryTest.cpp
    M test/unit/SupportTest.cpp
    M test/unit/TestConfig.cpp
    R test/unit/TestConfig.hpp
    A test/unit/TestConfig.hpp.in
    M test/unit/drivers/las/LasReaderTest.cpp
    M test/unit/drivers/las/LasWriterTest.cpp
    M test/unit/drivers/nitf/NitfWriterTest.cpp
    M test/unit/drivers/oci/OCITest.cpp
    M test/unit/drivers/pgpointcloud/PgpointcloudWriterTest.cpp
    M test/unit/drivers/sqlite/SQLiteTest.cpp
    M test/unit/drivers/text/TextWriterTest.cpp
    M test/unit/filters/ChipperTest.cpp
    M test/unit/filters/ColorizationFilterTest.cpp
    M test/unit/filters/CropFilterTest.cpp
    M test/unit/filters/HexbinFilterTest.cpp
    M test/unit/filters/InPlaceReprojectionFilterTest.cpp
    M test/unit/filters/MergeTest.cpp
    M test/unit/filters/PCLBlockFilterTest.cpp
    M test/unit/filters/ReprojectionFilterTest.cpp
    M test/unit/filters/SplitterTest.cpp
    M test/unit/filters/StatsFilterTest.cpp
    M test/unit/plang/ProgrammableFilterTest.cpp

  Log Message:
  -----------
  Merge branch 'master' of https://github.com/PDAL/PDAL into indexing


  Commit: 5dc80db422644cf281d16058af66268a513f06d4
      https://github.com/PDAL/PDAL/commit/5dc80db422644cf281d16058af66268a513f06d4
  Author: Connor Manning <connor at hobu.co>
  Date:   2014-09-22 (Mon, 22 Sep 2014)

  Changed paths:
    M include/pdal/QuadIndex.hpp
    M src/QuadIndex.cpp

  Log Message:
  -----------
  Tweak rastering index.


Compare: https://github.com/PDAL/PDAL/compare/87cae19a4e28...5dc80db42264


More information about the pdal-commits mailing list