Adding support for Point Clouds #390
digital-idiot
started this conversation in
Ideas
Replies: 1 comment 2 replies
-
@digital-idiot, do you have a specific example? Possibly related to:
Potentially useful: |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
rioxarray
can already represent rasters in a tubular<2D coordinates>, <values>
format. This is very similar to the common point cloud representations we encounter. It would be great ifrioxarray
can be extended to support point clouds as well.I find it to be extremely hard to do tile-wise processing of point clouds using available means. Either the entire point cloud needs to be loaded into the memory just to process the spatial filter (example: points inside the extent of a rectangular box) or filter the chunks of
n
points in a loop which is extremely slow, and has to be done for each box. I thinkrioxarray
has the potential to address this as it has the advantage of geo-awareness as well as all the tricks of manipulating large array fromxarray
.Beta Was this translation helpful? Give feedback.
All reactions