Article — Lat/Long to UTM Converter
Lat/long to UTM converter: geographic to projected coordinates
A lat/long to UTM converter transforms geographic coordinates (latitude/longitude on the WGS84 ellipsoid) into UTM coordinates (easting/northing on a flat Transverse Mercator grid). UTM divides Earth into 60 zones, each 6° of longitude wide. Inside a zone, location is given in meters — easting (E, false-origin 500,000) and northing (N, equator-relative).
UTM is the dominant projected coordinate system for surveying, GIS, military mapping, and field GPS work. Distances in UTM are Euclidean to within a fraction of a percent, which makes calculations far simpler than on the curved lat/long graticule.
What is lat/long to UTM conversion?
Lat/long to UTM conversion projects spherical geographic coordinates onto a 2D plane, dividing the world into 60 strips so that each strip has acceptable distortion. The converter on this page uses the WGS84 reference ellipsoid (the GPS standard) and the Snyder Transverse Mercator series. Accuracy is sub-meter for inputs within UTM coverage (latitude −80° to +84°).
UTM coordinates are easier to work with than lat/long for most engineering and GIS tasks. Distances between two UTM points (within the same zone) are computed by simple Pythagorean math. Lat/long distances require haversine or geodesic algorithms, which add complexity for no gain at the scales most users care about.
UTM was developed by the US Army in the 1940s, building on earlier Transverse Mercator work by Carl Friedrich Gauss in 1825 and Johann Heinrich Lambert in 1772. The current civilian definition uses the WGS84 ellipsoid, the same one GPS satellites broadcast from.
UTM zones explained
UTM divides Earth's longitude range into 60 zones, each 6° wide, numbered 1 to 60 starting from 180°W. Zone 1 covers -180° to -174°. Zone 18 covers -78° to -72° (the US east coast). Zone 30 covers -6° to 0° (UK). Zone 33 covers +12° to +18° (Berlin, Rome, Vienna). Zone 56 covers +150° to +156° (Sydney, eastern Australia).
Latitude is split into a "north" set (equator to 84°N) and a "south" set (equator to 80°S). The two sets share the zone numbers; you add N or S as a suffix. Sydney is in zone 56S; Tokyo in zone 54N; New York in zone 18N. Above 84°N or below 80°S, UTM is undefined — the Universal Polar Stereographic (UPS) projection covers the poles.
Lat/long to UTM formulas
The math comes from the Transverse Mercator projection, originally written down by Gauss. The zone number from longitude: zone = floor((λ + 180) / 6) + 1. The central meridian for the zone: λ₀ = 6 × zone − 183. The easting and northing are computed from a series expansion using the latitude, the longitude offset from the central meridian, and the WGS84 ellipsoid parameters.
The full series uses terms up to A⁶ (sixth-power deviation from the central meridian) to keep accuracy under 1 meter out to the zone edges. Snyder's USGS Professional Paper 1395 gives the canonical formulation; the JavaScript here implements that. Polynomial truncation at A⁶ is the standard choice for civilian UTM.
UTM easting and northing
Easting is the east-west coordinate in meters, measured from a "false origin" west of the central meridian. The false origin is set at easting 500,000 m so that all locations in the zone have positive easting. At the equator, the zone is about 670 km wide, so easting values run from roughly 166,000 to 834,000.
Northing is the north-south coordinate in meters, measured from the equator. In the northern hemisphere, the equator is at northing 0. In the southern hemisphere, the equator is at northing 10,000,000 m — this "false northing" keeps southern hemisphere values positive. Cape Town (33.9°S) lands at northing 6,243,000 m in zone 34S.
UTM vs MGRS
MGRS (Military Grid Reference System) is a layer added on top of UTM by NATO and the US military. It replaces the 7-digit easting and 7-digit northing with a more compact, alphanumeric grid reference. MGRS adds a latitude band letter (C through X, skipping I and O), a 100,000-meter square identifier, and a shortened numeric grid.
A typical MGRS reference looks like "18TWL8429707527" — zone 18, latitude band T, 100-km square WL, easting 84297 within the square, northing 07527. For most civilian use, plain UTM is enough; for military operations and SAR (search and rescue), MGRS is the standard.
The latitude band letters skip I and O to avoid confusion with the digits 1 and 0. Each band is 8° tall except band X, which is 12° tall (84°N down to 72°N). All other bands run 8°.
When to use UTM coordinates
Use UTM for any project where you need to measure distances or areas in meters within a region a few hundred kilometres across. Examples: land surveying, construction layout, environmental monitoring, archaeological dig records, search-and-rescue mapping, drone flight planning, and GIS analysis of municipal or regional data.
Stick with lat/long when your data spans continents or the whole globe (e.g., shipping routes, climate models, satellite imagery), when you need to share data with non-technical audiences who don't know UTM, or when the underlying tool (Google Maps, MapQuest, most GPS apps) defaults to lat/long.
- UTM zone = 6° of longitude, numbered 1–60
- Easting = m east of false origin (500,000 west of central meridian)
- Northing = m north of equator (or 10,000,000 m south)
- WGS84 = global reference ellipsoid (a = 6,378,137 m)
- Scale factor = 0.9996 at central meridian, ~1.0010 at edges
- Latitude range = 80°S to 84°N (UPS handles poles)
- MGRS = grid extension with latitude band + 100-km square
UTM conversion accuracy
The Snyder TM series truncated at A⁶ delivers sub-meter accuracy for inputs within UTM coverage. The fundamental limit is the projection itself: 0.04% scale shortening at the central meridian, growing to 0.10% at the zone edges. This is irreducible without using a different projection (e.g., a custom local TM).
For sub-millimetre work (geodesy, tectonic monitoring), this converter is not enough — you would use full ellipsoidal computation or the JHS-184 algorithm. For surveying, GIS, mapping, and field GPS, the sub-meter accuracy here is more than sufficient. Compare two UTM points within the same zone and you can use straight Euclidean distance for any reasonable purpose.
UTM easting/northing pairs are only meaningful within one zone. Computing the Pythagorean distance between two points in different zones gives nonsense — the coordinates restart at the zone boundary. For cross-zone distances, project both points into a common zone (one will be slightly distorted) or use ellipsoidal geodesy.
A short history of UTM
The Transverse Mercator projection dates to 1772 (Lambert) and 1825 (Gauss). The "Universal" prefix was added by the US Army in the 1940s, who systematised the 60-zone grid for global military mapping. After WWII, civilian agencies adopted the system; today nearly every national mapping agency outside the US uses some flavour of TM-based national grid.
The original UTM used the Clarke 1866 ellipsoid for the Americas and Bessel 1841 for Europe. WGS84, introduced in 1984, replaced both with a single global ellipsoid. GPS satellites broadcast WGS84 coordinates, which feed straight into the modern UTM transformation without intermediate datum shifts.