Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

as title how to? i have tried the code from google earth, but seem like the result is different with the google map calculation result. below provided the code i did

-(double)GetDistance:(double)lat1 long1:(double)lng1 la2:(double)lat2 long2:(double)lng2 {
    //NSLog(@"latitude 1:%.7f,longitude1:%.7f,latitude2:%.7f,longtitude2:%.7f",lat1,lng1,lat2,lng2);
    double radLat1 = [self rad:lat1];
    double radLat2 = [self rad:lat2];
    double a = radLat1 - radLat2;
    double b = [self rad:lng1] -[self rad:lng2];
    double s = 2 * asin(sqrt(pow(sin(a/2),2) + cos(radLat1)*cos(radLat2)*pow(sin(b/2),2)));
    s = s * EARTH_RADIUS;
    s = round(s * 10000) / 10000;
    return s;
}

-(double)rad:(double)d
{
    return d *3.14159265 / 180.0;
}

the EARTH_RADIUS value is 6378.138

by using this function by provided two coordinates the result come out is 4.5kM but when i use google map get direction between two same coordinates, it show me the distance is about 8km

can anyone help to point out the problem of my code?

share|improve this question
First question would be where did you get the equation from? – Nick Veys Dec 30 '09 at 16:08
1  
What query do you enter into Google Maps to check that? It might be telling you the driving distance, whereas you're calculating the distance as the crow flies. – Kevin Conner Dec 30 '09 at 16:19
@Nick, that's the common formula for this. See en.wikipedia.org/wiki/Great-circle_distance for a good discussion of it. – Rob Napier Dec 30 '09 at 16:51
Following up on the other comments, can you post the input coordinates you're using and the Google query you're testing against? – Rob Napier Dec 30 '09 at 17:05
You need to use the 'distanceFrom' function in the Google Maps API. Don't use directions. – Chris B Dec 30 '09 at 20:02
show 1 more comment

3 Answers

Since this is tagged iPhone, why not use the built-in distance function rather than rolling your own? location1 and location2 are CLLocation objects.

CLLocationDistance distance = [location1 getDistanceFrom:location2];
share|improve this answer

Google Maps is likely to be giving you the driving distance, whereas the great circle equation you have listed is going to be the straight line surface distance. If there was a straight line surface road directly from point A to point B, Google Maps would likely give you the same distance as the equation you have there.

share|improve this answer

You should be able to use the google API directly to calculate either great circle distance or driving distance depending on your application needs.

http://code.google.com/apis/maps/documentation/reference.html

See GLatLong::distanceFrom and GDirections::getDistance.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.