Free Tool · DD Focus

Decimal degrees converter — DD to DMS, DDM, and UTM

Decimal degrees (DD) is the modern default for latitude and longitude — the format every smartphone, GPS receiver, and modern API produces. Paste a DD value into the tool below and you get the equivalent in degrees-minutes-seconds (DMS), degrees-decimal-minutes (DDM), and Universal Transverse Mercator (UTM) instantly. Below the tool, this page goes deep on DD specifically: what the number means, how to convert it by hand, and how many decimal places you actually need.

Convert coordinates

① Decimal Degrees (DD)
48.858420, 2.294500
② DMS — Degrees Minutes Seconds
Latitude
Longitude
③ DDM — Degrees Decimal Minutes

What decimal degrees actually mean

A coordinate is just an angle. Decimal degrees write that angle as a single number with a fractional part: 48.858420. The integer part (48) is the degree; the fractional part (0.858420) is what fraction of the next degree you are. Northern hemisphere latitudes are positive (0 to +90); southern latitudes are negative. Eastern longitudes are positive (0 to +180); western longitudes are negative.

Two numbers in DD format identify a single point on Earth's surface. Latitude comes first (Google Maps convention); longitude second. The order matters: if either value is greater than 90 in absolute value, that one must be longitude — latitude only goes up to ±90. For deeper coverage of the order, signs, and edge cases, see the latitude vs longitude guide.


The DD ↔ DMS conversion math

Decimal degrees and DMS encode the same angle in different notations. The math both ways:

DD → DMS

  1. Take the integer part of the decimal degree — that is your degrees value.
  2. Multiply the fractional part by 60 — the integer part of the result is your minutes.
  3. Multiply the remaining fraction by 60 again — that is your seconds.

Example: 48.858420° → 48° + (0.858420 × 60)′ = 48° 51.5052′ → 48° 51′ (0.5052 × 60)″ = 48° 51′ 30.31″.

DMS → DD

Take the degrees as is, divide the minutes by 60, divide the seconds by 3600, then add the three together. For southern latitudes or western longitudes, negate the final result (since DMS uses an N/S/E/W letter where DD uses a sign).

Example: 48° 51′ 30.31″ N = 48 + 51/60 + 30.31/3600 = 48.858420°.

For all four formats at once (including DDM and UTM), the multi-format coordinates converter has the same engine with a broader interface.


When to use DD versus DMS


DD precision — how many decimal places you really need

Each decimal place of latitude or longitude shrinks your error by roughly a factor of ten. The full table:

DecimalsPrecisionWhat it identifies
0~111 kmA country or region
1~11 kmA large city
2~1.1 kmA neighbourhood
3~110 mA city block
4~11 mA single building
5~1.1 mA parking space — smartphone GPS limit
6~11 cmSurvey grade — false precision for consumer GPS

For DMS, one second of latitude is about 31 metres, and one decimal of a second is about 3 metres. Old surveys often give whole-second precision — perfectly adequate for showing a landmark, less so for guiding a drone.


Hemispheres and signs — the most common DD mistakes

DD uses signs: positive for North/East, negative for South/West. DMS uses hemisphere letters (N, S, E, W) instead. Mixing the two is the single most common mistake in conversion. A reference of landmarks in all four hemispheres:

LandmarkDDHemispheres
Eiffel Tower, Paris48.858420, 2.294500N, E
Statue of Liberty, NYC40.689247, -74.044502N, W
Sydney Opera House-33.856785, 151.215290S, E
Cape Town-33.924870, 18.424055S, E
Buenos Aires-34.603722, -58.381592S, W
Tokyo Tower35.658580, 139.745560N, E

Two landmarks worth memorising as sanity checks: Sydney is -33.8568, 151.2153 (south, east — first number negative, second positive); the Statue of Liberty is 40.6892, -74.0445 (north, west — first positive, second negative). If your map ends up in the wrong ocean, one of those signs is off.


Frequently asked questions

What are decimal degrees in GPS coordinates?

Decimal degrees (DD) write a latitude or longitude as a single signed number with a fractional part — for example, 48.858420 for the Eiffel Tower's latitude. Positive means north or east; negative means south or west. DD is the modern default produced by every smartphone, GPS receiver, Google Maps URL, and web API. It is the format almost every digital system accepts directly.

How do I convert decimal degrees to DMS?

Take the integer part of the decimal degree as the degrees value. Multiply the fractional part by 60 to get the minutes (keep the integer part). Multiply the remaining fraction by 60 again to get the seconds. Example: 48.8584° → 48° + (0.8584 × 60)′ = 48° 51.504′ → 48° 51′ (0.504 × 60)″ = 48° 51′ 30.24″. The tool above does this automatically as you type, including the N/S/E/W hemisphere letter.

How do I convert DMS back to decimal degrees?

Take the degrees as is, divide the minutes by 60, divide the seconds by 3600, then add the three together. For southern latitudes or western longitudes, negate the result. Example: 48° 51′ 30.24″ N = 48 + 51/60 + 30.24/3600 = 48.8584°. Type either format into the tool and the other recalculates immediately.

How many decimal places does a DD coordinate need?

Each decimal divides the uncertainty by ten. Three decimals (~110 m) is enough for a city block; four (~11 m) lands on a building; five (~1.1 m) is what most smartphone GPS realistically delivers; six (~11 cm) is the de facto storage format. Writing more than six is false precision because consumer GPS rarely beats one metre under ideal conditions.

Why are some decimal-degree coordinates negative?

DD uses signs to indicate hemispheres. Positive latitude = north of the equator; negative latitude = south of the equator. Positive longitude = east of Greenwich; negative longitude = west. So Sydney is -33.8568, 151.2153 (south, east) and the Statue of Liberty is 40.6892, -74.0445 (north, west). DMS uses N/S/E/W letters instead — the same point, the same magnitude, just a different notation for direction.

Is DD the same as the format Google Maps uses?

Yes. Open Google Maps in a browser, right-click any point, and the first item in the menu is the DD coordinate — "48.858420, 2.294500" — ready to copy. iPhone's Compass app, Apple Maps, Android's long-press menu, and almost every GPS app default to the same format. DD is the lingua franca of consumer mapping.

Related tools and guides