Classification: Transverse cylindrical, conformal
Available forms: Forward and inverse, ellipsoidal only
Defined area: Within the used zone, but transformations of coordinates in adjacent zones can be accurate
Alias: utm
Domain: 2D
Input type: Geodetic coordinates
Output type: Projected coordinates
+proj=utm Copy
+proj=utm
+zone=<value>
+south
+approx
+algo=auto/evenden_snyder/poder_engsager
poder_engsager
+ellps=<value>
Convert geodetic coordinates to UTM Zone 32 on the northern hemisphere:
$ echo 12 56 | proj +proj=utm +zone=32687071.44 6210141.33 Copy
$ echo 12 56 | proj +proj=utm +zone=32687071.44 6210141.33
Convert geodetic coordinates to UTM Zone 59 on the southern hemisphere:
$ echo 174 -44 | proj +proj=utm +zone=59 +south740526.32 5123750.87 Copy
$ echo 174 -44 | proj +proj=utm +zone=59 +south740526.32 5123750.87
Show the relationship of UTM to TM:
$ echo 121 24 | proj +proj=utm +lon_0=123 | proj -I +proj=tmerc +lon_0=123 +x_0=500000 +k=0.9996121dE 24dN Copy
$ echo 121 24 | proj +proj=utm +lon_0=123 | proj -I +proj=tmerc +lon_0=123 +x_0=500000 +k=0.9996121dE 24dN
Preps an UniversalTransverseMercator projection
Optional
projection specific parameters
ExtendedTransverseMercator forward equations--mapping lon-lat to x-y
lon-lat WGS84 point
ExtendedTransverseMercator inverse equations--mapping x-y to lon-lat
ExtendedTransverseMercator point
Universal Transverse Mercator (UTM)
Classification: Transverse cylindrical, conformal
Available forms: Forward and inverse, ellipsoidal only
Defined area: Within the used zone, but transformations of coordinates in adjacent zones can be accurate
Alias: utm
Domain: 2D
Input type: Geodetic coordinates
Output type: Projected coordinates
Projection String
Required Parameters
+zone=<value>
: Select which UTM zone to use. Can be a value between 1-60.Optional Parameters
+south
: Add this flag when using the UTM on the southern hemisphere.+approx
: Use a faster, less accurate algorithm for the Transverse Mercator. (added in PROJ 6.0.0)+algo=auto/evenden_snyder/poder_engsager
: Selects the algorithm to use. Defaults topoder_engsager
. (added in PROJ 7.1)+ellps=<value>
Usage Examples
Convert geodetic coordinates to UTM Zone 32 on the northern hemisphere:
Convert geodetic coordinates to UTM Zone 59 on the southern hemisphere:
Show the relationship of UTM to TM:
Further Reading