Decimal degrees to DMS
Convert decimal degrees to degrees, minutes, seconds. Free online tool — no sign-up. Clear formulas and worked examples. Runs locally in your browser.
Enter values to convert.
Formulas
Core equations used by this converter.
How to use
Extract whole degrees
Degrees d = integer part of decimal degrees dd (use |dd| first if signed).
Convert fraction to minutes
Multiply the fractional part by 60; the whole number is minutes m.
Convert remainder to seconds
Multiply the leftover fraction of minutes by 60 for seconds s; reapply sign or N-S/E-W.
Example conversions
Common values with formula and result.
30.263888889°
30.263888889°
45.5°
45.5°
1.01°
1.01°
Decimal degrees to DMS specification
Version 1.1.0 · Engine tested
- Engine tested 3 published cases
- Named expert review Not performed
- Calculation version 1.1.0
- Definition
- **Decimal degrees** store an angle as one real number. **DMS** splits it into degrees, minutes, and seconds for maps, deeds, and classic navigation displays.
- What it calculates
- Convert decimal degrees to degrees, minutes, seconds. Extract d, then m = floor(frac×60), s = remaining×3600. Examples and FAQ.
- Inputs
- Values required by the selected conversion mode
- Outputs
- Converted result in the target unit or format
- Formula
d = integer(dd) · m = integer((dd − d) × 60) · s = (dd − d − m/60) × 3600- Decimal degrees → DMS chart
Decimal degrees DMS 0.5° 0° 30′ 0″ 15° 15° 0′ 0″ 30.263889° 30° 15′ 50″ 45.5° 45° 30′ 0″ 90° 90° 0′ 0″ - Assumptions
- Conversion runs locally in the browser; values are not uploaded.
- Uses the formulas documented on this page.
- Units
- d
- m
- s
- Boundary conditions
- Empty or invalid input yields no valid result.
- Out-of-range values may be rejected by the tool runtime.
- Example
- 30.263888889° → 30° 15′ 50″
- Validation cases
- 30.263888889° → 30° 15′ 50″
- 45.5° → 45° 30′ 0″
- 1.01° → 1° 0′ 36″
- Sources
- CalculatorX converter runtime
- Standard unit / encoding definitions where applicable
- Calculation version
- 1.1.0
Background
Interpretation and common distinctions.
Use the converter tabs to switch direction when available. Results for Decimal degrees to DMS update locally in your browser.
Related tools
Frequently asked questions
Key distinctions behind the conversion.
How do you convert decimal degrees to DMS?
Use d = integer(dd), m = integer((dd − d) × 60), s = ((dd − d) × 60 − m) × 60. Example: 30.263888889° → 30° 15′ 50″.
How should I round seconds?
Survey work may round to 0.01″ or whole seconds. Rounding can carry into minutes and degrees — check your field standard.
How do I convert DMS back to decimal?
Switch to the DMS → decimal tab or use dd = d + m/60 + s/3600 on the reverse converter.
Does this run online or locally?
Calculation runs locally in your browser. Values are not uploaded.