vote up 9 vote down star
7

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.

flag

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

10 Answers

vote up 14 vote down check

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|flag
A description of the link would be useful. – tdyen Oct 19 '08 at 1:31
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
Thanks Adam, I should have added that to start with. – Chuck Nov 6 '08 at 21:40
vote up 0 vote down

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|flag
vote up 3 vote down

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

link|flag
vote up 1 vote down

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|flag
vote up 1 vote down

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|flag
vote up 1 vote down

I think we've had this one already:

http://beta.stackoverflow.com/questions/23569/calculating-distance-between-2-cities

link|flag
vote up 1 vote down

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|flag
vote up 2 vote down

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|flag
vote up 5 vote down

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 = lon2 - lon1;
        double dlat = lat2 - lat1;

        double a = (Math.Sin(dlat / 2) * Math.Sin(dlat / 2)) + Math.Cos(lat1) * Math.Cos(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|flag
Your earth is bigger than Chuck's. – Philippe Leybaert Jul 10 at 12:17
You are using the equatorial radius, but you should be using the mean radius, which is 6371 km – Philippe Leybaert Jul 10 at 12:18
vote up 0 vote down

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

link|flag

Your Answer

Get an OpenID
or

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