vote up 7 vote down star
2

Does anyone know of any free utility jars for java that assist with longitude/latitude manipulation in Java?

I am wanting to find the distance between two different points. This I know can be accomplished with the great circle distance. http://www.meridianworlddata.com/Distance-calculation.asp

Also, given a point and a distance I would like to find the point that distance north, and that distance east in order to create a box around the point.

flag

6 Answers

vote up 7 vote down check

We've had some success using OpenMap to plot a lot of positional data. There's a LatLonPoint class that has some basic functionality, including distance.

link|flag
vote up 4 vote down

Here is a Java implementation of Haversine formula. I use this in a project to calculate distance in miles between lat/longs.

  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;

    return new Float(dist).floatValue();
    }
link|flag
Just a note on this, it will return the distance in miles (because of the earthRadius setting). For other units change the earthRadius (see en.wikipedia.org/wiki/Earth_radius for more) – John Meagher Sep 24 '08 at 21:23
vote up 2 vote down

A quick Google search turns up GeoTools, which likely has the kind of functions you are looking for.

link|flag
vote up 0 vote down

We use Jcoord.

link|flag
vote up 0 vote down

Jcoord is excellent. It provides utilities for distance calculation, as well as conversion between datums. It's also fast.

link|flag
vote up 0 vote down

If you use Jcoord, beware the commercial licensing restrictions

link|flag

Your Answer

Get an OpenID
or

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