Skip to content

Commit 4f1ac65

Browse files
Improve documentation of UTM projection (#2061)
Co-authored-by: Dongdong Tian <[email protected]>
1 parent 300224d commit 4f1ac65

File tree

1 file changed

+25
-11
lines changed

1 file changed

+25
-11
lines changed

examples/projections/cyl/cyl_universal_transverse_mercator.py

Lines changed: 25 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,33 @@
22
Universal Transverse Mercator
33
=============================
44
5-
A particular subset of the transverse Mercator is the Universal Transverse
6-
Mercator (UTM) which was adopted by the US Army for large-scale military maps.
7-
Here, the globe is divided into 60 zones between 84°S and 84°N, most of which
8-
are 6° (in longitude) wide. Each of these UTM zones have their unique central
9-
meridian. Furthermore, each zone is divided into latitude bands but these are
10-
not needed to specify the projection for most cases.
5+
A particular subset of the
6+
:doc:`transverse Merctor </projections/cyl/cyl_transverse_mercator>`
7+
is the Universal Transverse Mercator (UTM) which was adopted by the US Army
8+
for large-scale military maps. Here, the globe is divided into 60 zones
9+
between 84°S and 84°N, most of which are 6° (in longitude) wide.
10+
Each of these UTM zones have their unique central meridian.
11+
Furthermore, each zone is divided into latitude bands but these are
12+
not needed to specify the projection for most cases. See Figure
13+
:ref:`Universal Transverse Mercator <GMT_utm_zones>` for all zone designations.
14+
15+
.. _GMT_utm_zones:
16+
17+
.. figure:: https://docs.generic-mapping-tools.org/latest/_images/GMT_utm_zones.png # noqa: W505
18+
:width: 700 px
19+
:align: center
20+
21+
Universal Transverse Mercator zone layout.
1122
1223
In order to minimize the distortion in any given zone, a scale factor of 0.9996
13-
has been factored into the formulae. This makes the UTM projection a secant
14-
projection and not a tangent projection like the transverse Mercator above. The
15-
scale only varies by 1 part in 1,000 from true scale at equator. The
16-
ellipsoidal projection expressions are accurate for map areas that extend less
17-
than 10° away from the central meridian.
24+
has been factored into the formulae (although a standard, you can change this
25+
with :gmt-term:`PROJ_SCALE_FACTOR`). This makes the UTM projection a *secant*
26+
projection and not a *tangent* projection like the
27+
:doc:`transverse Merctor </projections/cyl/cyl_transverse_mercator>`.
28+
The scale only varies by 1 part in 1,000 from true scale at equator. The
29+
ellipsoidal projection expressions are accurate for map areas that extend
30+
less than 10° away from the central meridian. For larger regions we use the
31+
conformal latitude in the general spherical formulae instead.
1832
1933
**u**\ *zone/scale* or **U**\ *zone/width*
2034

0 commit comments

Comments
 (0)