EPSG Geodetic Parameters

Documentation

Usage example: ```rust // Create a boxed converter between WGS84 Lat/Lon and WGS84 UTM zone 32N use miniproj::{getcoordtransform, CoordTransform}; let converter = getcoordtransform(32632).expect("Coordinate conversion not implemented");

Coordinates of the office where this converter was written in UTM: let (x,y) = (576935.86f64, 6020593.46f64);

// To get the latitude and longitude, use the CoordTransform::todeg method. let (lon, lat) = converter.todeg(x,y);

assert!((lon - 10.183034) < 0.000001); assert!((lat - 54.327389) < 0.000001); ```