Here's an easy one for you:

How do I calculate the distance between two points points specified by latitude and longitude?

EDIT: For clarification, I'd like the distance in kilometres, the points use the WGS84 system and I'd like to understand the relative accuracies of the approaches available.

link|improve this question

75% accept rate
10  
Often called a "Great Circle" calculation – Adam Davis Oct 19 '08 at 1:41
feedback

14 Answers

up vote 64 down vote accepted

This link might be helpful to you.

Excerpt:

This script calculates great-circle distances between the two points – that is, the shortest distance over the earth’s surface – using the ‘Haversine’ formula.

Javascript:

var R = 6371; // Radius of the earth in km
var dLat = (lat2-lat1).toRad();  // Javascript functions in radians
var dLon = (lon2-lon1).toRad(); 
var a = Math.sin(dLat/2) * Math.sin(dLat/2) +
        Math.cos(lat1.toRad()) * Math.cos(lat2.toRad()) * 
        Math.sin(dLon/2) * Math.sin(dLon/2); 
var c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1-a)); 
var d = R * c; // Distance in km
link|improve this answer
1  
A description of the link would be useful. – tdyen Oct 19 '08 at 1:31
3  
Added excerpt (Stackoverflow's preference is to have enough information in the answer to answer the question, and links for deeper info) – Adam Davis Oct 19 '08 at 1:39
That's much better, thanks Adam – Robin M Oct 22 '08 at 14:50
1  
Thank you, you made my day today. – MAK May 18 '11 at 5:29
4  
Does this calculation/method account for the Earth being a spheroid (not a perfect sphere)? The original question asked for distance on between points on a WGS84 globe. Not sure how much error creeps in by using a perfect sphere, but I suspect it can be quite a lot depending on where the points are on the globe, thus the distinction is worth bearing in mind. – locster Nov 8 '11 at 8:33
show 2 more comments
feedback

Here is a C# Implementation:

class DistanceAlgorithm
{
    const double PIx = 3.141592653589793;
    const double RADIO = 6378.16;

    /// <summary>
    /// This class cannot be instantiated.
    /// </summary>
    private DistanceAlgorithm() { }

    /// <summary>
    /// Convert degrees to Radians
    /// </summary>
    /// <param name="x">Degrees</param>
    /// <returns>The equivalent in radians</returns>
    public static double Radians(double x)
    {
        return x * PIx / 180;
    }

    /// <summary>
    /// Calculate the distance between two places.
    /// </summary>
    /// <param name="lon1"></param>
    /// <param name="lat1"></param>
    /// <param name="lon2"></param>
    /// <param name="lat2"></param>
    /// <returns></returns>
    public static double DistanceBetweenPlaces(
        double lon1,
        double lat1,
        double lon2,
        double lat2)
    {
        double dlon = Radians(lon2 - lon1);
        double dlat = Radians(lat2 - lat1);

        double a = (Math.Sin(dlat / 2) * Math.Sin(dlat / 2)) + Math.Cos(Radians(lat1)) * Math.Cos(Radians(lat2)) * (Math.Sin(dlon / 2) * Math.Sin(dlon / 2));
        double angle = 2 * Math.Atan2(Math.Sqrt(a), Math.Sqrt(1 - a));
        return angle * RADIO;
    }
link|improve this answer
12  
Your earth is bigger than Chuck's. – Philippe Leybaert Jul 10 '09 at 12:17
4  
You are using the equatorial radius, but you should be using the mean radius, which is 6371 km – Philippe Leybaert Jul 10 '09 at 12:18
4  
Shouldn't this be double dlon = Radians(lon2 - lon1); and double dlat = Radians(lat2 - lat1); – Chris Marisic Jan 15 '10 at 15:40
I agree with Chris Marisic. I used the original code and the calculations were wrong. I added the call to convert the deltas to radians and it works properly now. I submitted an edit and am waiting for it to be peer reviewed. – Bryan Bedard Dec 4 '11 at 4:53
I submitted another edit because lat1 & lat2 also need to be converted to radians. I also revised the formula for the assignment to a to match the formula and code found here: movable-type.co.uk/scripts/latlong.html – Bryan Bedard Dec 4 '11 at 6:48
feedback

Thanks very much for all this. I used the following code in my Objective-C iPhone app:

const double PIx = 3.141592653589793;
const double RADIO = 6371; // Mean radius of Earth in Km

double convertToRadians(double val) {

   return val * PIx / 180;
}

-(double)kilometresBetweenPlace1:(CLLocationCoordinate2D) place1 andPlace2:(CLLocationCoordinate2D) place2 {

        double dlon = convertToRadians(place2.longitude - place1.longitude);
        double dlat = convertToRadians(place2.latitude - place1.latitude);

        double a = ( pow(sin(dlat / 2), 2) + cos(convertToRadians(place1.latitude))) * cos(convertToRadians(place2.latitude)) * pow(sin(dlon / 2), 2);
        double angle = 2 * asin(sqrt(a));

        return angle * RADIO;
}

Latitude and Longitude are in decimal. I didn't use min() for the asin() call as the distances that I'm using are so small that they don't require it.

It gave incorrect answers until I passed in the values in Radians - now it's pretty much the same as the values obtained from Apple's Map app :-)

Extra update:

If you are using iOS4 or later then Apple provide some methods to do this so the same functionality would be achieved with:

-(double)kilometresBetweenPlace1:(CLLocationCoordinate2D) place1 andPlace2:(CLLocationCoordinate2D) place2 {

    MKMapPoint  start, finish;


    start = MKMapPointForCoordinate(place1);
    finish = MKMapPointForCoordinate(place2);

    return MKMetersBetweenMapPoints(start, finish) / 1000;
}
link|improve this answer
thank you Stephen – Tuyen Nguyen Oct 11 '11 at 15:47
feedback

First hit on google with your header as search string: Calculate distance, bearing and more between two Latitude/Longitude points.

link|improve this answer
feedback

On an ellipsoidal model of the earth, you want Vincenty's formulae. A Google search will return a lot of hits. One of them is at Geoscience Australia.

link|improve this answer
1  
Unless you use a method like Vincenty's your results will be approximate. – Stonetip Mar 8 '11 at 18:41
FYI, this error can be pretty significant if you aren't careful. I was getting errors of 4-10KM on 60-80KM distances using this formula vs. a more accurate method (using the calc at the NGS site as a reference - ngs.noaa.gov/cgi-bin/Inv_Fwd/inverse2.prl) – Brandon Dec 28 '11 at 21:42
feedback

It rather depends how accurate you want to be and what datum the lat and long are defined on. Very, very approximately you do a little spherical trig, but correcting for the fact that the earth is not a sphere makes the formulae more complicated.

link|improve this answer
feedback

To calculate the distance between two points on a sphere you need to do the Great Circle calculation.

There are a number of C/C++ libraries to help with map projection at MapTools if you need to reproject your distances to a flat surface. To do this you will need the projection string of the various coordinate systems.

You may also find MapWindow a useful tool to visualise the points. Also as its open source its a useful guide to how to use the proj.dll library, which appears to be the core open source projection library.

link|improve this answer
feedback

Here's an online calculator to do what you want. The code is client-side JavaScript, so you can view the source.

Here's an explanation of the math if you want to do it yourself.

link|improve this answer
feedback

Got Error- no Method 'toRad'

So modified the above procedure to call toRad method-

toRad(lat2-lat1) 

Math.cos(toRad(lat1))

and added the method-

//degrees to radians
function toRad(degree) 
{
    rad = degree* Math.PI/ 180;
    return rad;
}
link|improve this answer
feedback

I post here my working example.

List all points in table having distance between a designated point (we use a random point - lat:45.20327, long:23.7806) less than 50 KM, with latitude & longitude, in MySQL (the table fields are coord_lat and coord_long):

List all having DISTANCE<50, in Kilometres (considered Earth radius 6371 KM):

SELECT denumire, (6371 * acos( cos( radians(45.20327) ) * cos( radians( coord_lat ) ) * cos( radians( 23.7806 ) - radians(coord_long) ) + sin( radians(45.20327) ) * sin( radians(coord_lat) ) )) AS distanta 
FROM obiective 
WHERE coord_lat<>'' 
    AND coord_long<>'' 
HAVING distanta<50 
ORDER BY distanta desc

The above example was tested in MySQL 5.0.95 and 5.5.16 (Linux).

link|improve this answer
feedback

Thanks to the spherical nature of the earth the standard distance formula cannot be used. However, spherical geometry works well for this. The following article has a write up of exactly how to perform this operation. http://www.meridianworlddata.com/Distance-Calculation.asp

link|improve this answer
feedback

LatLongLib is a library that provide the basic operations to deal with Latitude longitude points this post might help you

link|improve this answer
feedback

I've used the above Haversine formula to implement a ruler for Google Maps v3. Here it is: http://www.barattalo.it/2009/12/19/ruler-for-google-maps-v3-to-measure-distance-on-map/ Thank you!

link|improve this answer
feedback

Missing definition in javascript code:

if (typeof(Number.prototype.toRad) === "undefined") {
  Number.prototype.toRad = function() {
    return this * Math.PI / 180;
  }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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