gis-tools 1.13.1

A collection of geospatial tools primarily designed for WGS84, Web Mercator, and S2.
Documentation
1
2
3
4
5
6
7
8
9
10
/// Fast and robust Delaunay triangulation
pub mod delaunator;
/// Handle travel from one point to another "as the crow flys" using Orthodromic projection
pub mod orthodrome;
/// Create polylabels for a collection of vector polygons or a single vector polygon
pub mod polylabel;

pub use delaunator::*;
pub use orthodrome::*;
pub use polylabel::*;