-
Notifications
You must be signed in to change notification settings - Fork 22
Description
Awesome project!
Some remarks and questions I have:
-
RAM: using K-d-trees: how is the memory complexity? Can you provide some measurements and graphs for big amounts of data? I think using some OSM country data could be a good idea.
-
What about the time complexity of the supported operations: insertion, fetching and deletion?
-
Is there support to persist the indexes to disk and reread them from disk?
-
I think it would be very helpful to provide some performance comparisons with the geo-spatial indexing engine of some popular databases.
-
What If I have a geospatial element that needs to be updated? For example the latitude needs to be corrected. Is there support for an "UPDATE" operation, and thus is updating the K-d tree possible? Or is there a work around: delete and insert? Maybe a good idea to document this in your README.md
-
What if I also have elevation data?