Three Coordinate Systems, One Location — Here's How They Work

Type "Eiffel Tower coordinates" into Google and you'll see: 48.8584° N, 2.2945° E. Open a hiking GPS or printed topo map and you might instead see: 48°51'30.2"N, 2°17'40.2"E. Military maps use a completely different system: 31U DQ 48251 11415. These three notations describe the exact same point on Earth. Understanding which format to use — and how to read each one — is the foundation of GPS navigation, geocaching, and any work with geographic data.

Format 1: Decimal Degrees (DD) — The Digital Standard

Decimal degrees are the most common format in digital maps, GPS apps, and web APIs. Latitude comes first (north-south position), then longitude (east-west position).

How to read it:

  • Latitude ranges from -90° (South Pole) to +90° (North Pole). Positive = north of the equator, negative = south.
  • Longitude ranges from -180° (180° west) to +180° (180° east). Positive = east of the prime meridian (Greenwich, UK), negative = west.

Real examples:

The Statue of Liberty: 40.6892° N, 74.0445° W (or written as signed values: 40.6892, -74.0445)

Breaking it down: 40.6892° north of the equator, 74.0445° west of Greenwich. The .6892 means 68.92% of the way through the 40th degree of latitude northward (each degree spans about 69 miles, so 0.6892 of a degree = approximately 47.5 miles north of 40°N).

The Sydney Opera House: -33.8568, 151.2153 Negative latitude = Southern Hemisphere; positive longitude = east of Greenwich (Eastern Hemisphere).

Why decimal degrees dominate digital use: They're easy to store, search, and calculate with. Adding or subtracting values is straightforward. Almost every API, database, and web mapping service (Google Maps, OpenStreetMap, GPS chipsets) uses DD internally.

Precision and distance:

  • 1 degree of latitude ≈ 69 miles (111 km)
  • 0.1° ≈ 6.9 miles (11 km)
  • 0.01° ≈ 0.69 miles (1.1 km)
  • 0.001° ≈ 111 meters
  • 0.0001° ≈ 11 meters
  • 0.00001° ≈ 1.1 meters (sufficient for precise navigation)

Six decimal places (e.g., 40.689247) gives centimeter-level precision — more than any consumer GPS provides.

Format 2: Degrees, Minutes, Seconds (DMS) — The Traditional Standard

DMS is the older format used on printed maps, in aviation, maritime navigation, and by many GPS handhelds. It breaks a decimal degree into degrees (°), minutes ('), and seconds (").

The math:

  • 1 degree = 60 minutes
  • 1 minute = 60 seconds
  • 1 second of latitude ≈ 31 meters (0.1 miles)

Converting Decimal Degrees to DMS: Take 40.6892° and convert:

  1. Degrees = 40 (integer part)
  2. Remaining decimal × 60 = 0.6892 × 60 = 41.352 minutes
  3. Minutes = 41 (integer part)
  4. Remaining decimal × 60 = 0.352 × 60 = 21.12 seconds

Result: 40°41'21.12"N

For the longitude, 74.0445° W:

  1. Degrees = 74
  2. 0.0445 × 60 = 2.67 minutes → 2 minutes
  3. 0.67 × 60 = 40.2 seconds

Result: 74°02'40.2"W

So the Statue of Liberty in DMS: 40°41'21"N, 74°02'40"W — which matches the form you'd find on a USGS topographic map.

Reading DMS on a map: The latitude/longitude grid on printed maps typically shows degree lines, with minutes subdivided along the edge. A position described as "2 minutes 40 seconds west" means 2 marks (if minutes are shown) plus roughly 67% of the way to the next mark.

Format 3: UTM (Universal Transverse Mercator)

UTM is a grid-based coordinate system used by military, surveyors, and many national park maps. Instead of measuring angles from the equator and prime meridian, UTM divides the Earth into 60 numbered zones (each 6° of longitude wide) and measures meters from a reference point within that zone.

Structure of a UTM coordinate: Zone number + Zone letter (latitude band) + Easting + Northing

Example — Mount Everest: UTM: 45R 390146E 3096748N

Breaking it down:

  • 45R: Zone 45 (covers 84°E–90°E longitude), latitude band R (in the Northern Hemisphere between 24°N and 32°N)
  • 390146E: 390,146 meters east of the zone's central meridian (with 500,000m as the false origin to avoid negative numbers)
  • 3096748N: 3,096,748 meters north of the equator

Why UTM is useful: Every UTM number is in meters. Adding 1,000 to the easting moves exactly 1 kilometer east. No trigonometry required to calculate distances in the field — it's a simple grid. This makes it ideal for hiking with a compass (measuring distances on a map is a matter of counting grid squares).

UTM limitations: It doesn't work well at the poles (above 84°N or below 80°S, a different system called UPS is used). Also, the system requires knowing which zone you're in — a coordinate without its zone identifier is ambiguous.

Practical Navigation: Which Format to Use When

Situation Best Format Why
Google Maps, navigation app DD Standard digital format
USGS topographic maps DMS or UTM Both shown on map edges
Military/wilderness navigation UTM Easy distance calculation
Aviation/maritime DMS Industry standard
Sharing a location via text/API DD Easiest to parse programmatically
Geocaching DD (typically minutes to 3 decimal places) Community standard

Checking Your Work

A quick sanity check on any coordinate:

  • Latitude must be -90 to +90 (values outside this range are wrong)
  • Longitude must be -180 to +180
  • North America has positive latitude (20°–85°N) and negative longitude (-50° to -170°W)
  • If you're looking at an address in New York and the longitude is positive, you've mixed up east/west

The Eiffel Tower: 48.8584, 2.2945 — positive latitude (northern hemisphere) and small positive longitude (just east of Greenwich, England). That checks out.

Coordinate Converter

Convert between decimal degrees, DMS, and UTM coordinate formats instantly

Try this tool →