I am looking for a minimalistic solution for doing basic geospatial search in Python.
We have a dataset of roughly 10 k locations and we need to solve the find the all locations within a radius of N kilometers from a given location. I am not looking for explicit database with geospatial support. I hope to get around another external solution. Is there something that would use Python only?
I am looking for a minimalistic solution for doing basic geospatial search in Python.
Share
Shapely seems to be a good solution. Its description seems to correspond to what you’re looking for :
It is based on GEOS, which a widely used C++ library.
Here is a link to the documentation