One point, three ways to write it
A place on Earth has a single location, but you’ll see it written in at least three different notations depending on the app, device, or chart you’re looking at. The same spot in Mumbai might appear as 19.0760, 72.8777, as 19°4'33.6"N, 72°52'39.72"E, or as 19°4.560'N, 72°52.662'E. These all describe the exact same point — they’re just different ways of slicing up an angle. Knowing how they relate keeps you from pasting the wrong number into the wrong field, and the Coordinate Converter handles the arithmetic so you don’t have to.
Latitude and longitude, briefly
Every coordinate is a pair of angles. Latitude measures how far north or south of the equator you are, from 0° at the equator to 90° at each pole. Longitude measures how far east or west of the prime meridian (which runs through Greenwich) you are, from 0° to 180° in each direction. By convention, latitude is written first.
Direction is encoded one of two ways: with a hemisphere letter (N or S for latitude, E or W for longitude) or with a sign — positive for north and east, negative for south and west. So -33.8688 and 33.8688 S mean the same latitude. The converter accepts both.
Decimal Degrees (DD)
Decimal degrees is the simplest and most computer-friendly format. The whole coordinate is a single decimal number per axis:
19.0760, 72.8777
The integer part is the degrees; everything after the decimal point is the fraction of a degree. This is what spreadsheets, databases, web maps, and most APIs prefer because it’s just two numbers — easy to store, sort, and do maths on. It’s almost always the right format for anything programmatic.
The one thing to watch is precision. Each decimal place is roughly ten times finer than the last:
- 2 places ≈ 1.1 km
- 3 places ≈ 110 m
- 4 places ≈ 11 m
- 5 places ≈ 1.1 m
- 6 places ≈ 0.11 m
For most purposes five places is more than enough. Carrying fifteen digits from a calculation just implies a precision your data doesn’t actually have.
Degrees-Minutes-Seconds (DMS)
DMS is the traditional, sexagesimal (base-60) format you’ll see on paper maps, in surveying, and in older navigation systems:
19°4'33.6"N, 72°52'39.72"E
It breaks a degree into 60 minutes, and each minute into 60 seconds — the same way an hour breaks into minutes and seconds. To read it: 19 whole degrees, plus 4 minutes (4/60 of a degree), plus 33.6 seconds (33.6/3600 of a degree). Add those up and you’re back to 19.0760°.
The conversion from decimal degrees is mechanical:
- The degrees are the whole-number part:
19. - Multiply the remainder by 60 for minutes:
0.0760 × 60 = 4.56→ 4 minutes. - Multiply that remainder by 60 for seconds:
0.56 × 60 = 33.6→ 33.6 seconds.
DMS reads naturally to humans and is the standard on aeronautical and nautical charts, but it’s awkward for computers — three components plus a hemisphere, with base-60 carries to handle. That’s exactly the kind of fiddly conversion the Coordinate Converter is built to remove.
Degrees-Decimal-Minutes (DMM)
DMM is the hybrid that splits the difference:
19°4.560'N, 72°52.662'E
It keeps whole degrees and whole-plus-decimal minutes, but drops seconds entirely — the seconds are folded into the decimal part of the minutes instead. It’s the favourite format in marine and aviation GPS, partly for historical reasons and partly because it strikes a balance: more human-readable than raw decimal degrees, less cluttered than full DMS. If you’ve used a boat chartplotter or an aviation GPS, you’ve almost certainly seen DMM.
Converting from decimal degrees: take the whole degrees, then multiply the remainder by 60 to get decimal minutes. For 19.0760°: 0.0760 × 60 = 4.560, giving 19°4.560'.
Converting between them without errors
The conversions are simple in principle but easy to slip up on by hand — base-60 carries, hemisphere signs, and rounding all create traps. A few rules help:
- Pick a consistent precision. Don’t mix two-decimal seconds in one coordinate with four in another.
- Mind the rounding carry. Rounding seconds up can push them to 60, which should roll over into the next minute. The converter handles this automatically; by hand it’s a common mistake.
- Keep latitude first. Most formats and people expect lat, then long. Some APIs internally reverse it — when in doubt, check which value exceeds 90 (only longitude can).
- Don’t lose the hemisphere. A coordinate without N/S/E/W or a sign is ambiguous; the same numbers could point to four different places.
The fastest way to stay error-free is to let a tool do it. Paste any format into the Coordinate Converter and read all three at once. If you’re working across measurement systems more broadly — distances, areas, and the like — the length converter guide covers the same careful-conversion mindset for everyday units.
The takeaway
DD, DMS, and DMM are three notations for one underlying pair of angles. Decimal degrees is best for software, DMS for charts and surveying, DMM for marine and aviation GPS. They convert cleanly once you remember a degree holds 60 minutes and a minute holds 60 seconds — and when you’d rather not risk a base-60 slip, the Coordinate Converter does it instantly and in both directions.