You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Add support for dataframes in Pipeline constructor when passing in data
Add a .dataframes member to provide convenient access to the data frame instead of numpy array
Don't copy data while doing it 😉
Make it optionally available depending upon whether or not pandas is importable
The text was updated successfully, but these errors were encountered:
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.Pipeline
constructor when passing in data.dataframes
member to provide convenient access to the data frame instead of numpy arrayThe text was updated successfully, but these errors were encountered: