How do I calculate distance between two gps coordinates (lang,long)
|
8
|
|||||
|
|
|
Calculate the distance between two coordinates by latitude and longitude, including a Javascript implementation. W and S locations and negative. Remember minutes and seconds are out of 60 so 31 30'S is -31.50 degrees. Don't forget to convert degrees to radians. Many languages have this function. Or its a simply calculation: radians = degrees * PI / 180 |
||
|
|
|
|
Look for haversine with Google; here is my solution: `#include include "haversine.h"define d2r (M_PI / 180.0)//calculate haversine distance for linear distance double haversine_km(double lat1, double long1, double lat2, double long2) { double dlong = (long2 - long1) * d2r; double dlat = (lat2 - lat1) * d2r; double a = pow(sin(dlat/2.0), 2) + cos(lat1*d2r) * cos(lat2*d2r) * pow(sin(dlong/2.0), 2); double c = 2 * atan2(sqrt(a), sqrt(1-a)); double d = 6367 * c;
} double haversine_mi(double lat1, double long1, double lat2, double long2) { double dlong = (long2 - long1) * d2r; double dlat = (lat2 - lat1) * d2r; double a = pow(sin(dlat/2.0), 2) + cos(lat1*d2r) * cos(lat2*d2r) * pow(sin(dlong/2.0), 2); double c = 2 * atan2(sqrt(a), sqrt(1-a)); double d = 3956 * c;
}` |
||
|
|
|
|
This is very easy to do with geography type in SQL Server 2008.
4326 is SRID for WGS84 elipsoidal Earth model |
||
|
|
|
|
http://www.math.montana.edu/frankw/ccp/cases/Global-Positioning/spherical-coordinates/learn.htm This page explains it very clearly. |
||
|
|
|
|
It depends on how accurate you need it to be, if you need pinpoint accuracy, is best to look at an algorithm with uses an ellipsoid, rather than a sphere, such as Vincenty's algorithm, which is accurate to the mm. http://en.wikipedia.org/wiki/Vincenty%27s_algorithm |
||
|
|
|
|
I recently had to do the same thing. I found this website to be very helpful explaining spherical trig with examples that were easy to follow along with. |
||
|
|
|
|
This Lua code is adapted from stuff found on Wikipedia and in Robert Lipe's GPSbabel tool:
|
||
|
|
|
|
I guess you want it along the curvature of the earth. Your two points and the center of the earth are on a plane. The center of the earth is the center of a circle on that plane and the two points are (roughly) on the perimeter of that circle. From that you can calculate the distance by finding out what the angle from one point to the other is. If the points are not the same heights, or if you need to take into account that the earth is not a perfect sphere it gets a little more difficult. |
||
|
|
|
|
This algorithm is known as the Great Circle distance. |
||
|
|
