xs_h3 0.2.0

Excerion Sun's Rust implementation of Uber's H3 geospatial indexing library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// src/regions/mod.rs
#![allow(clippy::module_name_repetitions)]

pub mod polyfill;
pub mod to_polygon; // For cellsToMultiPolygon and its helpers

// Re-export public API functions
pub use polyfill::{
  max_polygon_to_cells_size,
  polygon_to_cells, // These would be the experimental versions
                    // Or, if keeping C API names:
                    // maxPolygonToCellsSize, polygonToCells,
                    // maxPolygonToCellsSizeExperimental, polygonToCellsExperimental
};
pub use to_polygon::{cells_to_multi_polygon, MultiPolygonRust, PolygonRust};