Last active
November 4, 2015 21:29
-
-
Save stucka/2d54b106a144fc528453 to your computer and use it in GitHub Desktop.
Excel -- convert DMS / decimal minutes seconds to mapable decimal latitude and longitude / latlong pairs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
=TEXT((VALUE(LEFT(F2,2)+VALUE(MID(F2,3,2))/60)+VALUE(MID(F2,5,2)/3600))*IF(RIGHT(F2,1)="S",-1,1), "0.000000")& ", " & TEXT((VALUE(MID(G2,2,2)+VALUE(MID(G2,4,2))/60)+VALUE(MID(G2,6,2)/3600))*IF(RIGHT(G2,1)="W",-1,1), "0.000000") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment