GPS Coordinate Formats Explained: Decimal Degrees, DMS, and MGRS
When you inspect a photo's GPS metadata, or read coordinates from a GIS export, or enter a location into a map application, the coordinates may appear in one of several different formats. Decimal degrees, degrees minutes seconds, degrees decimal minutes, and MGRS are all representations of the same underlying geographic position — but they look completely different and cannot be directly compared without conversion.
Understanding these formats helps you read coordinate data correctly, choose the right format for your workflow, and avoid errors that arise from mixing formats in reports or data tables.
Decimal degrees (DD)
Decimal degrees is the most common format in digital mapping, GIS software, web APIs, and EXIF metadata. A position is expressed as two numbers — latitude and longitude — each as a single decimal value.
Example: 25.276987, 55.296249
Latitude ranges from -90 to +90. Positive values are north of the equator; negative values are south. Longitude ranges from -180 to +180. Positive values are east of the prime meridian; negative values are west.
Decimal degrees is the format stored in EXIF GPS fields and used by GeoJSON, most web mapping APIs (including Google Maps and OpenStreetMap), and the CSV exports from GeoMeta Pro. It is the simplest format to use in code and spreadsheets because it is a plain number — no degrees symbols, no minutes, no seconds to handle.
The precision of a decimal degrees value indicates its accuracy. Six decimal places (e.g., 25.276987) represents accuracy to approximately 0.1 metres — far more precise than any consumer GPS. Five decimal places is accurate to about 1 metre. Three decimal places is accurate to about 111 metres — adequate for city-level identification but not for precise site or building identification.
Degrees Minutes Seconds (DMS)
Degrees Minutes Seconds is the traditional format used in navigation, surveying, and on printed maps. Each coordinate component — latitude and longitude — is expressed as degrees, minutes (each degree divided into 60 minutes), and seconds (each minute divided into 60 seconds), followed by a cardinal direction.
Example: 25° 16' 37.15" N, 55° 17' 46.50" E
DMS is the format in which GPS EXIF data is actually stored internally in image files. The EXIF specification stores latitude and longitude as three rational numbers (degrees, minutes, seconds) plus a reference character (N/S or E/W). When GeoMeta Pro and other EXIF readers display coordinates, they typically convert these values to decimal degrees for convenience.
DMS is commonly used in printed reports and formal documents, particularly in surveying and navigation contexts where the traditional format is expected. It is harder to use in calculations and code than decimal degrees.
Converting DMS to decimal degrees
The formula is: DD = Degrees + (Minutes ÷ 60) + (Seconds ÷ 3600)
For a southern or western coordinate, apply a negative sign. Example: 25° 16' 37.15" N = 25 + (16 ÷ 60) + (37.15 ÷ 3600) = 25.276987°
Degrees Decimal Minutes (DDM)
Degrees Decimal Minutes is a hybrid format: degrees as a whole number, followed by decimal minutes (minutes with a decimal fraction rather than separate seconds). It is commonly used by marine navigation systems, some aviation systems, and older Garmin GPS units.
Example: 25° 16.6192' N, 55° 17.7750' E
DDM is less common in digital workflows than DD or DMS, but it appears frequently in marine chartplotters and AIS vessel tracking data. If you receive coordinates in this format, convert to decimal degrees by dividing the decimal minutes by 60 and adding to the whole degrees.
MGRS — Military Grid Reference System
MGRS is a grid-based coordinate system used by military forces globally and also used in some civilian emergency management and search-and-rescue contexts. It expresses a position as a combination of a grid zone designator, a 100 km grid square identifier, and an easting/northing numerical pair.
Example: 38RPP7258792341
MGRS is based on the Universal Transverse Mercator (UTM) coordinate system and the Universal Polar Stereographic (UPS) system for polar regions. It is designed to be readable and communicable verbally without confusion between latitude and longitude — the grid reference is a single string with no ambiguity about which number is north-south and which is east-west.
For most civilian GIS and field inspection workflows, MGRS is not commonly encountered. It appears primarily in defence, emergency management, and specific outdoor navigation contexts. Converting between MGRS and decimal degrees requires dedicated coordinate conversion libraries — it cannot be done with a simple formula.
UTM — Universal Transverse Mercator
UTM divides the Earth into 60 north-south zones, each 6 degrees of longitude wide, and expresses positions as easting and northing values in metres within each zone. It is the underlying system for MGRS and is commonly used in GIS analysis because distances in metres can be calculated directly from coordinate differences within the same UTM zone.
Example: Zone 38N, Easting 372581, Northing 2792341
UTM is used in many GIS datasets and is the preferred format when performing distance or area calculations, because the metre-based grid avoids the distortions that occur when doing geometry directly with latitude/longitude coordinates.
Which format does GeoMeta Pro use?
GeoMeta Pro displays and exports GPS coordinates in decimal degrees, which is the standard for digital mapping workflows, web GIS, and GeoJSON/KML/CSV exports. The EXIF metadata panel shows coordinates in decimal degrees for easy reading. The underlying DMS values from the EXIF file are available in the full metadata detail view.
When copying GPS coordinates from GeoMeta Pro's output into a report, confirm which format the recipient expects. Decimal degrees work directly in Google Maps — paste them into the search bar in "lat, lon" format. For formal survey documents or navigation systems, you may need to convert to DMS first using the formula above.
Quick format comparison table
- Decimal Degrees (DD): 25.276987, 55.296249 — used in GIS, web maps, APIs, EXIF display, CSV/GeoJSON exports.
- Degrees Minutes Seconds (DMS): 25° 16' 37.15" N, 55° 17' 46.50" E — used in printed reports, navigation, survey documents; how EXIF actually stores coordinates internally.
- Degrees Decimal Minutes (DDM): 25° 16.6192' N — used in marine and some aviation navigation systems.
- MGRS: 38RPP72588792 — used in military and emergency management contexts.
- UTM: Zone 38N, E372581, N2792341 — used in GIS analysis where metre-based distance calculations are needed.
Load your geotagged photos into the GeoMeta Pro tool to read and export GPS coordinates in decimal degrees format, ready for use in Google Earth, GIS software, or structured field reports.