Lat/Lng to UTM Converter

Convert geographic coordinates to UTM zone, easting and northing

Ad placeholder (leaderboard)

This tool converts WGS-84 latitude and longitude to UTM — Universal Transverse Mercator — coordinates, the metre-based grid system used by topographic maps, militaries and GIS worldwide. It returns the zone number, the hemisphere, and the easting and northing in metres.

How it works

UTM divides the globe into 60 zones, each 6° of longitude wide. The zone number is:

zone = floor((longitude + 180) / 6) + 1

Within a zone, the point is projected with a transverse Mercator projection on the WGS-84 ellipsoid, scaled by the central-meridian scale factor k0 = 0.9996. The math evaluates a Karney-style series in the conformal latitude, then adds a false easting of 500000 m so eastings are positive, and (in the southern hemisphere) a false northing of 10000000 m so northings are positive there too.

Tips and notes

UTM is only valid between roughly 80°S and 84°N; beyond that the UPS polar system is used instead. Eastings near the zone edge can exceed the nominal range, which is normal. The full ellipsoidal series is accurate to sub-millimetre level inside a zone. Everything runs in your browser. To reverse the calculation, use the UTM to Lat/Lng converter.

Ad placeholder (rectangle)