Every point on Earth's surface can be written two common ways: Degrees-Minutes-Seconds (DMS), like 26° 54' 44.6" N, or Decimal Degrees (DD), like 26.9124°. They describe the exact same location — the difference is purely notation, inherited from how latitude and longitude were originally measured with a sextant, in a system borrowed from how we divide an hour into minutes and seconds.

How the conversion actually works

A degree splits into 60 minutes, and each minute splits into 60 seconds — the same structure as time. To get Decimal Degrees from DMS:

Decimal Degrees = Degrees + (Minutes / 60) + (Seconds / 3600)

So 26° 54' 44.6" becomes 26 + (54/60) + (44.6/3600) = 26.9124°. Going the other direction, the whole-number part of the decimal value is the degrees; the remaining fraction, multiplied by 60, gives the minutes; and the fraction of that, multiplied by 60 again, gives the seconds.

Where this quietly goes wrong

How this is handled: Coordinate Converter accepts free-form input — including the mangled-symbol case — and parses latitude and longitude together, so a hemisphere or sign error is easier to catch before it ends up in your data.

When you'd use each format

Decimal Degrees is what almost all modern software — GIS tools, GPS devices, mapping APIs — expects internally. DMS is still common on printed survey documents, older government records, and some legal/cadastral descriptions. Converting between them is usually the first step in getting older coordinate data into a modern workflow.

Have a coordinate to convert?

Open Coordinate Converter →

Related Tutorials

How to Convert CSV to KML in 3 Steps How to Draw and Edit Shapefiles Online