This repository was archived by the owner on Jul 28, 2025. It is now read-only.
Replies: 2 comments
-
|
I also would like to explore combining both C++ all-pairs PIP algorithms into a single function that automatically chooses the optimal path (perhaps with an optional quadtree argument to pass in a pre-built index for reuse) and always returns the results in a format that is optimal for the Python UI. |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
I think this should be an issue. I've already decided that this is important to do. :) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
#910 adopts
quadtree_point_in_polygonto support python's.contains_properlyAPI. However,quadtree_PiPis in nature all-pairs. There is a complex translation step involved to convert this result to match geopandas output. On the other hand, libcuspatial do support pairwise operation in C++, the missing link is that this API only supports "single polygon array" input. Perhaps we can explore expanding this API to accept multipolygon input and simplify.contains_properlyimplementation?Beta Was this translation helpful? Give feedback.
All reactions