geohash-tools 0.1.0

A collection of functions to manipulate GeoHashes
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![doc(html_root_url = "https://docs.rs/geohash-tools/")]

//! # geohash-tools
//!
//! geohash-tools is a collection of functions for manipulating GeoHashes in Rust.<br>
//! You can find more about geohash algorithm on [Wikipedia](https://en.wikipedia.org/wiki/Geohash).
//!

mod geohash;

pub use geohash::RUNE_CHAR_INDEX;
pub use geohash::RUNE_INDEX_CHAR;
pub use geohash::RUNE_LEN;
pub use geohash::RUNE_INDEX_LEN;