How this instrument works
Decimal Degrees to Degrees Minutes Seconds does something different from a straight unit conversion. Rather than multiplying your angle by one fixed factor, it peels the number apart in stages: the whole-number part becomes Degrees, whatever fraction of a degree is left over is multiplied by sixty and its whole part becomes Minutes, and whatever fraction of a minute survives that is multiplied by sixty again to become Seconds. Three outputs, three separate skims off the same shrinking remainder.
That layered process is exactly how you would write any fraction in a mixed-radix system: multiply by the next base, keep the integer part as a digit, carry the leftover fraction into the next multiplication. Converting a decimal hour into hours, minutes, and seconds runs the identical algorithm with a clock instead of a compass — 8.75 hours peels into 8 hours, then 0.75 × 60 = 45 minutes exactly, with nothing left for seconds. Degrees, minutes, and seconds simply repeat that base-sixty peel twice, a habit of counting that traces to Babylonian sexagesimal arithmetic long before decimals existed.
One genuine trap sits in negative angles, which cover southern latitudes and western longitudes. Floor rounds toward negative infinity, not toward zero, so floor(−1.5) is −2, not −1 — feed a raw negative decimal straight through this peeling process and the sign can land on the wrong output field. Most working tools sidestep the problem by stripping the sign first, converting the plain magnitude through Degrees, Minutes, and Seconds, and reattaching a hemisphere letter or minus sign to the whole result afterward.
- Enter your angle into Decimal degrees — the single figure a GPS receiver, spreadsheet, or KML file ordinarily reports.
- Degrees returns the whole-number part immediately, with no rounding beyond truncation at the decimal point.
- Minutes shows how many sixtieths of the leftover fraction survive once the whole degree has been removed.
- Seconds carries what remains of that minute down one more base-sixty step, completing the D° M′ S″ reading.
- Read the three outputs left to right as a single figure — Degrees, then Minutes, then Seconds — ready to copy onto a chart, plat, or coordinate field that expects sexagesimal notation.
Worked example — 45.5125° down to the arcsecond
A surveyor's instrument reads a bearing of 45.5125° and the plat calls for degrees-minutes-seconds notation. Typing 45.5125 into Decimal degrees returns Degrees = 45, since the whole-number part is 45 and the leftover fraction is 0.5125. That 0.5125 multiplied by 60 gives 30.75, so Minutes = 30, the whole-number part of 30.75. What is left, 0.75 of a minute, multiplied by 60 gives Seconds = 45 exactly, with nothing further to carry.
The reading 45° 30′ 45″ is the same angle as 45.5125°, just written the way a nautical chart, a total station printout, or a survey plat expects it — this is still the standard notation for latitude and longitude on paper charts and much older field equipment. Run the same three inputs through by hand and every digit matches, because each step only ever operates on the fraction the previous step left behind.
Questions
Why does 0.5125° become 30 minutes rather than 51.25 minutes?
Because the digits after the decimal point are not minutes yet — they are a fraction of one degree, and a degree holds sixty minutes, not a hundred. Multiplying 0.5125 by 60 converts that fraction into the base-sixty system DMS actually uses, giving 30.75, whose whole part is 30. Reading decimal digits as minutes directly is the single most common mistake with this notation; 0.5° is 30′, never 50′.
How is this different from a plain degrees-to-arcminutes conversion?
A degrees-to-arcminutes conversion multiplies the whole angle by 60 and stops, returning one number — 45.5125° becomes 2730.75 arcminutes total. This sheet instead splits the angle into three separate, non-overlapping outputs — 45 whole degrees, 30 whole minutes, and 45 seconds — the layered D° M′ S″ notation rather than a single converted unit.
What happens if I enter a negative decimal degree value, such as a western longitude?
Floor rounds toward negative infinity rather than toward zero, so floor(−1.5) equals −2, not −1, which can push a minus sign onto the wrong field if it is carried straight through. The safer convention, used on most charts and in most software, is to convert the unsigned magnitude through Degrees, Minutes, and Seconds and record the hemisphere or sign separately from the three numbers.
Does the same peeling method convert decimal hours into hours, minutes, and seconds?
Yes — it is the identical base-sixty algorithm applied to time instead of angle. Take the whole hours, multiply the leftover fraction by 60 for minutes, then multiply what remains of that by 60 again for seconds. 8.75 hours peels into 8 hours and 0.75 × 60 = 45 minutes, with a clean zero left for seconds, exactly the pattern this sheet runs on angles.
Why does Seconds occasionally show a long decimal instead of a clean whole number?
Because most decimal-degree inputs are not exact multiples of 1/3600 of a degree, so the arithmetic leaves a genuine fractional arcsecond rather than a rounding artifact. Seconds is carried to eight decimal places for that reason. Values like the golden example's 45.5125°, chosen because it lands on whole degrees, minutes, and seconds, are the exception rather than the rule.
Is degrees-minutes-seconds notation still used, or has decimal degrees replaced it?
Both remain in active use. GPS receivers, spreadsheets, and most software store and display decimal degrees because it is easier to compute with, but nautical charts, land survey plats, and a good deal of older mapping and marine equipment still print coordinates in D° M′ S″, so converting between the two formats stays a routine, ongoing task.