h3o 0.10.0

A Rust implementation of the H3 geospatial indexing system.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! H3 index types

pub mod bits;
mod cell;
mod edge;
mod iterator;
mod mode;
mod vertex;

pub use cell::CellIndex;
pub use edge::{DirectedEdgeIndex, Edge};
pub use mode::IndexMode;
pub use vertex::{Vertex, VertexIndex};

pub use iterator::{Children, GridPathCells};