PDAL / python

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

Support pandas dataframes in addition to numpy arrays as inputs to Pipeline #129

Closed hobu closed 1 year ago

hobu commented 1 year ago

PDAL uses structured numpy arrays, and so a dataframe must be casted to it by calling to_records(). It would be convenient for PDAL to consume dataframes directly to save the external call and allow people to not worry about transforming back and forth.

hobu commented 1 year ago

Added in #130