BIPM-ratified constants · v1.0
Converter
Degrees,, minutes, seconds to decimal degrees converter calculator.
Convert DMS coordinates (degrees, arcminutes, arcseconds) to decimal degrees using DD = D + M/60 + S/3600. Supports N/S/E/W direction signs.
From
positive (n / e)
positive
Equivalents
Common pairings
The conversion
How the value
is computed.
How to Convert Degrees, Minutes, and Seconds to Decimal Degrees
Geographic coordinates and angle measurements appear in two common formats: Degrees, Minutes, Seconds (DMS) and Decimal Degrees (DD). The DMS format divides each degree into 60 arcminutes and each arcminute into 60 arcseconds — a base-60 (sexagesimal) system inherited from ancient Babylonian astronomy. Modern GIS platforms, GPS receivers, and mapping APIs such as Google Maps require the decimal degree format, making DMS-to-DD conversion an everyday necessity for surveyors, cartographers, and developers alike.
The Conversion Formula
The standard formula to convert DMS to decimal degrees is:
DD = D + (M ÷ 60) + (S ÷ 3600)
Where each variable represents:
- D — Whole degrees: the integer portion of the angle (e.g., 37 in 37°30′45″)
- M — Arcminutes: an integer from 0 to 59, divided by 60 to yield fractional degrees
- S — Arcseconds: a value from 0 to 59.999, divided by 3,600 (60 × 60) to yield fractional degrees
- Direction — Hemisphere indicator: North (N) and East (E) produce positive values; South (S) and West (W) produce negative values
Formula Derivation
The derivation follows standard unit conversion. Because 1° = 60′, any arcminute count M converts to degrees by the ratio M/60. Because 1° = 3,600″, any arcsecond count S converts to degrees by S/3,600. Summing the three components yields the complete decimal angle. According to the U.S. Geological Survey (USGS), this additive decomposition of the sexagesimal angle is the authoritative method used across all federal geospatial datasets and is the standard adopted by the National Geodetic Survey.
Worked Examples
Example 1: Northern Latitude
Convert 37°30′45″ N to decimal degrees:
- D = 37
- M ÷ 60 = 30 ÷ 60 = 0.5
- S ÷ 3600 = 45 ÷ 3600 = 0.0125
- DD = 37 + 0.5 + 0.0125 = 37.5125° (positive, because North)
Example 2: Western Longitude
Convert 118°15′30″ W to decimal degrees:
- D = 118
- M ÷ 60 = 15 ÷ 60 = 0.25
- S ÷ 3600 = 30 ÷ 3600 ≈ 0.00833
- DD = 118 + 0.25 + 0.00833 = 118.25833° — apply West sign: −118.25833°
Example 3: Arcminute-Only Conversion
Convert 0°45′0″ to decimal degrees: DD = 0 + (45 ÷ 60) + 0 = 0.75°. This confirms that 45 arcminutes equals exactly three-quarters of a single degree, a useful mental anchor when checking results.
Example 4: Arcseconds-Heavy Conversion
Convert 51°22′38″ S to decimal degrees:
- D = 51
- M ÷ 60 = 22 ÷ 60 ≈ 0.36667
- S ÷ 3600 = 38 ÷ 3600 ≈ 0.01056
- DD = 51 + 0.36667 + 0.01056 ≈ 51.37723° — apply South sign: −51.37723°
Practical Applications
Decimal degrees are the native coordinate format for software ranging from QGIS and Esri ArcGIS to the Google Maps API and OpenStreetMap. As documented in the Louisiana Tech University Math 112 Trigonometry curriculum, DMS-to-decimal conversion is a foundational skill in applied trigonometry and geodesy. Nautical charts, aviation waypoints, cadastral surveys, and historic topo maps frequently publish coordinates in DMS, requiring conversion before any digital processing can occur. When integrating data from multiple sources—printed maps, legacy databases, and modern APIs—maintaining consistency by converting all coordinates to decimal degrees eliminates ambiguity and prevents mapping errors.
Precision Reference
Understanding the real-world scale of each angular unit guides precision decisions when rounding results:
- 1° latitude ≈ 111 km
- 1′ (arcminute) ≈ 1,852 m (1 nautical mile)
- 1″ (arcsecond) ≈ 30.87 m at the equator
- 0.0001° ≈ 11.1 m — adequate for most consumer GPS use
- 0.000001° ≈ 0.11 m — required for precision surveying and cadastral mapping
Retain at least 5 decimal places in the final result to avoid introducing rounding errors larger than 1 meter when working with arcsecond-level source data.
Sign Convention and Common Errors
Always apply the hemisphere sign after computing the absolute decimal value. North latitudes and East longitudes are positive; South latitudes and West longitudes are negative. Entering 33°51′54″ S as positive (+33.865°) instead of negative (−33.865°) is the most frequent conversion mistake — it places the coordinate in the wrong hemisphere, shifting the location by thousands of kilometers on the map. When working with batch conversions or writing automated scripts, verify that the direction code (N, S, E, W) is correctly parsed before sign application, as hemisphere mix-ups propagate through entire datasets and produce systematic spatial errors that can go undetected until field validation occurs.
Reference