so i implemented the following script, which can be found under: http://blog.julien.cayzac.name/2008/10/arc-and-distance-between-two-points-on.html
yet I keep getting the wrong distance. for points: lat/lon, lat2/lon2 36.987814/-122.107887, 38.989185/-122.116728
I get a distance of 4336622.8812906 (meters) however according to http://www.movable-type.co.uk/scripts/latlong.html it should be about 222.5 km. can somebody point out the error in the implementation? i've tried for quite a while and couldn't find it.
my code:
inline double getDist(double *gp) {
/// @brief The usual PI/180 constant
static const double DEG_TO_RAD = 0.017453292519943295769236907684886;
/// @brief Earth's quatratic mean radius for WGS-84
static const double EARTH_RADIUS_IN_METERS = 6372797.560856;
double latitudeArc = (gp[0] - gp[2]) * DEG_TO_RAD;
double longitudeArc = (gp[1] - gp[3]) * DEG_TO_RAD;
double latitudeH = sin(latitudeArc * 0.5);
latitudeH *= latitudeH;
double lontitudeH = sin(longitudeArc * 0.5);
lontitudeH *= lontitudeH;
double tmp = cos(gp[0]*DEG_TO_RAD) * cos(gp[2]*DEG_TO_RAD);
return EARTH_RADIUS_IN_METERS*2.0 * asin(sqrt(latitudeH + tmp*lontitudeH));
}