[pdal-commits] [PDAL/PDAL] 2b1819: Add bounds option to writers.gdal doc.

GitHub noreply at github.com
Tue Apr 18 11:46:32 PDT 2017


  Branch: refs/heads/windows-packaging
  Home:   https://github.com/PDAL/PDAL
  Commit: 2b1819473fb5ac433284c2d89b6090a0f8041cbf
      https://github.com/PDAL/PDAL/commit/2b1819473fb5ac433284c2d89b6090a0f8041cbf
  Author: Andrew Bell <andrew.bell.ia at gmail.com>
  Date:   2017-04-13 (Thu, 13 Apr 2017)

  Changed paths:
    M doc/stages/writers.gdal.rst

  Log Message:
  -----------
  Add bounds option to writers.gdal doc.


  Commit: 57d0c3da0e1d2d1fec069067124ea5995080d77d
      https://github.com/PDAL/PDAL/commit/57d0c3da0e1d2d1fec069067124ea5995080d77d
  Author: Andrew Bell <andrew.bell.ia at gmail.com>
  Date:   2017-04-14 (Fri, 14 Apr 2017)

  Changed paths:
    M pdal/PointView.hpp

  Log Message:
  -----------
  Remove code moved to PointView.cpp.


  Commit: 85c05712b8b07dc90b7090ac1374bb747720a6b0
      https://github.com/PDAL/PDAL/commit/85c05712b8b07dc90b7090ac1374bb747720a6b0
  Author: Andrew Bell <andrew.bell.ia at gmail.com>
  Date:   2017-04-14 (Fri, 14 Apr 2017)

  Changed paths:
    M pdal/util/ProgramArgs.hpp
    M plugins/sqlite/io/SQLiteWriter.cpp
    M test/unit/ProgramArgsTest.cpp

  Log Message:
  -----------
  Allow longname synonyms in ProgramArgs.
Close #1560


  Commit: 22bae5ea114b4354314add4643fa656e767e9448
      https://github.com/PDAL/PDAL/commit/22bae5ea114b4354314add4643fa656e767e9448
  Author: Andrew Bell <andrew.bell.ia at gmail.com>
  Date:   2017-04-14 (Fri, 14 Apr 2017)

  Changed paths:
    M io/GDALGrid.cpp

  Log Message:
  -----------
  Make sure cell in which point itself lies is in bounds.
Close #1563


  Commit: 8f9c895b47ae8525ddaa779f4054510b8b171e5b
      https://github.com/PDAL/PDAL/commit/8f9c895b47ae8525ddaa779f4054510b8b171e5b
  Author: Bradley J Chambers <brad.chambers at gmail.com>
  Date:   2017-04-17 (Mon, 17 Apr 2017)

  Changed paths:
    M doc/apps/translate.rst
    M doc/pipeline.rst
    M doc/stages/filters.outlier.rst
    M doc/stages/filters.pmf.rst
    M doc/workshop/exercises/analysis/denoising/denoise.json
    M doc/workshop/exercises/analysis/denoising/denoising.rst
    M doc/workshop/exercises/analysis/ground/ground-run-ground-only.txt
    M doc/workshop/exercises/analysis/ground/ground.rst
    M doc/workshop/exercises/analysis/ground/translate-run-ground-only.txt

  Log Message:
  -----------
  Resolve some dangling references to deprecated extract and classify options

extract and classify have been used in several filters, namely outlier and PMF.
With the release of PDAL v1.5, we removed these options, opting to always
classify points, and to force users to ignore or extract them as they see fit
in their pipelines.

The outlier filter's extract option can be replicated by adding a range filter
stage as shown following the outlier filter:

    {
      "type":"filters.range",
      "limits":"Classification![7:7]"
    }

The PMF filter's extract option can be replicated by adding the following range
filter:

    {
      "type":"filters.range",
      "limits":"Classification[2:2]"
    }

The intention here was to remove any ambiguity as to how individual filters
implement "extract", and to instead be explicit in the pipeline specification
as to how points are extracted.


  Commit: 08020e1c9aa94e91be57b79ff0b9c21c92944b41
      https://github.com/PDAL/PDAL/commit/08020e1c9aa94e91be57b79ff0b9c21c92944b41
  Author: chambbj <brad.chambers at gmail.com>
  Date:   2017-04-17 (Mon, 17 Apr 2017)

  Changed paths:
    M doc/apps/translate.rst
    M doc/pipeline.rst
    M doc/stages/filters.outlier.rst
    M doc/stages/filters.pmf.rst
    M doc/workshop/exercises/analysis/denoising/denoise.json
    M doc/workshop/exercises/analysis/denoising/denoising.rst
    M doc/workshop/exercises/analysis/ground/ground-run-ground-only.txt
    M doc/workshop/exercises/analysis/ground/ground.rst
    M doc/workshop/exercises/analysis/ground/translate-run-ground-only.txt

  Log Message:
  -----------
  Merge pull request #1567 from PDAL/issue/1566-filter-docs

Resolve some dangling references to deprecated extract and classify options


  Commit: 284af8a883f146b2652a3bccf029d507de7a22c9
      https://github.com/PDAL/PDAL/commit/284af8a883f146b2652a3bccf029d507de7a22c9
  Author: Andrew Bell <andrew.bell.ia at gmail.com>
  Date:   2017-04-17 (Mon, 17 Apr 2017)

  Changed paths:
    M pdal/Kernel.cpp
    M pdal/PipelineReaderJSON.cpp
    M pdal/Stage.cpp
    M pdal/Stage.hpp
    M test/data/pipeline/options.json.in

  Log Message:
  -----------
  Allow tag names to contain underscores and capital letters.
Catch bad tag names during parse.
Close #1568


  Commit: 82a09ecdcd59db917c872dfa7a27ddaa7504ad8b
      https://github.com/PDAL/PDAL/commit/82a09ecdcd59db917c872dfa7a27ddaa7504ad8b
  Author: Éric Lemoine <eric.lemoine at oslandia.com>
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
    M doc/development/testing.rst

  Log Message:
  -----------
  Add note to docs about pgpointcloud tests


  Commit: 1f94a28bc1de6766b3aa38b0841cc7f04a7c8378
      https://github.com/PDAL/PDAL/commit/1f94a28bc1de6766b3aa38b0841cc7f04a7c8378
  Author: Andrew Bell <andrew.bell.ia at gmail.com>
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
    M doc/development/testing.rst

  Log Message:
  -----------
  Merge pull request #1571 from elemoine/pgpointcloud

Add note to docs about pgpointcloud tests


  Commit: f94cc05cebc14fbcd7b06b2800889bc2472b4bd9
      https://github.com/PDAL/PDAL/commit/f94cc05cebc14fbcd7b06b2800889bc2472b4bd9
  Author: Howard Butler <howard at hobu.co>
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
    M doc/apps/translate.rst
    M doc/development/testing.rst
    M doc/pipeline.rst
    M doc/stages/filters.outlier.rst
    M doc/stages/filters.pmf.rst
    M doc/stages/writers.gdal.rst
    M doc/workshop/exercises/analysis/denoising/denoise.json
    M doc/workshop/exercises/analysis/denoising/denoising.rst
    M doc/workshop/exercises/analysis/ground/ground-run-ground-only.txt
    M doc/workshop/exercises/analysis/ground/ground.rst
    M doc/workshop/exercises/analysis/ground/translate-run-ground-only.txt
    M io/GDALGrid.cpp
    M pdal/Kernel.cpp
    M pdal/PipelineReaderJSON.cpp
    M pdal/PointView.hpp
    M pdal/Stage.cpp
    M pdal/Stage.hpp
    M pdal/util/ProgramArgs.hpp
    M plugins/sqlite/io/SQLiteWriter.cpp
    M test/data/pipeline/options.json.in
    M test/unit/ProgramArgsTest.cpp

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


  Commit: da38bc0617dee8704ee0b7601ceb7d439d02548c
      https://github.com/PDAL/PDAL/commit/da38bc0617dee8704ee0b7601ceb7d439d02548c
  Author: Howard Butler <howard at hobu.co>
  Date:   2017-04-18 (Tue, 18 Apr 2017)

  Changed paths:
    M plugins/sqlite/io/SQLiteCommon.hpp

  Log Message:
  -----------
  sqlite extension loading for windows -- better error handling


Compare: https://github.com/PDAL/PDAL/compare/bf9a3252ab8e...da38bc0617de


More information about the pdal-commits mailing list