Skip to content
transform

UTM Zones Explained: How to Pick the Right Zone for Your Data

7 min read

UTM divides the world into 60 north-south zones, each 6° wide, projected separately to keep distortion low. Here's how to identify the right zone, what UTM is and isn't good for, and the difference between WGS 84 UTM and ETRS89 UTM.

UTM — Universal Transverse Mercator — is the workhorse of practical mapping. If you've ever held a topographic map in any country, you've probably seen UTM coordinates printed on it. Here's why it exists, how to find your zone, and where it falls down.

The problem UTM solves

A single Mercator projection covering the whole Earth distorts horribly at high latitudes (Greenland looks the size of Africa). A single Transverse Mercator covering the whole world would distort horribly far from the central meridian. UTM splits the difference: 60 separate Transverse Mercator projections, each covering only 6° of longitude.

Within each zone, distortion stays under 1/2500 — about 40 cm per kilometre — across the central 6° band. That's accurate enough for surveying, engineering and topographic mapping, while keeping coordinates as ordinary metres.

How zones are numbered

  • Zones 1 to 60, starting at 180°W and going east.
  • Zone 1 covers 180°W to 174°W.
  • Zone 30 covers 6°W to 0° (Greenwich).
  • Zone 31 covers 0° to 6°E.
  • Zone 60 covers 174°E to 180°E.

Each zone has a northern and southern variant (e.g. Zone 31N for the Northern Hemisphere, Zone 31S for the Southern). The two are *different projections* with different false northings — N has false northing 0, S has false northing 10,000,000 m so that all values stay positive.

Finding your zone

Take the longitude in decimal degrees. Add 180. Divide by 6. Round up.

  • Berlin (13.4°E) → (13.4 + 180) / 6 = 32.23 → zone 33N
  • Sydney (151.2°E) → (151.2 + 180) / 6 = 55.2 → zone 56S
  • New York (74.0°W = -74.0) → (-74.0 + 180) / 6 = 17.67 → zone 18N

There are minor exceptions — zone 32 over southern Norway is widened, and zones 31-37 are split differently over Svalbard — but the formula gets you the right zone almost everywhere.

The EPSG codes

UTM has multiple EPSG codes per zone, distinguished by datum:

  • EPSG:32601 to 32660 — UTM zones 1N to 60N on WGS 84.
  • EPSG:32701 to 32760 — UTM zones 1S to 60S on WGS 84.
  • EPSG:25828 to 25838 — UTM zones 28N to 38N on ETRS89 (Europe).
  • EPSG:26901 to 26960 — UTM zones 1N to 60N on NAD83 (North America).
  • EPSG:26701 to 26720 — UTM zones 1N to 20N on NAD27 (legacy North America).

Pick the datum your source data uses. EPSG:32633 and EPSG:25833 *both* project Zone 33N, but the first is on WGS 84 and the second on ETRS89 — they differ by about 60 cm in modern Europe.

When to use UTM

  • GPS field surveys producing lat/lon that need to be plotted on metric grid maps.
  • Engineering and construction requiring metric coordinates with low distortion across a project site.
  • National topographic mapping in many countries (the U.S. military, NATO and the United Nations OCHA all use UTM as a default).
  • MGRS — the Military Grid Reference System is built directly on UTM.

When NOT to use UTM

  • Crossing zone boundaries. UTM coordinates are discontinuous at zone boundaries; data in one zone can't be plotted with data in another without reprojection.
  • Latitude beyond ±84°. UTM is undefined at the poles; use UPS (Universal Polar Stereographic) for polar regions.
  • Web maps. Tile services use Web Mercator (EPSG:3857) for tile alignment with Google/OSM/Bing. Reproject your UTM data to Web Mercator for browser display.
  • Equal-area analysis (population density, land cover proportions). Use Albers or Lambert Azimuthal Equal-Area instead.

A practical workflow

A common pattern in field surveying:

  1. Capture data in WGS 84 lat/lon (EPSG:4326) from GPS.
  2. Reproject to the local UTM zone (e.g. EPSG:32633) for distance and area calculations.
  3. Reproject again to Web Mercator (EPSG:3857) for web-map display.

All three CRSs describe the same physical points; only the numeric form differs.

Related coordinate reference systems

Frequently asked questions

How wide is a UTM zone?
Each UTM zone covers 6° of longitude — for example, Zone 33N covers 12°E to 18°E. There are 60 zones encircling the Earth, and each has a northern and southern variant.
EPSG:32633 vs EPSG:25833 — what's the difference?
Both are UTM Zone 33N projections but on different datums: EPSG:32633 uses WGS 84 (drifts globally with ITRF), EPSG:25833 uses ETRS89 (fixed to the Eurasian plate). In Europe they currently differ by ~60 cm.
What happens at UTM zone boundaries?
Coordinates are discontinuous — a point right on the boundary has different easting/northing in adjacent zones. Always reproject data into a single zone before doing distance, area or routing calculations across a boundary.