
How the Universal Transverse Mercator system divides the world into low-distortion, meter-based map zones.
UTM (Universal Transverse Mercator) is a family of map projections—one per zone—built on the Transverse Mercator projection. It converts latitude/longitude on an ellipsoid (datum) into meter-based planar coordinates with small distortion within each zone.
The globe is split into 60 longitudinal zones, each 6° wide, numbered 1–60 from west to east starting at 180°W. Every zone has its own central meridian and projection so scale stays tight across that strip.
Zone by longitude: Z = ⌊(λ + 180) / 6⌋ + 1 (λ in degrees; east positive)
Central meridian: λ₀ = 6·Z − 183°
Each zone spans 6° of longitude and reaches from 80°S to 84°N. The polar caps use UPS (Universal Polar Stereographic), not UTM. At the equator a zone is ~666–667 km wide; width shrinks with latitude (by cos φ).
UTM isn’t a single datum. You must pair the zone with an ellipsoid: WGS84, NAD83 (GRS80), NAD27, ETRS89, etc. The datum choice affects coordinates by meters to hundreds of meters—so always specify both.
UTM uses planar Cartesian meters: Easting (x) and Northing (y). A scale factor k₀ = 0.9996 on the central meridian keeps average scale error low; it grows slightly toward zone edges (~1 part in ~2,500).
To avoid negative x values, the central meridian is assigned an artificial easting of 500,000 m. Near the equator, that yields ~166,000 m at the west edge and ~834,000 m at the east edge.
Northern Hemisphere: northing is 0 m at the Equator and increases northward.
Southern Hemisphere: add a 10,000,000 m false northing at the Equator so values stay positive toward the South Pole.
Letters C–X (skipping I, O) are 8°-tall latitude bands used by MGRS grid references. They’re indexing aids, not part of the EPSG CRS definition.
Pattern shows how to build the EPSG code for a given zone; replace ZZ with the 2-digit zone number (01–60).
| Datum / Region | Hemisphere | EPSG Pattern | Example |
|---|---|---|---|
| WGS 84 (global; GPS) | North | 326ZZ | WGS84 / UTM 10N → EPSG:32610 |
| WGS 84 | South | 327ZZ | WGS84 / UTM 33S → EPSG:32733 |
| NAD83 (North America) | North | 269ZZ | NAD83 / UTM 11N → EPSG:26911 |
| NAD27 (legacy US/CA/MX) | North | 267ZZ | NAD27 / UTM 12N → EPSG:26712 |
| ETRS89 (Europe) | North | 25828–25838 | ETRS89 / UTM 32N → EPSG:25832 |
Tip: If your latitude is south of the Equator, choose the Southern Hemisphere code set for your datum (e.g., WGS84 → 327ZZ). Otherwise use the Northern set (e.g., WGS84 → 326ZZ).
1) Identify hemisphere. If latitude ≥ 0 → Northern; < 0 → Southern (affects northing and EPSG pattern).
2) Compute your zone. Apply Z = ⌊(λ + 180) / 6⌋ + 1 to your longitude, or read from a UTM zone map. If you lie on a boundary, either adjacent zone is valid—pick the one that best centers your area of interest.
3) Match the datum. Use the datum of your data source (GPS → WGS84; many US layers → NAD83; Europe → ETRS89). Mixing datums without transformation causes meter-level offsets.
4) Keep distortion small. UTM is “lowest distortion” within a zone, especially near its central meridian (±3°). Projects spanning multiple zones or very wide east-west extents should consider an alternative CRS (e.g., Albers Equal Area for regional maps or a custom Transverse Mercator centered on your study area).
5) Reproject consistently. In your GIS, reproject layers into a single target CRS. Ensure all layers carry correct datum metadata before transforming.
Reminder: No planar projection is perfectly distortion-free. UTM’s central-meridian scale factor k₀ = 0.9996 keeps errors tiny (≈0.04%) across each zone.
Planar coordinates? Yes—UTM outputs x/y meters suitable for distance/area calculations within a zone.
Artificial easting? 500,000 m at each zone’s central meridian to keep eastings positive.
Northings begin at? 0 m at the Equator in the North; 10,000,000 m false northing at the Equator in the South.
Polar areas? Outside UTM (use UPS) below 80°S and above 84°N.