terican

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

45 positive =45.5Decimal Degrees

Equivalents

Precision: 6 dp · Notation: Decimal · 6 units
Positive (N / E)positive45.5
Negative (S / W)negative-45.5
North (N)north45.5
South (S)south-45.5
East (E)east45.5
West (W)west-45.5

Common pairings

1 positiveequals-1.5 negative
1 positiveequals1.5 north
1 positiveequals-1.5 south
1 negativeequals1.5 positive
1 negativeequals1.5 north
1 negativeequals-1.5 south
1 northequals1.5 positive
1 northequals-1.5 negative

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

Frequently asked questions

What is the formula to convert degrees, minutes, and seconds to decimal degrees?
The formula is DD = D + (M ÷ 60) + (S ÷ 3600), where D is whole degrees, M is arcminutes, and S is arcseconds. For example, 45°30′15″ converts as: 45 + (30 ÷ 60) + (15 ÷ 3600) = 45 + 0.5 + 0.004167 = 45.504167°. This formula works because one degree contains exactly 60 arcminutes and 3,600 arcseconds, making the denominators 60 and 3,600 respectively.
How do you convert South or West DMS coordinates to negative decimal degrees?
First calculate the absolute decimal degree value using DD = D + (M ÷ 60) + (S ÷ 3600), then apply a negative sign for South latitudes or West longitudes. For example, 33°52′0″ S converts to −(33 + 52/60 + 0) = −33.8667°. North latitudes and East longitudes remain positive. Omitting this sign places the coordinate in the wrong hemisphere — a critical error in navigation, GIS analysis, and field data collection.
What does 40°26′47″ equal in decimal degrees?
40°26′47″ converts to decimal degrees as follows: DD = 40 + (26 ÷ 60) + (47 ÷ 3600) = 40 + 0.43333 + 0.01306 = 40.44639°. Rounded to five decimal places, the result is 40.44639°. This latitude approximately corresponds to Columbus, Ohio, demonstrating how a common DMS coordinate from a paper map or printed survey translates directly into the format required by digital mapping and GIS tools.
Why do GPS devices and mapping apps prefer decimal degrees over DMS format?
Decimal degrees represent an angle as a single floating-point number, enabling direct arithmetic operations, database indexing, distance calculations, and API input with no parsing required. GIS platforms including ArcGIS, QGIS, and the Google Maps API accept decimal coordinate input natively. The DMS format, while intuitive for human navigation, must first be split into three separate components before any computation can occur, introducing unnecessary processing overhead and conversion error risk.
How many decimal places are needed for accurate decimal degree GPS coordinates?
Four decimal places (0.0001°) provides roughly 11-meter accuracy, sufficient for general GPS navigation and photo geotagging. Five decimal places (0.00001°) achieves about 1.1-meter precision, suitable for field surveys and emergency response. Six decimal places (0.000001°) reaches approximately 11-centimeter accuracy, required for cadastral mapping and construction layout. One arcsecond equals roughly 30.87 meters at the equator, so any DMS source containing fractional seconds demands at least 5 decimal places in the result to avoid meaningful positional error.
What are the valid input ranges for degrees, minutes, and seconds?
In standard DMS notation, arcminutes must fall between 0 and 59, and arcseconds between 0 and 59.999. A seconds value of 60 or higher indicates an entry error — the excess should roll over into additional arcminutes. Latitude degrees range from 0 to 90, and longitude degrees from 0 to 180. Values outside these bounds produce geometrically invalid coordinates. This converter validates all three fields automatically and flags out-of-range inputs before computing the decimal degree result.