GPS Coordinate Formats: DD, DMS, DDM, UTM, MGRS
GPS coordinates can be written in several different formats. Each format represents the same physical location on Earth, but uses different notation. Knowing the difference helps you avoid errors when entering coordinates into different devices and software.
Convert Between Formats NowThe 5 Main Coordinate Formats
Here is the same location (the Statue of Liberty, New York) expressed in each format:
| Format | Example | Used By |
|---|---|---|
| DD (Decimal Degrees) | 40.689247, -74.044502 | Google Maps, most apps |
| DMS (Degrees Minutes Seconds) | 40° 41' 21.3" N, 74° 02' 40.2" W | Aviation, nautical charts |
| DDM (Degrees Decimal Minutes) | 40° 41.355' N, 74° 02.670' W | Marine GPS, geocaching |
| UTM (Universal Transverse Mercator) | 18T 583960 4507523 | Military, topographic maps |
| MGRS (Military Grid Reference) | 18TWL8396007523 | NATO, search & rescue |
Decimal Degrees (DD)
The simplest and most common format for digital applications. Latitude and longitude are expressed as decimal numbers.
latitude, longitudeExample:
40.689247, -74.044502Range: Latitude: -90 to 90. Longitude: -180 to 180.
Sign convention: Positive = North/East. Negative = South/West.
Best for: Web applications, databases, APIs, Google Maps, programming
Convert to Decimal DegreesDegrees Minutes Seconds (DMS)
The traditional format used in aviation and nautical navigation. Each degree is divided into 60 minutes, and each minute into 60 seconds.
DD° MM' SS.S" N/S, DD° MM' SS.S" E/WExample:
40° 41' 21.3" N, 74° 02' 40.2" WConversion: Decimal Degrees = Degrees + Minutes/60 + Seconds/3600
Best for: Aviation, nautical charts, topographic maps, printed references
Convert to DMSDegrees Decimal Minutes (DDM)
A hybrid format where degrees are whole numbers and minutes include a decimal fraction. No seconds field.
DD° MM.MMM' N/S, DD° MM.MMM' E/WExample:
40° 41.355' N, 74° 02.670' WConversion: Decimal Degrees = Degrees + DecimalMinutes/60
Best for: Marine GPS devices, geocaching, Garmin handhelds
UTM (Universal Transverse Mercator)
A grid-based system that divides the world into 60 zones. Coordinates are given in meters, which makes distance calculations simple.
Zone Band Easting NorthingExample:
18T 583960 4507523Zone: 1-60 (each 6 degrees of longitude wide)
Band: Letter (C to X, skipping I and O)
Best for: Surveying, topographic maps, military operations, construction
Convert to UTM Learn about UTMMGRS (Military Grid Reference System)
An extension of UTM used by NATO forces. Adds a 100km grid square identifier for more compact notation.
ZoneBand GridSquare Easting NorthingExample:
18TWL8396007523 (10-digit = 1m precision)Precision levels: 10-digit (1m), 8-digit (10m), 6-digit (100m), 4-digit (1km)
Best for: Military operations, NATO, search and rescue, emergency response
Convert to MGRS Learn about MGRSWhich Format Should You Use?
| Use Case | Recommended Format | Why |
|---|---|---|
| Web apps & APIs | DD (Decimal Degrees) | Standard for programming |
| Aviation / nautical | DMS | Required by ICAO/IMO |
| Marine GPS | DDM | Default on most chartplotters |
| Surveying / construction | UTM or State Plane | Meters, easy distance calc |
| Military / SAR | MGRS | NATO standard |
| Hiking / geocaching | DDM or DD | Garmin default |
| GIS analysis | DD or UTM | Depends on project CRS |