Latitude and longitude Issues
Degrees Minutes Seconds and Decimal Degrees
Latitude and longitude values are report in several formats
- Degrees Minutes Second - DMS
- Decimal Degrees - D.D
- Decimal Minutes - DM.s
- and others
Computers like Decimal Degrees but many times on maps we want DMS written out
Decimal Degree(D.d) to DMS
- you will just move the D. to the D of DMS - D. = D
- take the .d and multiple it by 3600 to get the number of seconds .d X 3600 = total number of seconds
- take the total number of seconds and divide by 60 the result of this is a quotient
- this quotient is Minute decimal seconds or M.s
- the M. is the M in DMS M. = M
- the .s must be converted to seconds again so you multiple the .s X 60 and you have S - .s X 60 = S
Example
- D.d = 45.6539
- D. = 45 - D = 45
- .d = 0.6539
- .d X 3600 = total seconds - .6539 X 3600 = 2354.04 total seconds
- M.s is the quotient of total seconds / 60 2354.04 / 60 = 39.2341667 M.s = 39.2341667
- M. = M - M. = 39 - M = 39
- at this point D = 45, S = 39
- convert the decimal of the quotient to seconds .s = .2341667 .s X 60 = seconds .234166 X 60 = 14.05 seconds
- answer is D = 45, M = 39, S = 14.05 or 45 39' 14.05'
DMS to Decimal Degree(D.d)
- The D in DMS is equal to the D. in D.d so D = D.
- The .d is equal to the total seconds / 3600
- .d = (M X 60 + S) / 3600
- D.d = D. + .d
Example
- -121 45' 8" to D.d
- D = -121 - D = sign D. - D. = - 121
- .d = (M X 60 + S)/3600 .d = (45 X 60 + 8) /3600 .d = 2708/3600 - .d = .75222
- D.d = sign |D.| + .d - D. = -121 - D.d = - |-121| + .7522 = -121.7522