geohash-rs 0.1.3

A geohash crate for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
//! 'geohash_rs' is a geohash encoder for rust.

pub mod base32;
pub mod decoder;
pub mod encoder;
const LEFT: usize = 0;
const RIGHT: usize = 1;

pub use decoder::decode;
pub use encoder::encode;