If I have two GPS locations, say 51.507222, -0.1275 and 48.856667, 2.350833, what formula could I use to calculate the distance between the two? I've heard a lot about a haversine formula, but can't find any information about it, or how to apply it to C.

I've written the following code, however, it's very innacurate. Anybody know why? I can't figure it out. The problem comes from the function itself, but I don't know what it is.

float calcDistance(float A, float B, float C, float D) 
{
    float dLat;
    float dLon;
    dLat = (C - A);
    dLon = (D - B);
    dLat /= 57.29577951;
    dLon /= 57.29577951; 
    float v_a;
    float v_c;
    float distance;

    v_a = sin(dLat/2) * sin(dLat/2) + cos(A) * cos(C) * sin(dLon/2) * sin(dLon/2);
    v_c = 2 * atan2(sqrt(v_a),sqrt(1-v_a));
    distance = r * v_c;
    return distance;
}
link|improve this question

1  
float is a rather bad choice for the type of parameters, local variables and the function itself. Use double instead. In the absence of a strong reason to use float (or long double in C99) use double. – pmg May 4 '11 at 11:43
feedback

3 Answers

up vote 1 down vote accepted

http://www.movable-type.co.uk/scripts/latlong.html

This has a block of Javascript which I'm sure you could adapt easily enough in C.

link|improve this answer
Thanks, trying that out. – JC Leyba Apr 30 '11 at 0:27
feedback

What you're looking for is the great circle distance.

link|improve this answer
Thanks, but for someone who isn't hugely savy in math, this is really complicated. I'll try and figure it out. – JC Leyba Apr 30 '11 at 0:04
What, you don't expect people to tunnel through the Earth's crust to reach the destination? :) – Zan Lynx Apr 30 '11 at 0:11
I've used what I have been able to learn, and tried to make a simple function. It's up in the above post. Why's it not working? – JC Leyba Apr 30 '11 at 2:51
feedback

Your code is absolutely correct.

I would rename parameters A, B, C and D to lat1, lon1, lat2 and lon2.

It returns the distance in kilometers. You need to define r as 6371, roughly the radius of the earth.

link|improve this answer
Thanks, that's why I was off. – JC Leyba May 12 '11 at 3:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.