Transverse Mercator¶
The transverse Mercator projection in its various forms is the most widely used projected coordinate system for world topographical and offshore mapping.
Classification |
Transverse and oblique cylindrical |
Available forms |
Forward and inverse, spherical and ellipsoidal |
Defined area |
Global, but reasonably accurate only within 15 degrees of the central meridian |
Alias |
tmerc |
Domain |
2D |
Input type |
Geodetic coordinates |
Output type |
Projected coordinates |

proj-string: +proj=tmerc
¶
Usage¶
Prior to the development of the Universal Transverse Mercator coordinate system, several European nations demonstrated the utility of grid-based conformal maps by mapping their territory during the interwar period. Calculating the distance between two points on these maps could be performed more easily in the field (using the Pythagorean theorem) than was possible using the trigonometric formulas required under the graticule-based system of latitude and longitude. In the post-war years, these concepts were extended into the Universal Transverse Mercator/Universal Polar Stereographic (UTM/UPS) coordinate system, which is a global (or universal) system of grid-based maps.
The following table gives special cases of the Transverse Mercator projection.
Projection Name |
Areas |
Central meridian |
Zone width |
Scale Factor |
---|---|---|---|---|
Transverse Mercator |
World wide |
Various |
less than 6° |
Various |
Transverse Mercator south oriented |
Southern Africa |
2° intervals E of 11°E |
2° |
1.000 |
UTM North hemisphere |
World wide equator to 84°N |
6° intervals E & W of 3° E & W |
Always 6° |
0.9996 |
UTM South hemisphere |
World wide north of 80°S to equator |
6° intervals E & W of 3° E & W |
Always 6° |
0.9996 |
Gauss-Kruger |
Former USSR, Yugoslavia, Germany, S. America, China |
Various, according to area |
Usually less than 6°, often less than 4° |
1.0000 |
Gauss Boaga |
Italy |
Various, according to area |
6° |
0.9996 |
Example using Gauss-Kruger on Germany area (aka EPSG:31467)
$ echo 9 51 | proj +proj=tmerc +lat_0=0 +lon_0=9 +k_0=1 +x_0=3500000 +y_0=0 +ellps=bessel +units=m
3500000.00 5651505.56
Example using Gauss Boaga on Italy area (EPSG:3004)
$ echo 15 42 | proj +proj=tmerc +lat_0=0 +lon_0=15 +k_0=0.9996 +x_0=2520000 +y_0=0 +ellps=intl +units=m
2520000.00 4649858.60
Parameters¶
Note
All parameters for the projection are optional.
- +approx¶
New in version 6.0.0.
Use the algorithm described in section “Ellipsoidal Form” below. It is faster than the default algorithm, but also diverges faster as the distance from the central meridian increases.
- +lon_0=<value>¶
Longitude of projection center.
Defaults to 0.0.
- +lat_0=<value>¶
Latitude of projection center.
Defaults to 0.0.
- +R=<value>¶
Radius of the sphere given in meters. If used in conjunction with
+ellps
+R
takes precedence.
- +k_0=<value>¶
Scale factor. Determines scale factor used in the projection.
Defaults to 1.0.
- +x_0=<value>¶
False easting.
Defaults to 0.0.
- +y_0=<value>¶
False northing.
Defaults to 0.0.
Mathematical definition¶
The formulas describing the Transverse Mercator below are quoted from [Evenden2005].
\(\phi_0\) is the latitude of origin that match the center of the map. It can be set with +lat_0
.
\(k_0\) is the scale factor at the natural origin (on the central meridian). It can be set with +k_0
.
\(M(\phi)\) is the meridional distance.
Spherical form¶
Forward projection¶
Inverse projection¶
Ellipsoidal form¶
The formulas below describe the algorithm used when giving the
+approx
option. They are originally from [Snyder1987],
but here quoted from [Evenden1995].
The default algorithm is given by Poder and Engsager in [Poder1998]