vote up 0 vote down star

Given a coordinate (lat, long), I am trying to calculate a square bounding box that is a given distance (e.g. 50km) away from the coordinate. So as input I have lat, long and distance and as output I would like two coordinates; one being the south-west (bottom-left) corner and one being the north-east (top-right) corner. I have seen a couple of answers on here that try to address this question in Python, but I am looking for a Java implementation in particular.

Just to be clear, I intend on using the algorithm on Earth only and so I don't need to accommodate a variable radius.

It doesn't have to be hugely accurate (+/-20% is fine) and it'll only be used to calculate bounding boxes over small distances (no more than 150km). So I'm happy to sacrifice some accuracy for an efficient algorithm. Any help is much appreciated.

Edit: I should have been clearer, I really am after a square, not a circle. I understand that the distance between the center of a square and various points along the square's perimeter is not a constant value like it is with a circle. I guess what I mean is a square where if you draw a line from the center to any one of the four points on the perimeter that results in a line perpendicular to a side of the perimeter, then those 4 lines have the same length.

flag

71% accept rate
This question is just straight trigonometry; I'd suggest removing the java and algorithm tags. (If that's even possible.) – Kevin Bourrillion Nov 7 at 3:12
oh, sorry, I did this now. – Kevin Bourrillion Nov 7 at 3:15
The spherical nature of the earth needs to be considered. What answer do you want if the input position is the North pole? – MarkJ Nov 9 at 11:39

4 Answers

vote up 1 vote down

A square bounding box for a distance from a point? Sounds more like a circle to me.

For distances much less than an Earth radius you can easily approximate by discarding the curvature of the Earth and just say X miles in either direction from the spot you have.

link|flag
the question then becomes how does one calculate lat and long of a point X miles away from a given lat and long? – Peter Nov 6 at 17:45
Peter - exactly. – Bryce Thomas Nov 6 at 18:23
vote up 2 vote down

If you have a Python implementation I don't see why you couldn't convert it to Java.

The algorithm should be the same.

link|flag
The best Python example I found had been marked as untested by the author. I imagine given that I'm after something that is fairly forgiving on accuracy that a different algorithm might be appropriate also. – Bryce Thomas Nov 6 at 18:21
It's just a formula you need; I'm sure someone will provide it for you and hopefully give you the reference link. – Kevin Bourrillion Nov 7 at 3:16
vote up 0 vote down
import com.vividsolutions.jts.geom.Envelope;

...
Envelope env = new Envelope(centerPoint.getCoordinate());
env.expandBy(distance_in_degrees); 
...

Now env contains your envelope. It's not actually a "square" (whatever that means on the surface of a sphere), but it should do.

You should note that the distance in degrees will depend on the latitude of the center point. At the equator, 1 degree of latitude is about 111km, but in New York, it's only about 75km.

The really cool thing is that you can toss all your points into a com.vividsolutions.jts.index.strtree.STRtree and then use it to quickly calculate points inside that Envelope.

link|flag
vote up 0 vote down

double R = 6371; // earth radius in km double radius = 50; // km

double x1 = lon - Math.toDegrees(radius/R/Math.cos(Math.toRadians(lat))); double x2 = lon + Math.toDegrees(radius/R/Math.cos(Math.toRadians(lat))); double y1 = lat + Math.toDegrees(radius/R); double y2 = lat - Math.toDegrees(radius/R);

Although I would also recommend JTS.

link|flag

Your Answer

Get an OpenID
or

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