Return
to tool
Maps & Navigation

Degrees Minutes Seconds Calculator

This degrees minutes seconds calculator converts between DMS, decimal degrees and degrees decimal minutes — all three notations, in any direction, updating as you type. It handles hemisphere letters and negative signs, which is where most coordinate conversions go wrong, and it will add and subtract angles in DMS without making you drop to decimal first. Below are the reference charts no other degree minute second calculator offers: common angles, ground distance per second, and landmark coordinates in all three formats.

Coordinate Notation Converter

Edit any panel. The other two update as you type.

Degrees minutes seconds (DMS)
Degrees decimal minutes (DDM)

Latitude

DMS
DDM

Longitude

DMS
DDM

At 6 places, about 11 cm on the ground.
Chart plotters, aviation software and GIS packages each expect a different one.

Add or subtract angles

Base-60 carrying, done for you. Or sum and average a whole list of observations.

Open the DMS arithmetic panel
Accepts any notation this page handles: 40° 26' 46", 40 26 46, 40:26:46.0, or plain decimal degrees.

What degrees, minutes and seconds mean

Degrees minutes seconds is a sexagesimal notation: each degree divides into 60 minutes, and each minute into 60 seconds. It is the same base-60 structure as hours, minutes and seconds of time, inherited from Babylonian astronomy, and the shared vocabulary is why the two are so often confused.

The symbols matter. A degree uses °, a minute uses a prime ′ (usually typed as an apostrophe), and a second uses a double prime ″ (usually typed as a straight double quote). So 40° 26′ 46″ reads as forty degrees, twenty-six minutes, forty-six seconds. Written out in decimal that is 40.446111 degrees — the same angle, different notation.

One degree of latitude is about 111 kilometres anywhere on Earth, so one minute is roughly 1.85 km and one second about 31 metres. That relationship is worth internalising because it tells you immediately how much precision a given notation carries, which is the subject of the ground-distance section below.

Converting DMS to decimal degrees

Divide the minutes by 60, divide the seconds by 3600, and add both to the degrees. Apply the sign at the end, after the arithmetic — applying it first and then adding positive minutes is a classic error that produces a point on the wrong side of the equator.

  1. Take the degrees as they are.
  2. Divide the minutes by 60.
  3. Divide the seconds by 3,600.
  4. Add all three together.
  5. If the coordinate is south or west, negate the whole result — not just the degrees.

Worked example: 40° 26′ 46″. The minutes give 26 ÷ 60 = 0.433333. The seconds give 46 ÷ 3600 = 0.012778. Adding: 40 + 0.433333 + 0.012778 = 40.446111°. For a southern coordinate such as 33° 51′ 24.4″ S, do the same arithmetic to get 33.856778 and then negate it to −33.856778.

Converting decimal degrees to DMS

Work with the absolute value and split it apart in stages. The whole-number part is the degrees. Multiply what is left by 60 — the whole-number part of that is the minutes. Multiply what remains by 60 again and that is the seconds.

Worked example: 40.446111°. The degrees are 40, leaving 0.446111. Multiplied by 60 that is 26.76666, so the minutes are 26, leaving 0.76666. Multiplied by 60 that is 46.0, so the seconds are 46. The answer is 40° 26′ 46″.

One trap is worth naming because it produces visibly wrong output. If you round seconds to one decimal place and the result lands on 60.0, you must carry: 12.999999° should display as 13° 0′ 0.0″, never as 12° 59′ 60.0″. The same applies if carrying pushes minutes to 60. Several tools get this wrong at the boundary.

The third format: degrees and decimal minutes

There is a third notation that trips people up because it looks like DMS with a piece missing. Degrees and decimal minutes, or DDM, keeps the degrees and minutes but writes the seconds as a fraction of a minute instead: 40° 26.767′ rather than 40° 26′ 46″.

It exists because marine and aviation GPS standardised on it. NMEA sentences — the data format almost every GPS receiver emits — carry position in DDM, so chart plotters, autopilots and handheld marine units display it that way. If a coordinate has exactly two parts and the minutes have a decimal point, it is DDM, and reading it as DMS will put you roughly a mile out.

Converting is straightforward: decimal minutes are just minutes plus seconds ÷ 60. So 26′ 46″ becomes 26 + 46÷60 = 26.767′. The calculator above shows all three notations simultaneously so the distinction is visible rather than something to remember.

NotationExampleWhere you meet itNote
Decimal degrees (DD)40.446111Spreadsheets, code, web mapsEasiest to compute with
Degrees minutes seconds (DMS)40° 26' 46.0"Surveying, astronomy, land recordsTraditional; most compact to read aloud
Degrees decimal minutes (DDM)40° 26.767'Marine and aviation GPSStandard on chart plotters and NMEA
Radians0.705918Trigonometry, programming mathsWhat sin() and cos() actually take
Gradians44.940123European surveying (rare)400 to a full circle instead of 360

Signs, hemispheres and the N/S/E/W problem

A coordinate can carry its hemisphere in two mutually exclusive ways: a letter (N, S, E, W) or a sign on the number. Mixing the two is the single most common cause of a point landing in the wrong hemisphere, and no calculator on this SERP addresses it.

The convention is that north and east are positive, south and west negative. So 33° 51′ 24.4″ S is −33.856778 in decimal, and 74° 2′ 40.2″ W is −74.044500. Writing −33.856778 S is redundant but harmless; writing −33.856778 N is contradictory, and different software resolves that contradiction differently. The calculator above always shows the sign and the letter together for exactly this reason.

DirectionSignLetterDecimal exampleDMS example
North latitudePositiveN+51.507451° 30' 26.6" N
South latitudeNegativeS-33.856833° 51' 24.4" S
East longitudePositiveE+151.2153151° 12' 55.1" E
West longitudeNegativeW-74.044574° 2' 40.2" W
EquatorZero0.00000° 0' 0"
Prime meridianZero0.00000° 0' 0"
Latitude range-90 to +9090° S to 90° N
Longitude range-180 to +180180° W to 180° E

Doing arithmetic in DMS

Adding and subtracting angles in DMS is base-60 arithmetic, and it is genuinely useful — surveyors average repeated observations, astronomers stack offsets, and navigators add bearings. Every tool on this SERP makes you convert to decimal, do the sum, and convert back.

Adding works right to left with carrying at 60. Take 45° 30′ 45″ plus 20° 45′ 30″. The seconds give 75, which is 1′ 15″, so write 15″ and carry one minute. The minutes give 30 + 45 + 1 = 76, which is 1° 16′, so write 16′ and carry one degree. The degrees give 45 + 20 + 1 = 66. The answer is 66° 16′ 15″.

Subtraction borrows the same way: if the seconds you are subtracting are larger, borrow a minute as 60 seconds. The arithmetic panel in the calculator above does this directly, including a mode for summing and averaging a list of values, which is the form the task actually takes in survey work.

How much ground a second covers

Precision in coordinates is not abstract — each decimal place or each arcsecond corresponds to a real distance, and knowing which is which tells you how many digits to keep.

One degree of latitude is about 111.32 km everywhere, because meridians are great circles. One minute is therefore about 1.852 km, which is exactly where the nautical mile comes from — it was defined as one minute of latitude. One second is about 31 metres.

Longitude behaves differently. A degree of longitude is 111 km at the equator but narrows toward the poles as the meridians converge, reaching zero at the pole itself. At 60° north or south it is exactly half the equatorial value. This is why a fixed decimal precision means different real-world accuracy depending on where you are, and why survey work states a datum and a projection rather than relying on raw degrees.

Decimal placesPrecisionGround distance (latitude)Useful for
0111 kmRegion or city
10.1°11 kmRegion or city
20.01°1.11 kmRegion or city
30.001°111 mStreet or building
40.0001°11 mStreet or building
50.00001°1.1 mSurvey grade
60.000001°11.1 cmSurvey grade
UnitMetricImperialNote
1° of latitude111.32 km69.17 miConstant everywhere
1' of latitude1.852 km1.15 miOne nautical mile, by definition
1" of latitude30.9 m101 ftAbout a cricket pitch
1° of longitude at equator111.32 km69.17 miShrinks toward the poles
1° of longitude at 45°78.7 km48.9 miRoughly cos(45°) x equatorial
1° of longitude at 60°55.7 km34.6 miExactly half the equatorial value
1° of longitude at 90°0 km0 miAll meridians meet at the pole

Decimal fractions as minutes and seconds

The fractional part of a decimal degree, converted. This is the lookup that turns a decimal you have been given into something you can read aloud.

Decimal fractionAs minutes and secondsTotal minutesTotal seconds
0.0010' 3.6"0.06'3.6"
0.0050' 18"0.3'18"
0.010' 36"0.6'36"
0.0251' 30"1.5'90"
0.053' 0"3'180"
0.16' 0"6'360"
0.1257' 30"7.5'450"
0.212' 0"12'720"
0.2515' 0"15'900"
0.318' 0"18'1080"
0.33333320' 0"20'1200"
0.424' 0"24'1440"
0.530' 0"30'1800"
0.636' 0"36'2160"
0.66666740' 0"40'2400"
0.7545' 0"45'2700"
0.848' 0"48'2880"
0.954' 0"54'3240"
0.9557' 0"57'3420"
0.9959' 24"59.4'3564"

Minutes as decimal degrees

MinutesDecimal degreesSecondsNote
1'0.016666760"
2'0.0333333120"
5'0.0833333300"
10'0.1666667600"
15'0.25900"
20'0.33333331200"
25'0.41666671500"
30'0.51800"
35'0.58333332100"
40'0.66666672400"
45'0.752700"
50'0.83333333000"
55'0.91666673300"
60'13600"= 1 full degree

Seconds as decimal degrees

SecondsDecimal degreesMinutesNote
1"0.000277780.0167'
5"0.001388890.0833'
10"0.002777780.1667'
15"0.004166670.25'
20"0.005555560.3333'
30"0.008333330.5'
36"0.010.6'
45"0.01250.75'
60"0.016666671'= 1 full minute

Common angles in DMS

The angles that turn up repeatedly in trigonometry, surveying and construction setting-out, in every notation.

DegreesDMSTotal minutesTotal seconds
7.57° 30' 0"450'27000"
1515° 0' 0"900'54000"
22.522° 30' 0"1350'81000"
3030° 0' 0"1800'108000"
3636° 0' 0"2160'129600"
4545° 0' 0"2700'162000"
5050° 0' 0"3000'180000"
6060° 0' 0"3600'216000"
67.567° 30' 0"4050'243000"
7272° 0' 0"4320'259200"
7575° 0' 0"4500'270000"
9090° 0' 0"5400'324000"
120120° 0' 0"7200'432000"
135135° 0' 0"8100'486000"
144144° 0' 0"8640'518400"
180180° 0' 0"10800'648000"
270270° 0' 0"16200'972000"
360360° 0' 0"21600'1296000"

Landmark coordinates in all three notations

The same positions written three ways, so you can see the notations side by side against places you recognise. Coordinates are approximate centre points.

PlaceDecimal degreesDMSDDM
Null Island (0,0)0.000000, 0.0000000° 0' 0" N, 0° 0' 0" E0° 0' N, 0° 0' E
Royal Observatory, Greenwich51.476852, -0.00050051° 28' 36.7" N, 0° 0' 1.8" W51° 28.611' N, 0° 0.03' W
Eiffel Tower, Paris48.858370, 2.29448148° 51' 30.1" N, 2° 17' 40.1" E48° 51.502' N, 2° 17.669' E
Statue of Liberty, New York40.689247, -74.04450240° 41' 21.3" N, 74° 2' 40.2" W40° 41.355' N, 74° 2.67' W
Great Pyramid of Giza29.979235, 31.13420229° 58' 45.2" N, 31° 8' 3.1" E29° 58.754' N, 31° 8.052' E
Christ the Redeemer, Rio-22.951916, -43.21048722° 57' 6.9" S, 43° 12' 37.8" W22° 57.115' S, 43° 12.629' W
Sydney Opera House-33.856784, 151.21529733° 51' 24.4" S, 151° 12' 55.1" E33° 51.407' S, 151° 12.918' E
Summit of Mount Everest27.988056, 86.92527827° 59' 17.0" N, 86° 55' 31.0" E27° 59.283' N, 86° 55.517' E

Where DMS is actually used

This notation serves two largely separate audiences who rarely read each other’s material, and no page currently ranking for this term addresses both. Knowing which one you are in tells you which parts of this page matter.

Geographic coordinates

Latitude and longitude are the most common encounter. Land registry records, nautical charts, aviation waypoints, geocaching listings and older survey documents all use DMS, while web maps, spreadsheets and code overwhelmingly use decimal degrees. Converting between them is the routine task, and the hemisphere handling above is what makes it reliable. If what you need is projected grid coordinates rather than a different notation, use our lat/long to northing and easting converter, which handles coordinate systems and datums.

Angular measurement in trigonometry and surveying

Here DMS describes any angle, not a position on Earth. Theodolites and total stations read in degrees, minutes and seconds; astronomical coordinates use arcminutes and arcseconds for declination; and machine-shop and optical tolerances are frequently specified in arcminutes. The common-angles table and the arithmetic panel serve this audience rather than the geographic one.

Aviation and marine navigation

A third case sits between them and mostly uses DDM. NMEA GPS output, chart plotters and flight management systems present degrees and decimal minutes, so a coordinate copied from a plotter into a mapping tool needs converting before it will plot correctly. This is the conversion that puts vessels a mile off station when it is done wrong.

Astronomy

Declination is measured in degrees, arcminutes and arcseconds exactly as terrestrial latitude is, while right ascension uses hours, minutes and seconds of time — a completely different scale where one hour equals fifteen degrees. Mixing the two is a distinct and common error, and worth checking before assuming a DMS converter applies.

Who uses this and why

Surveyors and civil engineers

Instruments read in DMS and deliverables are frequently required in decimal degrees, so the conversion is constant. The arithmetic panel matters most here — averaging repeated observations is routine and doing it by dropping to decimal and back introduces rounding at every step. For drawing and site-plan work, the scale factor calculator covers the other half of the job.

Pilots, sailors and navigators

Moving coordinates between chart plotters (DDM), charts (DMS) and planning software (decimal). The three-panel layout exists so all three are visible at once rather than requiring two separate conversions.

Students in trigonometry and geometry

DMS appears in angle work well before it appears in mapping. The common-angles table and the worked conversions are written for that context, where the question is about an angle rather than a place.

GIS analysts and developers

Parsing coordinates out of legacy records into decimal degrees for a database or an API. The multiple output formats and the copy-as-decimal-pair button exist for this workflow, where the destination dictates the format.

Geocachers and outdoor users

Cache listings and handheld GPS units disagree about notation constantly, and a misread DDM value is a long walk in the wrong direction. The precision table answers how many digits actually matter on the ground.

Frequently Asked Questions

How do you convert degrees minutes seconds to decimal degrees?

Divide the minutes by 60, divide the seconds by 3,600, and add both to the degrees. So 40° 26′ 46″ is 40 + 0.433333 + 0.012778 = 40.446111°. Negate the result afterwards if the coordinate is south or west.

How do you convert decimal degrees to DMS?

The whole number is the degrees. Multiply the remainder by 60 to get minutes, then multiply what is left by 60 again to get seconds. For 40.446111°: 40 degrees, 0.446111 × 60 = 26.767 so 26 minutes, and 0.767 × 60 = 46 seconds.

What is 40.446111 in degrees minutes seconds?

It is 40° 26′ 46″, or 40° 26.767′ in degrees decimal minutes. That works out to roughly the position of the Cleveland area in Ohio if read as a northern latitude.

How many minutes and seconds are in a degree?

There are 60 minutes in a degree and 60 seconds in a minute, so 3,600 seconds in a degree. It is the same base-60 structure as hours and minutes of time, which is why the units share names.

What is DDM and how is it different from DMS?

Degrees decimal minutes keeps the degrees and minutes but writes seconds as a decimal fraction of a minute — 40° 26.767′ rather than 40° 26′ 46″. Marine and aviation GPS use it as standard, so a coordinate with a decimal point in the minutes is almost certainly DDM.

How do I write southern or western coordinates?

Either with a letter or with a negative sign, but not both meaning different things. South and west are negative, so 33° 51′ 24″ S is −33.856778 in decimal. Mixing a negative sign with an N or E letter is contradictory and different software resolves it differently.

How far is one second of latitude on the ground?

About 31 metres, or roughly 100 feet. One minute of latitude is about 1.852 km, which is exactly where the nautical mile comes from — it was originally defined as one minute of latitude.

Can I add and subtract angles in degrees minutes seconds?

Yes, using base-60 carrying. 45° 30′ 45″ plus 20° 45′ 30″ gives 66° 16′ 15″, because the 75 seconds carry a minute and the 76 minutes carry a degree. The arithmetic panel above does this directly, including summing and averaging a list.

How many decimal places do I need for GPS coordinates?

Five places gives about a metre, which is finer than consumer GPS accuracy, and six gives about 11 cm. Four places, roughly 11 metres, is enough to identify a building; two places only narrows it to about a kilometre.

Why do two calculators give slightly different seconds?

Almost always rounding at the boundary. If seconds round to 60.0, a correct tool carries into the minutes and shows 13° 0′ 0″ where a careless one shows 12° 59′ 60″. Differences beyond that usually mean one tool is truncating rather than rounding.

Is a degree of longitude the same distance as a degree of latitude?

Only at the equator. Latitude degrees are about 111 km everywhere, but longitude degrees narrow toward the poles as the meridians converge — at 60° north they are half the equatorial width, and at the pole they are zero.

Mini About Us

We built the Degrees Minutes Seconds Calculator because every tool ranking for this search converts one value and stops: no DDM, no hemisphere handling, no arithmetic. This one shows all three notations at once, carries correctly at the 60-second boundary, and adds and averages angles the way surveyors actually need. This site is a part of the ads4good Network.

Read more about Utility Commons here