-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ENH] Overlay functionality with Dask-geopandas #217
base: main
Are you sure you want to change the base?
Conversation
Thanks for looking into this. Seeing that this is essentially a mirror of sjoin inner implementation we have here, I am a bit afraid it won't be that easy. Take an example of We face very similar issue in left For overlay, we would need some form of very smart overlapping computation (#40) and I am not fully sure how would that work at the moment. |
d1a6bcd
to
f8da2f6
Compare
I wonder if it would not be better to solve this using the map-reduce pattern? For computing differences, That way, we can avoid increasing the partition sizes to implement |
To-Do