pub fn geohash(latitude: f64, longitude: f64, datedow: &[u8]) -> (f64, f64)
Expand description

Compute geohash() using the Munroe algorithm.

use antigravity::geohash;

assert_eq!(geohash(37.421542, -122.085589, b"2005-05-26-10458.68"), (37.857713267707005, -122.54454306955928));