Is there a fast, permanent database for storing latitude, longitude, and integer values for quick geospatial searches?
The idea is that I have a lot of IDs of different things, and I want to search in the lat / lon squares for the entire ID in a specific place.
My first thought was to creatively use key-value stores such as membase or redis. However, I cannot find a search method based on properties such as latitude and longitude without creating lat / lon sized blocks with the set sizes and putting all identifiers as a value (which doesn't work very well).
source
share