geometry-proj
Coordinate-reference-system reprojection for the geometry kernel,
backed by the pure-Rust proj4rs
engine — no C dependency.
Boost.Geometry leaves projections to its unsupported
extensions/gis/projections/; this crate provides them:
use ;
let wgs84 = from_epsg?; // lon/lat in radians
let mercator = from_epsg?; // metres
reproject?;
Build a Crs from a proj4 string, an EPSG code, or a WKT definition
(parsed by proj4wkt). reproject transforms any point / linestring /
ring / polygon / multipolygon in place.
Geographic coordinates are carried in radians, matching proj4rs.