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 Now

The 5 Main Coordinate Formats

Here is the same location (the Statue of Liberty, New York) expressed in each format:

FormatExampleUsed By
DD (Decimal Degrees)40.689247, -74.044502Google Maps, most apps
DMS (Degrees Minutes Seconds)40° 41' 21.3" N, 74° 02' 40.2" WAviation, nautical charts
DDM (Degrees Decimal Minutes)40° 41.355' N, 74° 02.670' WMarine GPS, geocaching
UTM (Universal Transverse Mercator)18T 583960 4507523Military, topographic maps
MGRS (Military Grid Reference)18TWL8396007523NATO, search & rescue

Decimal Degrees (DD)

The simplest and most common format for digital applications. Latitude and longitude are expressed as decimal numbers.

Format: latitude, longitude
Example: 40.689247, -74.044502
Range: 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 Degrees

Degrees 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.

Format: DD° MM' SS.S" N/S, DD° MM' SS.S" E/W
Example: 40° 41' 21.3" N, 74° 02' 40.2" W
Conversion: Decimal Degrees = Degrees + Minutes/60 + Seconds/3600

Best for: Aviation, nautical charts, topographic maps, printed references

Convert to DMS

Degrees Decimal Minutes (DDM)

A hybrid format where degrees are whole numbers and minutes include a decimal fraction. No seconds field.

Format: DD° MM.MMM' N/S, DD° MM.MMM' E/W
Example: 40° 41.355' N, 74° 02.670' W
Conversion: 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.

Format: Zone Band Easting Northing
Example: 18T 583960 4507523
Zone: 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 UTM

MGRS (Military Grid Reference System)

An extension of UTM used by NATO forces. Adds a 100km grid square identifier for more compact notation.

Format: ZoneBand GridSquare Easting Northing
Example: 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 MGRS

Which Format Should You Use?

Use CaseRecommended FormatWhy
Web apps & APIsDD (Decimal Degrees)Standard for programming
Aviation / nauticalDMSRequired by ICAO/IMO
Marine GPSDDMDefault on most chartplotters
Surveying / constructionUTM or State PlaneMeters, easy distance calc
Military / SARMGRSNATO standard
Hiking / geocachingDDM or DDGarmin default
GIS analysisDD or UTMDepends on project CRS

Convert Between Any Format