Replies: 1 comment 3 replies
-
Yeah, the original |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
My team is currently on the lookout for alternatives to spatial index creation using Python and lucene (and then lupyne) came up.
currently we use RTree to create in memory spatial index with between 50K-150K polygons and for each polygon we search the intersected polygons and run some logic (which is really inefficient and happens in one process due to RTree limitations).
I saw that SpatialField has within (which could work with some sort of buffer on the geometry but we would rather avoid it if possible) and distance (which doesn't seem like a good fit for our needs) query.
Wondering what do you think about adding support for Polygons and intersection query
Thanks in advance
Beta Was this translation helpful? Give feedback.
All reactions