Understanding GPS Coordinates: DMS vs. Decimal Degrees
In the world of Civil Engineering, Surveying, and Mapping, location data is king. However, different devices and software use different formats. The two most common formats are DMS (Degrees, Minutes, Seconds) and DD (Decimal Degrees).
Surveyors typically work with Total Stations and physical maps that use the DMS system, while modern web applications like Google Maps, GIS software (ArcGIS, QGIS), and mobile GPS units primarily use Decimal Degrees. Converting between them accurately is crucial for site layout and boundary marking.
1. What is DMS (Degrees, Minutes, Seconds)?
The DMS system is based on the sexagesimal system (base-60), similar to how we measure time. The earth is divided into 360 degrees.
- Degree (°): The largest unit.
- Minute ('): Each degree is divided into 60 minutes.
- Second ("): Each minute is divided into 60 seconds.
Example: 23° 15' 30" (23 Degrees, 15 Minutes, 30 Seconds)
2. What are Decimal Degrees (DD)?
Decimal Degrees express coordinates as a single floating-point number. This format is preferred by computers and coding algorithms because it is easier to calculate distances using mathematical formulas like the Haversine formula.
Example: 23.258333°
Conversion Formulas
If you need to calculate this manually without a tool, here is the math used by surveyors:
Decimal = Degrees + (Minutes / 60) + (Seconds / 3600)
1. Degrees = Integer part of the Decimal
2. Minutes = Integer part of ((Decimal - Degrees) * 60)
3. Seconds = (((Decimal - Degrees) * 60) - Minutes) * 60
Comparison: DMS vs. Decimal Degrees
| Feature | DMS Format | Decimal Format |
|---|---|---|
| Notation | 23° 15' 30" N | 23.258333 |
| Primary Use | Land Surveying, Nautical Charts, Legal Deeds | Google Maps, GPS Data, Coding |
| Ease of Use | Easy for humans to read on paper maps | Easy for computers to calculate distance |
| Precision | Uses Seconds (") for precision | Uses decimal places (6 digits = ~11cm precision) |
Frequently Asked Questions (FAQ)
- North: Positive (+)
- South: Negative (-)
- East: Positive (+)
- West: Negative (-)
- 1 decimal place: ~11 km accuracy (City)
- 3 decimal places: ~110 m accuracy (Neighborhood)
- 5 decimal places: ~1.1 m accuracy (Tree)
- 6 decimal places: ~0.11 m (11 cm) accuracy (Detail Survey)