gis-tools 1.14.1

A collection of geospatial tools primarily designed for WGS84, Web Mercator, and S2.
1
2
3
4
5
6
7
8
9
10
11
12
13
/// Fast and robust Delaunay triangulation
pub mod delaunator;
/// Handle elevation data
pub mod elevation;
/// 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 elevation::*;
pub use orthodrome::*;
pub use polylabel::*;