uvoxid 0.2.0

UVoxID: 192-bit spatial addressing scheme for encoding/decoding micrometer + lat/lon coordinates.
Documentation
1
2
3
4
5
6
7
8
// src/main.rs — either delete it, or replace with a minimal demo

use uvoxid::UvoxId;

fn main() {
    let id = UvoxId::new(0, 6_371_000_000_000, 0, 0);
    println!("Earth center: {:?}", id);
}