[Converting Latitude and Longitude from Degrees‑Minutes‑Seconds to Decimal Degrees | Calculation Formula to Avoid Mistakes]
By LRTK Team (Lefixea Inc.)
In practical work that deals with latitude and longitude, the same location can appear shifted or pasting coordinates can fail simply because of differences in input format. A particularly common situation is converting coordinates received in degrees‑minutes‑seconds (DMS) into decimal degrees. Paper documents, field notes, positioning results, annotations on drawings, and reports often use DMS, while map services, coordinate input fields, and various location-processing tools frequently require decimal degrees. Therefore, correctly understanding how to convert latitude/longitude to decimal degrees is not just knowledge — it is a basic routine to prevent everyday mistakes.
The conversion formula from DMS to decimal degrees itself is not difficult if you look only at the equation. However, the points where people actually stumble in the field are not the arithmetic but the surrounding issues: handling signs, misreading minutes and seconds, the order of latitude and longitude, a sense of digit positions, and checking the target system’s input specifications. In other words, knowing the formula alone is insufficient; you need to understand the assumptions before input and how to interpret the results.
This article explains, in a form usable by practitioners without hesitation, everything from the basic formula for converting DMS to decimal degrees to common practical mistakes, how to check results, typical input examples, and how to interpret converted coordinates. Rather than ending with brief explanations, it digs into why mistakes occur and where to look to prevent them. If you want reproducible procedures instead of one-off hacks for converting DMS to decimal degrees, read from the beginning in order.
Table of contents
• Differences between degrees‑minutes‑seconds and decimal degrees
• Formula to convert DMS to decimal degrees
• Confirming the flow with actual conversion examples
• Common mistakes and their causes during conversion
• How to verify that DMS to decimal conversion results are correct
• Interpreting input patterns that commonly cause trouble in practice
• Cautions when using coordinates converted to decimal degrees in work
• How to reliably handle coordinate conversion on site
• Summary
Differences between degrees‑minutes‑seconds and decimal degrees
The first point to grasp is that DMS and decimal degrees are both coordinate representations for the same location. The difference is not the place but the notation. However, because they look quite different, they can feel like different information, and this is often the starting point of misunderstandings in practical work.
DMS expresses an angle in three stages: degrees, minutes, and seconds. For example, the expression 35 degrees 40 minutes 30 seconds means that within the large unit of 35 degrees there are 40 minutes and 30 seconds. This format has long been used in maps, surveying, and position records, and is still often seen in paper forms and explanatory materials. It is easy for humans to read but somewhat unsuited for numerical calculations or system input.
Decimal degrees, on the other hand, represent degrees as a decimal number. For example, 35.675 packs the minutes and seconds into the fractional part of the degree. This format is often used in map search boxes and in data processing for location information because it is straightforward to handle as a numeric value. For calculations, comparisons, copying/pasting, and inter-device interoperability, decimal degrees are more processing-friendly.
An important point here is that minutes and seconds in DMS are subdivisions of an angle, not time. A minute is 1/60 of a degree, and a second is 1/60 of a minute. In other words, 1 degree = 60 minutes, 1 minute = 60 seconds, therefore 1 degree = 3600 seconds. If you do not understand this structure, you might treat minutes as 1/100 or seconds as 1/100 and get a shifted conversion result. A significant proportion of coordinate shifts encountered in the field stem from this misunderstanding of unit scale.
Another important point is that latitude and longitude are different axes. Latitude indicates a north-south position and longitude a east-west position. When handling coordinates within Japan, latitudes typically fall in the late 20s to late 40s, while longitudes often lie roughly in the high 120s to around 150; having this sense makes it easier to spot input errors. For example, with 35 and 139, you can usually assume 35 is latitude and 139 is longitude. Conversely, if 139 were entered as latitude, you would notice something wrong right away.
The difference between DMS and decimal degrees may seem like a matter of appearance, but it directly affects the stability of the whole workflow. Deciding which format to store received coordinates in, what format the input target requires, and how to verify the conversion can greatly reduce rework downstream.
Formula to convert DMS to decimal degrees
The formula to convert DMS to decimal degrees is very simple. The basic equation is: Decimal degrees = degrees + minutes ÷ 60 + seconds ÷ 3600 That’s all. Although the formula is short, correctly understanding what it implies helps avoid hesitation in practical applications.
First, use the degrees as they are. Next, divide minutes by 60 because they are 1/60 of a degree. Then, divide seconds by 3600 because they are 1/3600 of a degree. In this way, degrees, minutes, and seconds are all converted into the same unit — degrees — and summed. The essence of the calculation is unit conversion: convert minutes to degrees and seconds to degrees, then add. With this idea, you can reproduce the formula even without memorizing it.
For example, 35 degrees 30 minutes 00 seconds becomes 35 + 30 ÷ 60 + 0 ÷ 3600 = 35.5. 35 degrees 15 minutes 30 seconds becomes 35 + 15 ÷ 60 + 30 ÷ 3600 = 35.258333…. Minutes and seconds are aggregated into the decimal portion of degrees.
A major practical caution here is the sign. Northern latitudes and eastern longitudes are usually treated as positive, while southern latitudes and western longitudes are negative. For example, if you have 10 degrees 30 minutes south, calculate 10 + 30 ÷ 60 = 10.5 and then make the final result negative: -10.5. Do not make the mistake of only making the minutes negative or subtracting only the seconds. The sign applies to the whole coordinate value. Thinking of it as taking the absolute value from DMS and then applying a minus sign at the end if it is south or west reduces confusion.
Also be prepared to handle cases where seconds include decimals. For instance, 35 degrees 40 minutes 30.5 seconds is not uncommon. The formula is the same: 35 + 40 ÷ 60 + 30.5 ÷ 3600. The presence of decimals does not require a different calculation; simply divide by 3600 as before.
In practice, deciding how many decimal places to keep in the conversion result is another common dilemma. Generally, more decimal digits yield finer positional accuracy. Required precision depends on the work, but it is important to keep as many digits as the input target allows. Rounding too early can slightly shift positions and later cause failure to match other materials. When comparing multiple points or reusing the same point on another day, it is safer to preserve a number of digits close to the original source.
Also keep in mind the reverse conversion. To go from decimal degrees back to DMS, take the integer part as degrees, multiply the fractional part by 60 to get minutes, and multiply the remainder by 60 to get seconds. Knowing the reverse procedure helps you cross-check a converted number against the original notation. The formula is therefore both a forward procedure and a foundation for verification.
Confirming the flow with actual conversion examples
Even if you understand the formula, numbers in front of you can suddenly feel intimidating. Therefore, here are concrete examples that walk through the conversion from DMS to decimal degrees step by step. Showing intermediate steps clarifies where to check during the calculation.
Start with North latitude 35 degrees 40 minutes 30 seconds. Plug into the formula: 35 + 40 ÷ 60 + 30 ÷ 3600. 40 ÷ 60 = 0.666666…, 30 ÷ 3600 = 0.008333…. Summing gives 35.675. Thus, 35°40′30″ N is 35.675 in decimal degrees. This value also feels natural as a latitude within Japan.
Next, convert East longitude 139 degrees 45 minutes 15 seconds: 139 + 45 ÷ 60 + 15 ÷ 3600. 45 ÷ 60 = 0.75, 15 ÷ 3600 = 0.004166…. The total is 139.754166…. Keeping the fractional part to the necessary number of digits yields 139.754166 or 139.754167, for example. The important point is not to change rounding rules midway. If the number of decimal digits varies by project, form, or person, later reconciliation becomes difficult.
Some simpler examples: 35°30′00″ → 35.5 35°15′00″ → 35.25 35°45′00″ → 35.75 Remembering these round values helps with quick plausibility checks: 30 minutes = 0.5, 15 minutes = 0.25, 45 minutes = 0.75.
It is also useful to have a feel for seconds’ contribution: 30 seconds = 30 ÷ 3600 ≈ 0.008333, 15 seconds ≈ 0.004167, 1 second ≈ 0.000278. Seconds look small but can be meaningful for position accuracy. Especially when comparing close points or handling boundary areas, omitting seconds can cause unexpected shifts.
Check examples for south latitudes and west longitudes too. For West longitude 122 degrees 25 minutes 10 seconds: 122 + 25 ÷ 60 + 10 ÷ 3600. 25 ÷ 60 = 0.416666…, 10 ÷ 3600 = 0.002777…. Total ≈ 122.419444…. Since it is west longitude, the final decimal degree is -122.419444…. Forgetting to apply the minus sign would treat it as east longitude and place the point on the opposite side of the globe, so sign checks are critical.
In practice, DMS can be written in many ways: 35 40 30, 35°40′30″, 35-40-30, 35 degrees 40 minutes 30 seconds — they all mean the same thing. The important thing is to identify which number is degrees, which is minutes, and which is seconds. If you see three numbers in a row, they are usually degrees, minutes, and seconds in that order, but if a document’s layout is corrupted or symbols are lost during pasting, use surrounding context and numeric magnitude to confirm. Developing a habit of checking context is important.
Although conversion seems straightforward, applying concrete examples like these makes it clear where numbers go, when to apply the sign, and whether the result looks natural. That is the practical understanding you can use on the job.
Common mistakes and their causes during conversion
Most mistakes in converting DMS to decimal degrees arise not from errors in the formula itself but from inadequate checking of assumptions. Underestimating this leads to cases where calculations are correct but the results are unusable.
The most frequent error is treating minutes and seconds as simple decimals and concatenating them. For example, mistaking 35°40′30″ as 35.4030. This looks plausible at a glance but is wrong: 40 minutes is not 0.40 degrees and 30 seconds is not 0.30 degrees. Minutes must be divided by 60 and seconds by 3600. Failing to understand this leads to easy misconversion.
Another common mistake is dividing only the minutes by 60 and forgetting the seconds. For instance, computing 35 + 40 ÷ 60 and omitting the 30 seconds. This may not be obvious for crude position checks but is unacceptable where precision matters. When comparing nearby points or overlaying with existing data, the omission will show up as a discrepancy.
The third is sign mistakes for south latitudes and west longitudes. Although absolute value calculations may be correct, failing to apply a minus sign or applying it only to latitude and not longitude can cause large displacements. When working with international or wide-area datasets, be especially vigilant. If you are used to working only in Japan, you may subconsciously assume both latitude and longitude are positive and miss sign indications when the data source changes.
Fourth is swapping latitude and longitude. Some input fields expect latitude first; others expect longitude first. Copying coordinates into a different system without confirming the order can cause the point to jump to an entirely different location. This is particularly easy to miss when the format is just two numbers separated by a comma; visually it’s not obvious which is which.
Fifth is over-rounding digits. Shortening decimal places too aggressively for readability can introduce differences when overlaying multiple datasets. While rounding to suit the work is necessary, keeping only the shortened display value and discarding the original precision is risky. Treat display rounding and storage precision separately.
Sixth is misreading symbols in documents. When degree, minute, and second symbols are hard to read, someone might misinterpret 35°40′30″ as 35.40.30, for example. Copy/paste corruption or character encoding issues can remove symbols and leave a string of numbers. In such cases, reconstructing the likely meaning using reasonable ranges helps: latitudes within 90, longitudes within 180 will catch many anomalies.
Seventh is entering decimal degrees where the input expects DMS, or vice versa. This is a pre-conversion error but extremely frequent. If the unit indicator is small or the operator is in a hurry, it’s easy to miss. If coordinates don’t line up, first suspect the expected input format.
A common thread among these mistakes is omission of checks rather than errors in the arithmetic. That’s why it’s important to define the conversion task not just as a calculation but as a sequence that includes input verification, unit conversion, sign checks, and plausibility checks.
How to verify that DMS to decimal conversion results are correct
Being able to judge whether a converted number is correct greatly increases confidence in the work. The trick to checking is not to add complicated methods but to always run simple verifications.
The most effective check is to look at the value ranges. Latitude must be within -90 to 90 and longitude within -180 to 180. Values outside these bounds are surely wrong. Also, for locations in Japan, latitudes are often in the late 20s to late 40s and longitudes in the high 120s to around 150. If a supposed Japanese latitude is in the 130s, suspect that latitude and longitude were swapped.
Next, use an approximate check based on minutes and seconds. For 35°40′30″, you’d expect a little more than 35 degrees but less than 35.7; since 40 minutes ≈ 0.667 degrees and 30 seconds ≈ 0.008 degrees, the total should be around 35.675. With such an estimate you can quickly spot values like 35.403 or 35.943 as erroneous.
Performing the inverse conversion is also useful. Convert the decimal degrees back to DMS and see whether it matches the original values. Exact matches are not necessary; if the result returns to the original DMS within rounding error, you can be fairly confident. This reverse check is especially helpful when you receive conversion results from others.
Comparing with known coordinates is another practical method. If you have known points around the site or past records, check whether the converted coordinate is nearby. If it’s tens of kilometers away, revisit the original data interpretation or the coordinate reference assumptions. Even with the correct formula, misinterpreting the source data will produce incorrect results.
It’s also helpful to check latitude and longitude separately. Treating them as a single string can allow one-sided errors to slip through. Verify that latitude makes sense as a latitude and longitude makes sense as a longitude; this reduces oversight, particularly in cases where only one of the two needs a sign.
The goal of verification is not to perform perfect duplicate calculations every time but to standardize light checks: range checks, rough estimates from minutes/seconds, order checks, and inverse conversion when needed. These simple steps will prevent most basic errors.
Interpreting input patterns that commonly cause trouble in practice
In real work you won’t always receive neatly formatted DMS. You might encounter handwritten notes, old reports, values transcribed from images, or spreadsheet columns that have become misaligned. The crucial skill is to not be swayed by appearance and to deduce what the numbers represent.
For example, if you see three numbers separated by spaces like 35 40 30, they normally represent degrees, minutes, and seconds. However, if other columns are present, 35.4030 could be a single decimal value broken into parts. Check the entire source: if multiple rows show the three-number pattern consistently, you can be more confident that it’s DMS.
Hyphen-separated formats like 35-40-30 are similar. The leading hyphen could be a minus sign or simply a separator. You can tell by whether hyphens appear only at the start or between all three numbers. Authors often use idiosyncratic separators, so be cautious not to misread them by habit.
Seconds may be omitted. If you see 35 degrees 40 minutes without seconds, treat seconds as 0: 35 + 40 ÷ 60 + 0 ÷ 3600. Conversely, minutes might contain decimals, such as 35 degrees 40.5 minutes; in that case, the minutes already include seconds, so compute 35 + 40.5 ÷ 60. Trying to further decompose that into seconds would double-count.
More confusing are documents that mix DMS and decimal degrees. A header might say DMS but values like 35.675 may appear, or a column labeled decimal may contain values like 35 40 30. In such cases, prioritize the actual shape of the values rather than the label.
Automatic conversions in spreadsheets are also troublesome. DMS with symbols can be interpreted as dates or times, leading zeros may be dropped, or decimals may be rounded. Always check that pasted coordinates look the same before and after pasting. Preserving the original form is essential even before any numeric calculation.
For practitioners, the key is not to assume clean inputs. Coordinates change shape as they move between field, documents, devices, and reports. Developing a resilient reading method that tolerates these changes will dramatically improve reproducibility of conversions.
Cautions when using coordinates converted to decimal degrees in work
Even if you convert DMS to decimal degrees correctly, careless use afterwards can still cause trouble. In practice you need to consider where converted coordinates are entered, how they are stored, and how they are shared.
First, check the required order for entry. Some systems expect latitude then longitude, others longitude then latitude. Both orders can form valid numbers, so swapping them may not trigger an error and will simply display the point elsewhere. Always read input labels, descriptions, and sample values, and document a fixed rule for the order.
Next, decide how to handle decimal places. Shortening decimals for display is fine, but keep the original precision in storage. People tend to use the same value for display, sharing, and storage, but it’s better to separate them. For coordinates that will be reused, avoid irreversible rounding.
Also retain the original source document. If you only store the converted decimal degrees, later you cannot determine the original assumptions: whether it was north/east, whether seconds had decimals, or what rounding was applied. For verifiability, keep the original DMS notation alongside the converted decimal, and if needed record the conversion date and person.
When sharing coordinates, explicitly state the units and format. Simply writing a coordinate can leave recipients unsure whether it’s DMS or decimal degrees. Include labels like “decimal degrees”, “DMS”, or “latitude, longitude order” in materials to prevent misunderstandings. Coordinates are short numbers but easily misinterpreted without context.
When handling multiple sites or multiple points, do not leave conversion rules to individual judgment. If each person uses different decimal places or ordering, integrating data becomes problematic. At minimum, standardize the formula used for DMS→decimal, the number of decimal places, signs, ordering, and storage format within your organization.
Coordinates look like simple numbers but represent meaningful locations such as a site position, camera location, survey point, or report point. Therefore, treat converted values not just as calculation results but as business reference values.
How to reliably handle coordinate conversion on site
In practice, people who consistently follow basic procedures are more reliable than those who simply know complex theory. The same applies to converting DMS to decimal degrees: having a procedure you can execute without hesitation determines quality.
A recommended routine is to check four things before conversion. First: is the notation really DMS? Second: what is the order of latitude and longitude? Third: is it south latitude or west longitude? Fourth: does the target require decimal degrees? Verifying these four items before calculation prevents many mistakes.
Always perform calculations in the same way: keep degrees as-is, divide minutes by 60, divide seconds by 3600, and if south or west apply a minus sign to the final value. Fix this sequence so you don’t vary methods based on momentary intuition. Although you may be tempted to do mental math as you gain experience, for tasks involving transcription it is often safer to write down intermediate steps.
Make a habit of checking plausibility after conversion. If working in Japan and you see longitude in the 30s and latitude in the 130s, the order is probably reversed. If the source was 35°40′, expect a decimal in the mid‑30s. Such quick plausibility checks greatly reduce simple mistakes. Incorporate verification into your routine so checking becomes automatic.
Coordinate conversion rarely stands alone on site; it is linked with photos, drawings, positioning results, and reports. Rather than treating coordinates in isolation, consider which workflow stage the value will be used in; this helps determine required precision and storage method. For instance, sharing a general location has different accuracy needs than recording an exact survey point.
It also helps to standardize formats across the team. When reading, converting, and reusing coordinates from positioning through recording and sharing, having consistent input and output formats greatly improves efficiency.
Converting coordinates is often treated as simple arithmetic, but in practice it is a foundation for accurate information transfer. That is why understanding conversion procedures alongside assumptions, validation, and storage is the most effective way to prevent errors.
Summary
The basic rule for converting DMS to decimal degrees is simply: Decimal degrees = degrees + minutes ÷ 60 + seconds ÷ 3600 However, what really matters in practice is not just knowing the formula but being able to consistently apply unit conversion of minutes and seconds to degrees, handle signs for south and west, maintain correct latitude/longitude order, confirm input format requirements, and validate the converted results. If you can operationalize this flow, converting DMS to decimal degrees becomes a stable, repeatable daily task rather than a difficult operation.
Being able to convert DMS to decimal degrees without hesitation makes map checks, organizing field records, sharing positioning results, and reconciling drawings and reports much smoother. Conversely, if this foundation is unclear, positional shifts and transcription errors can propagate downstream and increase verification costs. Though it appears to be a small calculation, this task affects the accuracy of the entire workflow.
When working with high-precision position information on site, it is important not only to convert coordinates but to share the obtained coordinates in an easily usable form and integrate them into operations. With LRTK, for example, you can attach it to an iPhone for high-precision positioning and make location information easier to use on site. If you build your procedures on an understanding of reading latitudes and longitudes and decimal degrees, reviewing and sharing positioning results becomes smoother. Don’t stop at merely reading coordinates; if you want to improve field operational efficiency and accuracy, it is effective to organize workflows that include high-precision positioning systems.
Next Steps:
Explore LRTK Products & Workflows
LRTK helps professionals capture absolute coordinates, create georeferenced point clouds, and streamline surveying and construction workflows. Explore the products below, or contact us for a demo, pricing, or implementation support.
LRTK supercharges field accuracy and efficiency
The LRTK series delivers high-precision GNSS positioning for construction, civil engineering, and surveying, enabling significant reductions in work time and major gains in productivity. It makes it easy to handle everything from design surveys and point-cloud scanning to AR, 3D construction, as-built management, and infrastructure inspection.


