h3o 0.9.4

A Rust implementation of the H3 geospatial indexing system.
Documentation
1
2
3
4
5
6
7
8
9
10
use super::*;

#[test]
fn from_ijk_zero() {
    let ijk = CoordIJK::new(0, 0, 0);
    let ij = CoordIJ::from(&ijk);

    assert_eq!(ij.i, 0, "ij.i zero");
    assert_eq!(ij.j, 0, "ij.j zero");
}