Mark Harris

Results 392 comments of Mark Harris

Based on the recent meeting I believe the answer is yes.

> point_geometry_idx: list of idx, the `j`th element in the `i`th row of the series indicates the multilinestring idx on lhs/rhs of the `j`th intersecting point of the `ith` pair....

To summarize, there are two PIP APIs: the non-indexed one which is limited to 31 polygons, and the indexed (quadtree) spatial join, which is limited only to the size representable...

@thomcom did you make any progress on this issue last year? Can you update with your findings so they do not get forgotten?

> think there's an option 2.5 where the cuSpatial C++ library is a header-only template library, but then the cuSpatial Python library can instantiate the versions of the template it...

@KirkDybvik can you provide any more information on your use case, and if possible any details of application or software in which you are (or want to) using cuSpatial? Also...

We are proceeding with adding a lower-level header-only API that is independent of libcudf. The existing cuDF-based API is a layer on top. So far we have merged one PR...

GPUs have very fast hardware rasterizers, so it seems like a shame to implement rasterization using per-pixel point-in-polygon tests. That said, it would require using a graphics API to access...

Interesting. Did you try cuSpatial's spatial join for this? There is room for optimization since your data are so regular (pixels) but you could generate points from the pixels (not...