PDA

View Full Version : Converting Longitude and Latitude into Meters


Solistics
Dec2-10, 03:02 PM
Hi, I'm trying to convert latitude and longitude into meters (x,y). I was thinking of UTM however I don't understand the equations as the ones i've seen just go on forever. Could somone help me understand how to use these equations?

heres the website that i've been trying to understand: http://www.uwgb.edu/dutchs/UsefulData/UTMFormulas.HTM

Thanks

NobodySpecial
Dec2-10, 03:16 PM
How accurately do you need to do it and over what area?
It may be enough to just use the X,Y position (in your chosen coord system) of a nearby lat/long point and just do differences from there assuming the earth is flat

Solistics
Dec3-10, 01:54 PM
The area is fairly small as I'm using this for an autonomous robot application so the accuracy i'm trying to reach is as presice as I can (a few meters). I'm giving it points that it has to go to and it has a GPS to give it longitude and Latitude. By converting longitude and latitude to meters would make my life a lot easier to work.

awkward
Dec5-10, 07:19 AM
Choose a latitude \phi_0 and longitude \theta_0 as the origin of your local coordinate system, then

y = R \; \Delta \phi
and
x = R \; \Delta \theta \; \cos(\phi_0)

where R = the radius of the earth in your chosen units, with latitude and longitude in radians.