Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/latentflip/geodb
This is a hacky project to make a really basic nosql like geo database. You most probably don't want to use it, unless you're me ;)
https://github.com/latentflip/geodb
Last synced: 30 days ago
JSON representation
This is a hacky project to make a really basic nosql like geo database. You most probably don't want to use it, unless you're me ;)
- Host: GitHub
- URL: https://github.com/latentflip/geodb
- Owner: latentflip
- Created: 2014-01-11T19:45:41.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-01-11T19:50:27.000Z (almost 11 years ago)
- Last Synced: 2024-04-15T02:17:44.809Z (7 months ago)
- Language: JavaScript
- Homepage:
- Size: 117 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GeoDB
This is a hacky project to make a really basic nosql like geo database. You most probably don't want to use it, unless you're me ;)
## What?
At present this is a server and client shim on top of [rbush](https://github.com/mourner/rbush).
* You can give it a bunch of points/bounding boxes of geo "things"
* Rbush creates an r-tree (a fancy way of saying indexed store) of the points
* geodb saves the tree to disk, and provides a server interface to it over tcp
* the client can connect to the server and query for points within another bounding box## Why?
* To learn, and for a side project.
* You really don't want to use this ;)