Possible Duplicate:
Working with latitude/longitude values in Java

Duplicate:

I need to calculate the distance between two points given by two coordinates. The project I am working on is a Java-project, so Java-code will be great, but pseudo-code can also be given, then I can implement it myself :)

As you probably know, there are three ways to represent coordinates:

  • Degrees:Minutes:Seconds (49°30'00"N, 123°30'00"W)
  • Degrees:Decimal Minutes (49°30.0', -123°30.0'), (49d30.0m,-123d30.0')
  • Decimal Degrees (49.5000°,-123.5000°), generally with 4-6 decimal numbers.

It's the third way my coordinates are given in, so the code for this values will be preferred :)

link|improve this question

69% accept rate
1  
Just out of curiosity. As the earth isnt a perfect sphere, (equatorial radius of 6,378.137 km and a polar radius of 6,356.752 km.) How large would the error be? 3958.75 miles in the answer below isan approximation using the volumetric radius – KarlP May 8 '09 at 12:32
1  
See the Vicenty formula -- movable-type.co.uk/scripts/latlong-vincenty.html -- if you care about the Earth not quite being a sphere – mob Nov 10 '09 at 23:22
1  
refer to this blog ...... xebee.xebia.in/2010/10/28/working-with-geolocations – Robin Nov 1 '10 at 10:28
feedback

closed as exact duplicate by casperOne Dec 12 '11 at 1:35

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

9 Answers

up vote 24 down vote accepted

Based on another question on stackoverflow, I got this code.. This calculates the result in meters, not in miles :)

 public static float distFrom(float lat1, float lng1, float lat2, float lng2) {
    double earthRadius = 3958.75;
    double dLat = Math.toRadians(lat2-lat1);
    double dLng = Math.toRadians(lng2-lng1);
    double a = Math.sin(dLat/2) * Math.sin(dLat/2) +
               Math.cos(Math.toRadians(lat1)) * Math.cos(Math.toRadians(lat2)) *
               Math.sin(dLng/2) * Math.sin(dLng/2);
    double c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1-a));
    double dist = earthRadius * c;

    int meterConversion = 1609;

    return new Float(dist * meterConversion).floatValue();
    }
link|improve this answer
7  
Why convert to Float and then back to float? – Steve Kuo May 8 '09 at 4:05
1  
return (float) (dist * meterConversion) – mob Nov 10 '09 at 23:18
The earth radius is 3958.75 in miles not kilometers. So your code above returns miles. – swinefeaster Nov 12 '11 at 8:55
1  
@swinefeaster: There's meterConversion constant in the second to last line which turns miles into meters. – Keith Irwin Nov 21 '11 at 2:30
The earth is not a perfect sphere, so this solution results in a slight error. – Steve Kuo Mar 15 at 22:35
show 1 more comment
feedback

Take a look at GeoTools' org.geotools.referencing.GeodeticCalculator. Set the starting and ending position then get call getOrthodromicDistance() which returns the orthodromic (great circle) distance.

link|improve this answer
feedback

refer to this blog.....

http://xebee.xebia.in/2010/10/28/working-with-geolocations/

link|improve this answer
feedback

Take a look at this latitude/longitude distance calculator. It has a link to relevant source code (including an explanation) and a link to the math behind the calculation.

It's actually pretty interesting.

link|improve this answer
feedback

If you understand mathematical formulas then this page should be more than enough to calculate distance between two points in any programming language. http://en.wikipedia.org/wiki/Geographical_distance

link|improve this answer
feedback

You can use the Java Geodesy Library for GPS (http://www.gavaghan.org/blog/free-source-code/geodesy-library-vincentys-formula-java/), it uses the Vincenty's formulae (http://en.wikipedia.org/wiki/Vincenty's_formulae) which takes account of the earths surface curvature.

Implementation goes like this:

import org.gavaghan.geodesy.*;

...

GeodeticCalculator geoCalc = new GeodeticCalculator();

Ellipsoid reference = Ellipsoid.WGS84;  

GlobalPosition pointA = new GlobalPosition(latitude, longitude, 0.0); // Point A

GlobalPosition userPos = new GlobalPosition(userLat, userLon, 0.0); // Point B

double distance = geoCalc.calculateGeodeticCurve(reference, userPos, pointA).getEllipsoidalDistance(); // Distance between Point A and Point B

The resulting distance is in meters.

link|improve this answer
feedback

This site shows you the formula which is the part I assume you are having trouble with? You might want to specify if you want a straight line from point A to point B (through Earth) or if you want the distance as presented on the site. I'm sorry I don't exactly recall their names. However, the code seems relatively straightforward.

link|improve this answer
feedback

I used the code from this site successfully:

I had to make some calculations on the answers to make it into european meters, but that was pretty straight forward :)

link|improve this answer
feedback

In C++ it is done like this:

#define LOCAL_PI 3.1415926535897932385 

double ToRadians(double degrees) 
{
  double radians = degrees * LOCAL_PI / 180;
  return radians;
}

double DirectDistance(double lat1, double lng1, double lat2, double lng2) 
{
  double earthRadius = 3958.75;
  double dLat = ToRadians(lat2-lat1);
  double dLng = ToRadians(lng2-lng1);
  double a = sin(dLat/2) * sin(dLat/2) + 
             cos(ToRadians(lat1)) * cos(ToRadians(lat2)) * 
             sin(dLng/2) * sin(dLng/2);
  double c = 2 * atan2(sqrt(a), sqrt(1-a));
  double dist = earthRadius * c;
  double meterConversion = 1609.00;
  return dist * meterConversion;
}
link|improve this answer
feedback

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