convert latitude and longtitude minutes, seconds into latitude dec

G

Guest

how to convert latitiude and longitude minutes and seconds to latitude and
longitude decimal degrees in excel or access.
 
J

John Vinson

how to convert latitiude and longitude minutes and seconds to latitude and
longitude decimal degrees in excel or access.

How are the d.m.s values stored? In one text field, or (better) three
integer fields? If the latter:

[Deg] + Sign([Deg]) * [Min] / 60 + Sign([Deg]) * [sec] / 3600

If it's one text field like 116°56'48" then you'll need to parse out
the numbers.

John W. Vinson[MVP]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top