#geohash #geography #gis

substrate-geohash

Geohash implementation for Rust. Forked for use with substrate

1 unstable release

0.13.0 Oct 25, 2023

#7 in #geohash

Download history 44/week @ 2023-12-18 40/week @ 2023-12-25 5/week @ 2024-01-01 370/week @ 2024-01-08 279/week @ 2024-01-15 186/week @ 2024-01-22 183/week @ 2024-01-29 157/week @ 2024-02-05 307/week @ 2024-02-12 560/week @ 2024-02-19 592/week @ 2024-02-26 353/week @ 2024-03-04 220/week @ 2024-03-11 439/week @ 2024-03-18 590/week @ 2024-03-25 219/week @ 2024-04-01

1,490 downloads per month
Used in 20 crates (via encointer-primitives)

MIT/Apache

17KB
267 lines

crates.io

Rust-Geohash for Substrate

This is a fork which derives SCALE codec info for use with parity substrate

Rust-Geohash is a Rust library for Geohash algorithm. Ported from node-geohash module.

Documentation

Docs

Check the API doc at docs.rs

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.


lib.rs:

Geohash

Geohash algorithm implementation in Rust. It encodes/decodes a longitude-latitude tuple into/from a hashed string. You can find more about geohash algorithm on Wikipedia

Usage

extern crate geohash;

use fixed::types::I64F64;

fn main() -> Result<(), Box<geohash::GeohashError>> {
use std::convert::TryFrom;
use geohash::{GeoHash, Direction};
let lon = I64F64::from_num(112.5584);
  let lat = I64F64::from_num(37.8324f64);

  // decode a geohash
  let (lon, lat, _, _) = GeoHash::<9>::try_from("ww8p1r4t8")?.try_as_coordinates()?;

  // find a neighboring hash
  let sw = GeoHash::<9>::try_from("ww8p1r4t8")?.neighbor(Direction::SW)?;

  Ok(())
}

Dependencies

~5MB
~102K SLoC