Open thomcom opened 2 years ago
@jarmak-nv should we create a milestone for Spatial Join?
Hi, very interested in this, any news ?
We do not have sjoin
but I think GeoSeries.contains
or GeoSeries.contains_properly
could be used?
CC @thomcom @jarmak-nv
Also interested, this would be a great addition.
Is your feature request related to a problem? Please describe. Spatial join is usually an application of either point-in-polygon or geometry intersection. Our point-in-polygon implementation is mature enough to begin using it as pythonic use of spatial join. In this issue I propose that we add
GeoDataFrame.sjoin
that will implement the functionality for point-in-polygon that GeoPandas gives an example of in https://geopandas.org/en/stable/docs/reference/api/geopandas.sjoin.htmlDescribe the solution you'd like
Describe alternatives you've considered It is possible to write this fairly easily, manually, using point-in-polygon.
Additional context This feature shouldn't require any C++ additions.