gis-tools 1.13.1

A collection of geospatial tools primarily designed for WGS84, Web Mercator, and S2.
Documentation
/// Id system for S2 and WM
pub mod id;
/// ALl LL tooling
pub mod ll;
/// All predicate tooling
pub mod predicates;
/// All S1 tooling
pub mod s1;
/// All S2 tooling
pub mod s2;
/// Common geometry tools
pub mod tools;
/// All WM tooling
pub mod wm;

pub use id::*;
pub use ll::*;
pub use predicates::*;
pub use s1::*;
pub use s2::*;
pub use tools::*;
pub use wm::*;