If you were Registered and logged in, you could reply and use other advanced thread options
Hi all,
i have a problem in converting X,Y to Lat Long in the following
condition.
I've been given 2 points with coordinates and .
Now while mapping the rectangular area covered by these 2 points on to
the computer screen, how do i calculate the exact kilometer/miles value
between those points corresponding to the pixels value at the point of
my mouse click, considering the spherical nature of the earth's
surface.
i know the formulae to convert Lat long to Kms which is given below.
d=acos(sin(lat1)*sin(lat2)+cos(lat1)*cos(lat2)*cos(lon1-lon2))
using this formulae i can find the distance between the pts and
linearly map the Kms/miles on the rectangular area covered by the 2 pts
and find the lat long. but this is not accurate because of the
spherical nature of the earth. can anyone plz help me to do the same
accurately.
Thanks,
Su
i have a problem in converting X,Y to Lat Long in the following
condition.
I've been given 2 points with coordinates and .
Now while mapping the rectangular area covered by these 2 points on to
the computer screen, how do i calculate the exact kilometer/miles value
between those points corresponding to the pixels value at the point of
my mouse click, considering the spherical nature of the earth's
surface.
i know the formulae to convert Lat long to Kms which is given below.
d=acos(sin(lat1)*sin(lat2)+cos(lat1)*cos(lat2)*cos(lon1-lon2))
using this formulae i can find the distance between the pts and
linearly map the Kms/miles on the rectangular area covered by the 2 pts
and find the lat long. but this is not accurate because of the
spherical nature of the earth. can anyone plz help me to do the same
accurately.
Thanks,
Su
> d=acos(sin(lat1)*sin(lat2)+cos(lat1)*cos(lat2)*cos(lon1-lon2))
The above formula takes into account he spherical form of the earth.
d = sqr ( ( dLat * dLat) + (dLong * dLong)*cos meanLat) This one doesn't.
JH
1146857422.797768.287130@i40g2000cwc.googlegroups.com...
> Hi all,
> i have a problem in converting X,Y to Lat Long in the following
> condition.
> I've been given 2 points with coordinates and .
> Now while mapping the rectangular area covered by these 2 points on to
> the computer screen, how do i calculate the exact kilometer/miles value
> between those points corresponding to the pixels value at the point of
> my mouse click, considering the spherical nature of the earth's
> surface.
> i know the formulae to convert Lat long to Kms which is given below.
> d=acos(sin(lat1)*sin(lat2)+cos(lat1)*cos(lat2)*cos(lon1-lon2))
> using this formulae i can find the distance between the pts and
> linearly map the Kms/miles on the rectangular area covered by the 2 pts
> and find the lat long. but this is not accurate because of the
> spherical nature of the earth. can anyone plz help me to do the same
> accurately.
> Thanks,
> Su
>
> i have a problem in converting X,Y to Lat Long in the following
> condition.
> I've been given 2 points with coordinates and .
> Now while mapping the rectangular area covered by these 2 points on to
> the computer screen, how do i calculate the exact kilometer/miles value
> between those points corresponding to the pixels value at the point of
> my mouse click, considering the spherical nature of the earth's
> surface.
> i know the formulae to convert Lat long to Kms which is given below.
> d=acos(sin(lat1)*sin(lat2)+cos(lat1)*cos(lat2)*cos(lon1-lon2))
> using this formulae i can find the distance between the pts and
> linearly map the Kms/miles on the rectangular area covered by the 2 pts
> and find the lat long. but this is not accurate because of the
> spherical nature of the earth. can anyone plz help me to do the same
> accurately.
> Thanks,
> Su
>
- Convert to Latitude/Longitude from Eastings/Northings
- Geographic Information Systems (GIS)
- 2009-09-17
- Convert a shapefile with a French projection system to the common EPSG:4326 projection WGS84 (latitude, longitude)
- Geographic Information Systems (GIS)
- 2008-05-31
- Converting Lambert Projection Clarke1866 Coords to Latitude / Longitude
- Geographic Information Systems (GIS)
- 2006-01-28
- How to transfer latitude, longitude to GPS Garmin Device via VB Programming?
- Satellite Navigation
- 2006-03-26
- Help to find GPS logger
- UK GPS Discussions
- 2012-03-05


