############################################################################### Coordinate Conversions In ISO19111 terms, a coordinate conversion is an operation that changes coordinates in a source coordinate reference system to coordinates in a target coordinate reference system in which both coordinate reference systems are based on the same datum. Technically this is also true for PROJ although the term is usually narrowed a bit, excluding projections since those are the origin of PROJ they get special treatment. In this exercise we will be looking at three coordinate conversions that in combination with other operations are very powerful: Unit conversions, axis swapping and geodetic to cartesian conversion. Here we only look at the conversions by themselves which isn't particularly useful, apart from the educational purpose. When used in transformation pipelines they reveal their true power. We will explore that further in the pipelines.gie exercises. See [0] for a list of all conversions available in PROJ. [0] https://proj.org/operations/conversions/index.html ############################################################################### 1. Unit conversion from meters to feet ------------------------------------------------------------------------------- Many projected coordinate systems are defined in terms of units other than the meter. In this exercise we will transform the horizontal part of a coordinate from meters to feet. Hints: - Consult the documentation to find out how to set up the transformation: https://proj.org/operations/conversions/unitconvert.html - You can use `proj -lu` to learn which units is supported by PROJ. - Note that the horizontal, vertical and temporal parts are treated separately by the unit convert operator. ------------------------------------------------------------------------------- operation tolerance 1 mm accept 100.0 123.0 432.0 expect 328.0833 403.5425 432.0 ------------------------------------------------------------------------------- 2. Swapping axes ------------------------------------------------------------------------------- Many coordinate reference systems are defined such that the axis order is different than the (east, north, up, time) PROJ defaults to. An example of this is the standard representation of a latitude/longitude-pair, where the north component of the coordinate comes first. For this reason we need an operation that can swap the axes around so that a given coordinate reference system can be represented correctly, conforming to the intention of the defining authority. Set up an operation that puts a longitude/latitude pair on the standard latitude/longitude form. Hints: - Consult the documentation to find out how to set up the transformation: https://proj.org/operations/conversions/axisswap.html - Remember that the axisswap operation doesn't know anything about the nature of the coordinate that is passed to it - it only cares about the the order of the input. ------------------------------------------------------------------------------- operation tolerance 1 mm accept 140.0 75.0 # somewhere in Siberia expect 75.0 140.0 ------------------------------------------------------------------------------- 3. Geodetic to cartesian conversion ------------------------------------------------------------------------------- Some transformations, most notably the Helmert transformation, operates on cartesian geocentric coordinates. Geodetic coordinates (latitude and longitude) is the most commonly used coordinate representation. It is only natural to have a way to convert between the two representations. Set up a transformation that convert geodetic coordinates to cartesian geocentric coordinates on the Hayford ellipsoid. Hints: - Consult the documentation to find out how to set up the transformation: https://proj.org/operations/conversions/cart.html - Remember that `proj -le` returns a list of available ellipsoid models - Remember that the Hayford ellipsoid is known under a number of other names - most of them including the term "international". ------------------------------------------------------------------------------- operation tolerance 1 mm accept 24.745 59.437 0 # Talinn, Estonia expect 2952883.7000 1360985.5908 5468966.6589 -------------------------------------------------------------------------------