SOLVETUTORMATH SOLVER

Instrument MI-05-070 · Conversion

Degrees Minutes Seconds Calculator

A theodolite, sextant or telescope setting circle reads angles in degrees, minutes and seconds, not decimals — this splits a decimal-degree angle into all three fields at once.

Instrument MI-05-070
Sheet 1 OF 1
Rev A
Verified
Type 05 — Compound Units SER. 2026-05070

Degrees

40

whole degrees

41 Minutes
21.120 Seconds
The working Every figure verified twice
  1. degrees = floor(abs(40.6892))·if(40.6892 < 0, 0 − 1, 1) = 40
  2. minutes = floor((abs(40.6892) − floor(abs(40.6892)))·60) = 41
  3. seconds = ((abs(40.6892) − floor(abs(40.6892)))·60 − 41)·60 = 21.120
Worksheet log
  1. No entries yet — change an input to log a scenario.

How this instrument works

Splitting a circle into 360 degrees, each degree into 60 minutes, and each minute into 60 seconds is a base-60 (sexagesimal) counting system inherited from Babylonian astronomy roughly 4,000 years ago, and it survives today specifically because so many angle-reading instruments are graduated that way. A surveyor's theodolite vernier, a ship's sextant arc, and the setting circles on an equatorial telescope mount are all marked in degrees, arcminutes and arcseconds — an angle computed as a decimal has to be converted into that same base-60 triple before it matches the instrument in front of you.

The conversion itself works in two stages. First, the whole number of degrees is taken from the decimal angle, keeping the sign (positive or negative) only on that first field. Second, the fractional part of the degree is multiplied by 60 to get arcminutes, of which only the whole number is kept; whatever fraction of an arcminute is left over is multiplied by 60 again to get arcseconds. Minutes and seconds are always reported as positive quantities — the direction of the angle is carried entirely by the sign on the degrees field, exactly as it appears on a printed star chart or survey plat.

An arcsecond is a genuinely small unit: it takes 3,600 of them to make one degree, and one arcsecond is roughly the angle a coin one centimetre across would subtend from about two kilometres away. That resolution matters in astronomy, where stellar positions and parallax measurements are routinely quoted to fractions of an arcsecond, and in precision surveying, where a fraction-of-an-arcsecond error in a bearing can translate into real distance error over a long sight line.

deg=xsign(x)\text{deg} = \lfloor |x| \rfloor \cdot \operatorname{sign}(x)min=(xx)×60\text{min} = \lfloor (|x|-\lfloor|x|\rfloor)\times 60 \rfloorsec=((xx)×60min)×60\text{sec} = \big((|x|-\lfloor|x|\rfloor)\times 60 - \text{min}\big)\times 60
x — the angle in decimal degrees. degrees keeps the whole-number part of x, with the sign of x carried only here. minutes takes the fractional degree remaining, multiplies by 60, and keeps the whole number of arcminutes. seconds takes whatever fraction of an arcminute is left and multiplies it by 60 again. Degrees, Minutes and Seconds together are one angle, read as 40° 41′ 21.120″.
  • Enter the angle in decimal degrees into the Decimal degrees field — it starts at 40.6892 as an example.
  • Read the Degrees field for the whole-number angle, which carries the sign of the original value.
  • Read the Minutes field for the whole number of arcminutes left over, always shown as a positive number.
  • Read the Seconds field for the final remainder in arcseconds, shown to three decimal places.
  • Combine all three as one angle, written 40° 41′ 21.120″, matching how it would appear on an instrument or chart.

Worked example — a 40.6892° altitude reading

An observer notes a star's altitude above the horizon as 40.6892 decimal degrees on a telescope's digital readout, and wants to log it on a paper chart marked in the traditional degrees-minutes-seconds notation instead. Entering 40.6892 into Decimal degrees gives the Degrees field its whole-number part directly: floor(40.6892) = 40, with a positive sign since the original value was positive.

The fractional part, 0.6892 of a degree, is multiplied by 60 to get arcminutes: 0.6892 × 60 = 41.352, and the Minutes field keeps only the whole number, 41. What's left over, 0.352 of an arcminute, is multiplied by 60 again for arcseconds: 0.352 × 60 = 21.120. Read together, the three fields give 40° 41′ 21.120″ — the same angle as 40.6892°, just written in the base-60 notation the chart expects.

Questions

Why does only the Degrees field ever show a negative sign?

Because that's the DMS convention: an angle's direction (above versus below a reference line, or one side of zero versus the other) is carried entirely by the sign on the whole-degree part, while minutes and seconds are always reported as plain positive magnitudes. A reading of −15.25° converts to −15° 15′ 0.000″, not to a degree field with a positive number and negative minutes or seconds — those two fields never carry a sign of their own.

Why use base 60 instead of dividing a degree into 100 minutes?

Convention and instrument design, not mathematics — 60 was the Babylonian counting base, chosen partly because 60 divides evenly by 2, 3, 4, 5, 6, 10, 12, 15, 20 and 30, which made hand calculation and instrument graduation easier long before decimal arithmetic became standard. Surveying and navigation instruments were built around that base-60 scale for centuries, and modern equipment still ships with vernier and digital displays graduated the same way for compatibility with older charts and records.

How small is one arcsecond in practical terms?

About the angle subtended by a one-centimetre object viewed from roughly two kilometres away — small enough that it's invisible to the naked eye but well within the resolution of a good telescope or a precision survey instrument. There are 3,600 arcseconds in one degree and 60 arcseconds in one arcminute, which is why the Seconds field is shown to three decimal places rather than rounded to a whole number.

Can the Minutes or Seconds field ever show 60?

It shouldn't, by construction: minutes is the floor of a value strictly less than 60 (the fractional-degree remainder times 60), and seconds is computed from what's left after minutes is removed, so both stay within 0 up to just under 60. If display rounding ever pushes seconds to something that reads as 60.000, that's a rounding artefact at the displayed precision, not a value the underlying calculation itself produced.

Is this the same notation used for GPS latitude and longitude?

It's the identical degrees-minutes-seconds structure, yes — GPS coordinates are one common application of DMS notation, alongside general angle measurement in astronomy and land surveying. The difference is only in what the angle represents: here it's a general angle such as an altitude or bearing, while a latitude or longitude reading additionally carries a compass direction (N/S or E/W) alongside, or instead of, the sign.

Why do modern GPS units usually show plain decimal degrees instead?

Because decimal degrees are far easier for software to store, compare and do arithmetic on than a three-part base-60 figure, and modern digital instruments no longer need the mechanical convenience that made base 60 practical on physical dials. DMS notation persists mainly on printed charts, older equipment, and in fields like astronomy and surveying where practitioners are trained to read it directly.

References