i have latitude and longitude of particular place and i want to calculate the distance so how can i calculate it?
|
You also need to add
|
||||
|
|
|
This might not be the most efficient method of doing it, but it will work. Your two locations specified by latitude and longitude can be considered vectors. Assuming that the coordinates have been converted into cartesion coordinates, calculate the dot product of the two vectors. Given v1 = (x1, y1, z1) and v2 = (x2, y2, z2), then ...
Conveniently, the magnitude of v1 and v2 will be the same ... the radius of the earth (R).
Solve for theta.
Now you have angle between the two vectors in radians. The distance betwen the two points when travelling across the surface of earth is thus ...
There is probably an easier way to do this entirely within the context of spherical coordinates, but my math in that area is too fuzzy--hence the conversion to cartesian coordinates. To convert to cartesian coordinates ... Let alpha be the latitude, and beta be the longitude.
Don't forget that the math function typically deal in radians, and the latitude/longitude deal in degrees. |
|||||||||||
|
|
of two points or what? if yes: http://www.movable-type.co.uk/scripts/latlong.html PS: IPhone has nothing about it, it is pure math |
|||||||||
|
|
I've cranked through the math, and can now greatly simplify the solution. Imagine if we spin the earth so that our first vector is at 0 degrees latitude and 0 degrees longitude. The second vector would be at (alpha2 - alpha1) degrees latitude and (beta2 - beta1) degrees latitude. Since ...
our dot product simplies to ...
The rest of the math remains unchanged.
Hope this helps. |
|||
|
|