· 6 min read
UTM Zones Explained
How the 60 UTM zones are numbered, how to work out your zone from a longitude, what the central meridian and scale factor do, and the irregular zones around Norway and Svalbard that break the 6 degree rule.
The Universal Transverse Mercator system exists to solve one problem: a sphere cannot be flattened without distortion, but navigation is far easier on a flat grid measured in metres. UTM's answer is to stop trying to flatten the whole globe at once and flatten it 60 times instead, in narrow strips.
Each strip is a zone. Understanding how they are numbered, where their centres are, and where the scheme deliberately breaks is most of what you need to work confidently in UTM.
60 zones, 6 degrees each
The globe is divided into 60 zones, each 6° of longitude wide. Numbering starts at the antimeridian and counts east:
- Zone 1
- 180°W to 174°W
- Zone 30
- 6°W to 0°
- Zone 31
- 0° to 6°E
- Zone 60
- 174°E to 180°E
Sixty zones times 6° is 360°, so the coverage is complete with no gaps and no overlap.
Working out your zone from a longitude
The arithmetic is simple enough to do in your head:
zone = floor((longitude + 180) / 6) + 1
For 116.8166°W, longitude is negative, so:
floor((-116.8166 + 180) / 6) + 1
floor(63.1834 / 6) + 1
floor(10.53) + 1
10 + 1 = zone 11
Which matches the 11 at the front of 11S NA 16477 11316.
The central meridian
Every zone has a central meridian running down its middle, and that line is where the projection touches the globe most cleanly. Its longitude is:
central meridian = (6 × zone) - 183
For zone 11: 66 - 183 = -117, so 117°W. The zone spans 114°W to 120°W, and
117°W is exactly halfway.
This matters because the central meridian is the origin for eastings. To avoid
negative numbers on the west side of it, UTM applies a false easting of
500 000 m, so the central meridian itself is always at easting 500000. An
easting below 500 000 is west of centre; above is east.
A quick sanity check on any UTM easting
Valid eastings inside a zone run roughly 160 000 to 834 000. Anything outside that range is either a typo, a coordinate from a different system, or a point that has been projected into the wrong zone.
Northings are measured from the equator, giving values up to about 9 300 000 in the far north. In the southern hemisphere a false northing of 10 000 000 m is applied so the numbers stay positive and count downward toward the pole.
The scale factor
If the projection touched the globe exactly along the central meridian, distances would be perfect on that line and progressively stretched toward the zone edges. UTM instead applies a scale factor of 0.9996 at the central meridian, shrinking it very slightly.
The effect is to spread the error out. Instead of being perfect in the middle and worst at the edges, the projection is very slightly too small in the middle, exact along two lines about 180 km either side of centre, and very slightly too large at the edges. Peak distortion across a zone stays around one part in 2 500, which is about 40 cm per kilometre. For land navigation that is invisible. For survey work it is not, which is why survey coordinates always state the projection.
Latitude bands
UTM zones are longitude strips running pole to pole. The lettered latitude
bands are a separate division, and they are what MGRS uses to build a grid zone
designator like 11S.
Bands are 8° of latitude each, lettered C through X from south to north:
| Band range | Covers |
|---|---|
C to M | 80°S to 0°, southern hemisphere |
N to X | 0° to 84°N, northern hemisphere |
I and O are skipped because they are too easily read as 1 and 0. Band X is
the exception to the 8° rule: it is 12° tall, running 72°N to 84°N, so that
northern Europe and the Arctic land masses fall inside a single band.
Note that band letters are not hemisphere indicators. In plain UTM notation,
11N means zone 11, northern hemisphere. In MGRS, 11S means zone 11, latitude
band S, which sits between 32°N and 40°N. That collision is covered in detail in
MGRS vs UTM.
Where the 6 degree rule breaks
Two regions have irregular zones, and both exist for practical reasons rather than mathematical ones. If you write software or plot manually in these areas, the general formula gives the wrong answer.
Zone 32V, southwest Norway
Band V (56°N to 64°N) has a modified boundary. Zone 32 is widened to 9° wide,
running 3°E to 12°E, and zone 31 is correspondingly narrowed to 3° wide. The
purpose is to keep the whole of southwestern Norway, including the coast around
Bergen, inside one zone rather than split across a boundary.
Zones 31X to 37X, Svalbard
Band X (72°N to 84°N) drops zones 32, 34 and 36 entirely. The remaining zones
are widened to 12° to fill the gap, so Svalbard's islands are not chopped into
fragments. In band X you will encounter zones 31, 33, 35 and 37 and nothing in
between.
Do not hand-roll the exceptions
These two cases are the reason coordinate conversion should always be delegated to a maintained library rather than implemented from the formula. The general case is easy; the exceptions are where hand-written converters silently produce positions in the wrong zone.
Where UTM stops
UTM is defined from 80°S to 84°N. Beyond those limits the transverse Mercator projection distorts too badly to be useful, and the Universal Polar Stereographic system takes over, using a completely different projection centred on each pole.
In MGRS notation, polar references are recognisable because they carry no zone
number at all: they begin directly with a letter (A or B for the south pole,
Y or Z for the north). If you see an MGRS string with no leading digits, it is
polar, not malformed.
Working across a zone boundary
This is the practical trap. Eastings and northings are only comparable inside a single zone. Two positions a kilometre apart, sitting either side of a zone edge, will have eastings that differ by hundreds of kilometres, because each is measured from its own central meridian.
So if you are operating near a boundary:
- Do not subtract coordinates from different zones. The result is meaningless.
- Convert both points to latitude and longitude first, or reproject one into the other's zone, then measure.
- Expect mapping software to pick a zone from your first point and hold it. Some
tools will happily report an easting of
-42000or1 100 000when you stray outside, which is a valid extended coordinate but not a standard one.
For a real route that crosses a boundary, working in latitude and longitude or in MGRS is usually less error-prone than trying to stay in one zone.
Summary
Sixty zones, 6° wide, numbered east from the antimeridian. Central meridian at
(6 × zone) - 183, held at easting 500 000 by a false easting, scaled by 0.9996
to spread distortion. Latitude bands are a separate 8° division lettered C to X.
Norway and Svalbard break the rules on purpose, and everything stops at 80°S and
84°N.
Next, the thing that makes any of these numbers mean a real place on the ground: what WGS-84 actually is.