PDAL / python

PDAL's Python Support
Other
116 stars 34 forks source link

Pipeline iterator #90

Closed gsakkis closed 2 years ago

gsakkis commented 2 years ago

Adds PipelineIterator for executing a streamable PDAL pipeline in streaming mode. PipelineIterator is a Python iterator that yields Numpy arrays of bounded length configurable by chunk_size (default=10000).

This PR is built on top of https://github.com/PDAL/python/pull/89; the relevant PipelineIterator changes are contained in a single commit. There is also a temporary commit (not to be merged) for running the CI against a custom PDAL build of the related core PDAL PR (Python 3.8 only).

gsakkis commented 2 years ago

Superseded by #94