GPS Coordinate Formats: DD, DMS, and UTM Explained
4 min read · Last updated: 2026-05-08
Three GPS coordinate formats
GPS positions can be expressed in three main formats: DD (Decimal Degrees), DMS (Degrees Minutes Seconds), and UTM (Universal Transverse Mercator).
DD — Decimal Degrees
The most concise format, expressing latitude and longitude as decimal numbers.
Example: 37.5665° N, 126.9780° E
Positive values indicate North/East; negative values indicate South/West. DD is ideal for web APIs, programming, and URL sharing.
DMS — Degrees, Minutes, Seconds
The traditional navigation format. 1 degree = 60 minutes, 1 minute = 60 seconds.
Example: 37° 33' 59.4" N, 126° 58' 40.8" E
Widely used with paper maps, older GPS devices, aviation, and marine navigation.
Conversion formulas: DD ↔ DMS
DD → DMS
- Degrees (D) = integer part of DD
- Minutes (M) = integer part of (DD − D) × 60
- Seconds (S) = ((DD − D) × 60 − M) × 60
DMS → DD: DD = D + M/60 + S/3600
Example: 37° 33' 59.4" = 37 + 33/60 + 59.4/3600 ≈ 37.5665°
UTM — Universal Transverse Mercator
UTM divides the Earth into 60 longitude zones and expresses positions in meters within each zone. It is used in surveying, GIS, and military mapping.
Example: 52S 442400E 4154300N (zone 52S, 442,400 m East, 4,154,300 m North)
Key takeaways
- DD is the most convenient format for programming and web APIs.
- DMS is used with legacy GPS devices and traditional navigation charts.
- UTM expresses distance in meters, making area calculations straightforward in GIS.
- To convert DD → DMS: multiply the decimal fraction by 60 repeatedly to extract minutes and seconds.