geohashrust 0.0.1

A Rust GeoHash Library
1
2
3
4
5
6
7
pub use geolocation::GeoLocation;
pub use boundingbox::BoundingBox;
pub use geohash::{BinaryHash, encode, decode, neighbor, neighbors};

mod geolocation;
mod boundingbox;
mod geohash;