node-geohash
node-geohash copied to clipboard
geohash library for nodejs
Heyo Maybe there should be a changelog for this project? I'm not sure if i can upgrade my ngeohash dependency from 0.6.0 because I don't know if there is any...
Why there is no validation for the max precision value for the function geohash.encode (latitude, longitude, precision=9) ?
Hello, I am almost certain this isnt an ngeohash issue, but I am hoping there is might be a way to leverage ngeohash to mitigate the problem. I am using...
main change was from `if (bits === 5)` to `if (bits === maxBits)`.
It is possible to change ```js if (typeof(latitude) === 'number' || typeof(longitude) === 'number') { throw new Error('string notation required for auto precision.'); } ``` To something like ```js if...
The structure of the Geohash is a base4 hierarchy: powers of 4 in the spatial representation (grid cell divided into 4 cels each iteration). In applications that need to access...