+ Reply to Thread
Results 1 to 3 of 3

how can i convert degrees/minutes/seconds to decimal degrees?

  1. #1
    Chrissy
    Guest

    how can i convert degrees/minutes/seconds to decimal degrees?

    i have a column of info in degrees/min/sec
    example: 254802N 0503311E

    How or can vert this column to decimal degrees?

  2. #2
    Gary''s Student
    Guest

    RE: how can i convert degrees/minutes/seconds to decimal degrees?

    Help us to help you. Is 254802
    25 degrees - 48 minutes - 02 seconds

    That is can we assume that the first angle only goes to 90?

    --
    Gary''s Student


    "Chrissy" wrote:

    > i have a column of info in degrees/min/sec
    > example: 254802N 0503311E
    >
    > How or can vert this column to decimal degrees?


  3. #3
    JE McGimpsey
    Guest

    Re: how can i convert degrees/minutes/seconds to decimal degrees?

    One way:

    Latitude:

    =TEXT(TEXT(LEFT(A1,6),"00\:00\:00")*24,"00.0000")&MID(A1,7,1)

    Longitude:

    =TEXT(TEXT(MID(A1,9,7),"00\:00\:00")*24,"000.0000")&RIGHT(A1,1)

    Change the "00.0000" and "000.0000" to reflect the number of decimal
    places you want to display.

    In article <[email protected]>,
    Chrissy <[email protected]> wrote:

    > i have a column of info in degrees/min/sec
    > example: 254802N 0503311E
    >
    > How or can vert this column to decimal degrees?


+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1