A coordinate transformation library for dhdn2001 coordinate reference systems in elm.
( x -> Geocentric
, Geocentric -> x
)
CoordinateReferenceSystem represents coordinate reference systems based on wgs84.
Geocentric is represented by x, y, and z coordinates.
Geographic is represented by longitude, latitude and height coordinates.
UTM is represented by a zone and eastern, northern and height coordinates.
WebMercator is represented by eastern, northern and height coordinates.
Zone represents the WGS84 UTM Zones.
geocentric : CoordinateReferenceSystem Geocentric
geocentric represents the WGS84 geocentric coordinate reference system.
geographic : CoordinateReferenceSystem Geographic
geographic represents the WGS84 geographic coordinate reference system.
helmert : Helmert -> CoordinateReferenceSystem Geodesy.Geocentric
helmert transforms geocentric coorinates by 7 parameters.
spheroid : Geodesy.Spheroid
spheroid represents WGS84 Spheroid.
transform : CoordinateReferenceSystem x -> CoordinateReferenceSystem y -> x -> y
transform transforms coordinates from one coordinate reference system to another.
utm : CoordinateReferenceSystem UTM
utm represents the WGS84 utm coordinate reference system.
webMercator : CoordinateReferenceSystem WebMercator
webMercator represents the WGS84 web mercator coordinate reference system.