· 6 min read
MGRS vs UTM: What Is the Difference?
MGRS and UTM describe the same point on the same projection, but they label it differently. A worked comparison of both formats, the false easting and northing that trip people up, and how to tell a hemisphere letter from a latitude band.
MGRS and UTM are constantly described as two coordinate systems. They are not. They are two ways of writing down a position on the same grid, computed from the same projection, on the same datum. Convert between them and nothing moves; only the notation changes.
Knowing exactly where they diverge is what stops the classic errors: reading a latitude band as a hemisphere, or dropping a digit from a false easting and landing 100 km away.
Here is one point, written both ways:
- MGRS
- 11S NA 16477 11316
- UTM
- 11N 516478 E 4011316 N
- Decimal degrees
- 36.24660° N, 116.81660° W
All three are the same spot in Death Valley, California.
What they share
Both are built on the Universal Transverse Mercator projection. The globe is cut into 60 north-south zones, each 6° of longitude wide, and each zone is flattened separately so distortion inside it stays small. Within a zone, position is measured in plain metres east and north, which is the whole point: you can do arithmetic on the numbers. Subtracting two eastings gives you a distance in metres. You cannot do that with degrees.
So both formats give you a metric, rectangular grid. The difference is purely in how the origin is expressed.
How UTM labels a position
A UTM coordinate names the zone, then gives an absolute easting and northing inside it.
11N 516478 E 4011316 N
11is the UTM zone.Nis the hemisphere: northern.516478 Eis the easting in metres.4011316 Nis the northing in metres.
Two conventions are baked into those numbers and neither is obvious.
The easting is measured from a line 500 000 m west of the zone's central
meridian. That offset is the false easting, and it exists so eastings are
never negative. An easting of 516478 therefore means 16 478 m east of the
central meridian, not 516 km from anywhere. Eastings inside a zone always land
roughly between 160 000 and 834 000, so a six-digit easting is normal.
The northing is measured from the equator, which is why it needs seven digits: at 40°N you are about 4 400 000 m up. In the southern hemisphere a false northing of 10 000 000 m is applied, so southern northings count down from ten million rather than going negative.
Southern northings run backwards
A UTM northing of 6 000 000 in the northern hemisphere is about 54°N. The
same figure in the southern hemisphere is about 36°S, because the value is
10 000 000 minus the distance from the equator. Drop the hemisphere letter and
the coordinate is genuinely ambiguous, not merely unclear.
How MGRS labels the same position
MGRS takes those same numbers and compresses them. Instead of quoting absolute metres, it names a 100 km square by letter and gives the position inside it.
11S NA 16477 11316
11is the same UTM zone.Sis the latitude band, not a hemisphere.NAis the 100 km square: columnN, rowA.16477 11316is the easting and northing inside that square.
Look at what happened to the digits. The UTM easting 516478 became 16477
once the leading 5 was absorbed into the N column letter. The UTM northing
4011316 became 11316 once the leading 40 was absorbed into the A row
letter. Same position, fewer characters to transmit.
The one-metre discrepancy between 516478 and 16477 is not an error. MGRS
designates a one-metre square, so converting back gives the square's corner or
centre depending on the implementation. Sub-metre differences between the two
formats are expected.
The letter that causes the most trouble
This is the single most common mix-up, and it is worth stating plainly:
| Format | Letter | Means |
|---|---|---|
| UTM | 11N | Northern hemisphere |
| UTM | 11S | Southern hemisphere |
| MGRS | 11S | Latitude band S, which is 32°N to 40°N |
11S in UTM is in the southern hemisphere. 11S in MGRS is in California. The
strings are identical and the meanings are thousands of kilometres apart.
MGRS latitude bands run C through X from south to north, 8° each, skipping
I and O because they read as 1 and 0. Bands C to M are southern, N to
X are northern. So the memory aid is that in MGRS, anything from N onwards is
north, which conveniently starts at the letter N.
Some UTM writing drops the hemisphere entirely
You will also see UTM given as a zone number plus a signed northing, or with an explicit "north"/"south" word instead of a letter. If a UTM string carries a band letter from the MGRS scheme rather than a plain N or S, treat it as a hybrid and confirm before plotting.
Which one to use
Neither is more accurate. They resolve to the same position at the same precision. Pick on the basis of what you are about to do with it.
Use MGRS when you are talking to a person or plotting on a gridded map. It is shorter to say over a radio, shorter to write, and it states its own precision by digit count. Ten digits means one metre; six digits means 100 m. It also plots directly onto a military map sheet, because the map is already printed with the same grid squares.
Use UTM when you are doing arithmetic or feeding software. Absolute eastings and northings subtract cleanly to give distance and bearing without first resolving which 100 km square you are in. Most GIS tools, survey equipment and mapping libraries expect UTM or lat/long rather than MGRS.
Use latitude and longitude when you are crossing systems. It is the lowest common denominator: every device and service accepts it, and it has no zone boundaries to worry about.
Where both formats break down
They share the same limitations, because they share the same projection.
- Neither works at the poles. UTM is defined from 80°S to 84°N. Beyond that the Universal Polar Stereographic system takes over, which is why MGRS polar references have no zone number at all.
- Zone boundaries are real discontinuities. Two points a kilometre apart on either side of a zone edge have completely unrelated eastings. Distance arithmetic across a boundary gives nonsense unless you reproject first.
- Both are meaningless without a datum. The same MGRS string on WGS-84 and on NAD 27 can differ by more than 200 m. See what WGS-84 actually is before trusting a conversion off an old map sheet.
The short version
UTM and MGRS are the same grid with different labels. UTM quotes absolute metres from a false origin and states a hemisphere. MGRS names a 100 km square by letter and quotes metres inside it, and its letter is a latitude band. Once you can see the UTM easting hiding inside the MGRS square letter, the two formats stop looking like separate systems.
If you want the MGRS side broken down character by character, that is covered in how to read MGRS coordinates. For why the zones are laid out the way they are, including the odd ones around Norway, see UTM zones explained.