UTM Coordinate Converter

Stephanie Ben-Joseph headshot Stephanie Ben-Joseph

Introduction

This calculator converts coordinates in both directions between familiar geographic latitude/longitude values and the meter-based Universal Transverse Mercator (UTM) system. If you work with GPS readings, printed topographic maps, engineering plans, GIS layers, drone imagery, or field notes from a survey, that conversion matters because the two systems answer slightly different needs. Latitude and longitude are global and angular, which makes them ideal for sharing a point on Earth. UTM is local and linear, which makes it much easier to measure offsets, estimate distances, and work inside a map grid without constantly switching between degrees, minutes, and seconds.

People often encounter UTM when a map, handheld receiver, or data collector reports a location as a zone, easting, and northing. At first glance those numbers can look less intuitive than latitude and longitude, but they are practical once you know what they mean. Easting is the horizontal position inside a zone, northing is the vertical position in meters, and the zone number tells you which 6-degree-wide longitudinal slice of Earth the point belongs to. This page helps you translate between those descriptions while keeping the underlying mapping logic visible instead of hiding it behind a black box.

The converter below assumes the standard WGS84 datum used by GPS. That makes it a good general-purpose tool for education, planning, and ordinary mapping work. It is not a substitute for surveying software when legal boundaries or centimeter-level results matter, but it is accurate enough for most navigation, cartography, GIS, and classroom uses. The explanation that follows also walks through the formulas, the meaning of each input, and the main situations where a result can surprise you.

How to use this UTM converter

If you already have a latitude and longitude, start with the first form. Enter latitude in decimal degrees, using positive values north of the equator and negative values south of it. Enter longitude in decimal degrees, using positive values east of Greenwich and negative values west of Greenwich. When you press Convert to UTM, the calculator determines the appropriate zone, selects the hemisphere, and reports easting and northing in meters. That output is the format commonly shown on many maps and GPS devices.

If you are going the other direction, use the second form. Enter the zone number, choose the hemisphere, then enter easting and northing in meters exactly as they appear in your source data. The hemisphere matters because UTM northings are treated differently north and south of the equator. In the southern hemisphere, a false northing of 10,000,000 meters is added so that northing values remain positive. Once you submit the form, the calculator converts the projected coordinate back to decimal-degree latitude and longitude.

A few quick habits make results easier to trust. First, double-check the sign of longitude; a missing minus sign can shift a point across an ocean. Second, make sure the zone is correct before interpreting easting and northing, because UTM numbers are only meaningful inside their own zone. Third, remember that standard UTM is generally used between about 80°S and 84°N. If you are working very close to the poles, another projection system such as UPS is typically used instead. Finally, treat the output as WGS84-based; if your original data is in another datum, a valid-looking conversion can still differ by several meters or more.

Understanding the UTM system

The Universal Transverse Mercator (UTM) coordinate system is a projected, meter-based grid used for mapping and navigation. Instead of describing a location with angles, UTM represents positions as Easting and Northing within a numbered zone. That makes the numbers behave more like ordinary map coordinates: moving a few hundred meters east or north changes the coordinates by about that many meters.

UTM divides the Earth into 60 zones, each 6° of longitude wide. Within a zone, a Transverse Mercator projection is used so that distortion stays relatively small near the zone's central meridian. This is why UTM is especially convenient for local and regional work. A hiking map, construction plan, forestry dataset, or utility survey often benefits from meter-based coordinates because distance and direction are easier to visualize than they are in angular coordinates.

That convenience does come with a tradeoff: UTM is not one single global rectangle. It is a family of narrow projected strips. When two nearby places fall in different zones, you need to pay attention to the zone label instead of assuming the raw numbers can be compared directly. In practice, that is not a problem for many field tasks because people usually work inside one zone at a time, but it is an important conceptual difference from latitude and longitude.

Why UTM is useful for maps and fieldwork

Latitude and longitude are ideal for global reference, but they are less natural for everyday measurement because the units are angles. One degree of longitude represents a different ground distance depending on latitude, and even one degree of latitude is a large span. UTM solves that practical problem by translating a curved surface into a local planar grid measured in meters. When a field crew says a point is 250 meters east and 120 meters north of another point, that is exactly the kind of relationship UTM is designed to express clearly.

This is also why UTM appears frequently in GIS analysis. Buffer distances, route offsets, area calculations, and grid indexing are generally easier in projected coordinates. You still need to choose the right zone and datum, but once you do, the coordinate values become more directly useful for on-the-ground decisions. A converter like this one is most helpful when you need to bridge the gap between GPS-style coordinates and map-style coordinates without losing track of how the system works.

Zones, central meridians, and hemispheres

Given longitude λ in degrees, the standard UTM zone number from 1 to 60 is computed from longitude in 6-degree slices. For the exact edge case of 180° longitude, practical implementations clamp the result to zone 60 so the numbering stays within the normal range.

Zone = λ + 180 6 + 1

The central meridian of that zone is the longitude around which distortion is minimized. It is the key reference line for the local Transverse Mercator projection.

λ0 = 6 × Zone - 183

UTM northings differ by hemisphere because of a false origin. In the northern hemisphere, northing starts at 0 m at the equator. In the southern hemisphere, a false northing of 10,000,000 m is added so values remain positive. UTM eastings also include a false easting of 500,000 m at the central meridian, which keeps easting values positive across the zone.

Datum and projection constants (WGS84)

This converter assumes the WGS84 ellipsoid, which is also the default reference for GPS. Key constants are:

  • Semi-major axis: a = 6378137 m
  • Flattening: f = 1/298.257223563
  • First eccentricity squared: e² = f(2 − f)
  • UTM scale factor at the central meridian: k0 = 0.9996

Those constants describe the reference ellipsoid and the standard scaling used by UTM. The details look technical, but the practical meaning is simple: the Earth is not treated as a perfect sphere, and the projection is slightly scaled so distortion stays controlled across each zone.

Forward conversion (Latitude/Longitude → UTM): formulas

At a high level, the forward Transverse Mercator projection computes a meridional arc length and applies series expansions based on latitude and the longitude difference from the central meridian. Common intermediate terms include:

  • φ: latitude in radians
  • λ: longitude in radians
  • λ0: central meridian in radians
  • A = (λ − λ0) · cos φ
  • T = tan² φ
  • C = e′² · cos² φ, where e′² = e² / (1 − e²)
  • ν = a / √(1 − e² sin² φ), the radius of curvature in the prime vertical
  • M: meridional arc length from the equator to latitude φ

The resulting UTM coordinates are easting E and northing N in meters, including the standard false easting and false northing. A commonly cited truncated series form is:

E = 500000 + k0 ν A + 1-T+C A3 6 + 5-18T+T2 +72C-58e2 A5 120 N = k0 M + ν tanφ A2 2 + 5-T+9C+4C2 A4 24

Implementations typically use well-tested geodesy series expansions for M, the meridional arc, and may include additional higher-order terms depending on the desired accuracy. The goal is not to memorize every term, but to understand the pattern: UTM is built from the ellipsoid shape, the zone's central meridian, and the point's offset from that meridian.

Interpreting the results

When you convert latitude/longitude to UTM, read the output as a complete package rather than as isolated numbers. The zone number tells you which 6-degree longitudinal band you are in. The hemisphere tells you whether the southern false northing convention is in play. Easting is the meter position east or west of the zone's central meridian after applying the 500,000 m false easting. Northing is the meter position north of the equator, with the southern offset added when needed.

As a quick sanity check, eastings in a valid zone are often somewhere around a few hundred thousand meters rather than tiny values or many millions. Northings increase as you move north within a hemisphere. If the result looks strange, the most common reasons are an incorrect sign on longitude, the wrong zone, or a latitude outside standard UTM coverage. It is also wise to remember that rounded display values can hide small underlying differences; the calculator rounds the final output for readability, not because the underlying formulas are simplistic.

Worked example (Lat/Lon → UTM)

Suppose you have a GPS coordinate near San Francisco with latitude 37.7749° and longitude −122.4194°. The zone calculation is:

Zone = ⌊(−122.4194 + 180) / 6⌋ + 1 = ⌊57.5806 / 6⌋ + 1 = 9 + 1 = 10

The central meridian is then λ0 = 6 × 10 − 183 = −123°. Because the latitude is positive, the point is in the northern hemisphere, so no southern false northing is added. The converter reports the answer as Zone 10N with easting and northing in meters. That output format is exactly what many map grids and GPS receivers expect.

You can also think about the reverse direction in plain language. If someone gives you a UTM point in Zone 10N with an easting a little above 500,000 m, the point is slightly east of the zone's central meridian. If the northing is roughly in the four-million-meter range, the point is well north of the equator but still in the mid-latitudes. The inverse formulas rebuild the latitude and longitude that correspond to that projected position.

Zone reference table (examples)

Sample UTM zones and their central meridians
Zone Longitude range Central meridian
1 180°W to 174°W −177°
10 126°W to 120°W −123°
31 0° to 6°E 3°E
50 114°E to 120°E 117°E
60 174°E to 180°E 177°E

Limitations and assumptions

Like any mapping tool, this converter makes assumptions that matter. Standard UTM is defined for approximately 84°N to 80°S; near the poles, UPS (Universal Polar Stereographic) is generally used instead. Results here assume WGS84. If your source data uses another datum such as NAD83 or a local geodetic reference, coordinates may differ by meters or more even when the conversion looks perfectly reasonable.

  • Zone boundaries: distortion increases as you move away from the central meridian, and working across zone boundaries can be inconvenient.
  • Special zones: parts of Norway and Svalbard use special zone rules in common mapping practice, so a simple longitude-only zone formula does not capture every real-world exception.
  • Precision: browser calculators round results for display. For surveying-grade work, confirm parameters and datum transforms with authoritative tools.
  • Interpretation: UTM values only make sense together with the zone and hemisphere. Dropping either label makes the coordinate incomplete.

The good news is that for most hiking, GIS, educational, and general planning use, these assumptions match what people already expect from GPS and web mapping tools. In that setting, the converter is a fast way to move between two common coordinate languages while still understanding the structure behind the numbers.

Latitude/Longitude to UTM

Valid between −80° and 84° for standard UTM zones.

Use negative values for west longitudes and positive values for east longitudes.

Enter coordinates above.

UTM to Latitude/Longitude

UTM zones run from 1 to 60, each covering 6° of longitude.

Choose the hemisphere that belongs to the original UTM coordinate.

Include the standard 500,000 m false easting exactly as shown on your map or device.

Northern hemisphere values start at 0; southern values include the 10,000,000 m offset.

Enter UTM values above.

Mini-game: Zone Lock

This optional mini-game turns the same idea behind the calculator into a quick challenge. A coordinate beacon appears as latitude and longitude. Your job is to move the scanner into the correct UTM zone and the correct hemisphere band, then lock it before the timer expires. Zones are only 6° wide, so the game becomes a feel-for-the-grid exercise: longitude decides the zone, latitude decides whether the beacon belongs in the north or south half of the board, and aiming near the zone's central meridian earns the best score.

Score0
Time75s
Streak0
Progress0/15
Integrity3
Best0

The calculator above remains the authoritative tool for the math. The game is purely for practice and intuition building.

Embed this calculator

Copy and paste the HTML below to add the UTM Coordinate Converter (WGS84) | Latitude/Longitude ↔ UTM to your website.