I have given a location defined by latitude and longitude. Now i want to calculate a bounding box within e.g. 10 kilometers of that point.

The bounding box should be defined as latmin, lngmin and latmax, lngmax.

I need this stuff in order to use the panoramio API: http://www.panoramio.com/api/

Does someone know the formula of how to get thos points?

Edit: Guys i am looking for a formula/function which takes lat & lng as input and returns a bounding box as latmin & lngmin and latmax & latmin. Mysql, php, c#, javascript is fine but also pseudocode should be okay.

Edit: I am not looking for a solution which shows me the distance of 2 points

link|improve this question

80% accept rate
If you are using a geodatabase somewhere, they surely have a bounding box calculation integrated. You could even go check the source of PostGIS/GEOS, for example. – Vinko Vrsalovic Oct 26 '08 at 17:13
feedback

5 Answers

up vote 12 down vote accepted

I suggest to approximate locally the Earth surface as a sphere with radius given by the WGS84 ellipsoid at the given latitude. I suspect that the exact computation of latMin and latMax would require elliptic functions and would not yield an appreciable increase in accuracy (WGS84 is itself an approximation).

My implementation follows (It's written in Python; I have not tested it):

# degrees to radians
def deg2rad(degrees):
    return math.pi*degrees/180.0
# radians to degrees
def rad2deg(radians):
    return 180.0*radians/math.pi

# Semi-axes of WGS-84 geoidal reference
WGS84_a = 6378137.0  # Major semiaxis [m]
WGS84_b = 6356752.3  # Minor semiaxis [m]

# Earth radius at a given latitude, according to the WGS-84 ellipsoid [m]
def WGS84EarthRadius(lat):
    # http://en.wikipedia.org/wiki/Earth_radius
    An = WGS84_a*WGS84_a * math.cos(lat)
    Bn = WGS84_b*WGS84_b * math.sin(lat)
    Ad = WGS84_a * math.cos(lat)
    Bd = WGS84_b * math.sin(lat)
    return math.sqrt( (An*An + Bn*Bn)/(Ad*Ad + Bd*Bd) )

# Bounding box surrounding the point at given coordinates,
# assuming local approximation of Earth surface as a sphere
# of radius given by WGS84
def boundingBox(latitudeInDegrees, longitudeInDegrees, halfSideInKm):
    lat = deg2rad(latitudeInDegrees)
    lon = deg2rad(longitudeInDegrees)
    halfSide = 1000*halfSideInKm

    # Radius of Earth at given latitude
    radius = WGS84EarthRadius(lat)
    # Radius of the parallel at given latitude
    pradius = radius*math.cos(lat)

    latMin = lat - halfSide/radius
    latMax = lat + halfSide/radius
    lonMin = lon - halfSide/pradius
    lonMax = lon + halfSide/pradius

    return (rad2deg(latMin), rad2deg(lonMin), rad2deg(latMax), rad2deg(lonMax))

EDIT: The following code converts (degrees, primes, seconds) to degrees + fractions of a degree, and vice versa (not tested):

def dps2deg(degrees, primes, seconds):
    return degrees + primes/60.0 + seconds/3600.0

def deg2dps(degrees):
    intdeg = math.floor(degrees)
    primes = (degrees - intdeg)*60.0
    intpri = math.floor(primes)
    seconds = (primes - intpri)*60.0
    intsec = round(seconds)
    return (int(intdeg), int(intpri), int(intsec))
link|improve this answer
1  
As pointed out in the documentation of the suggested CPAN library, this makes sense only for halfSide <= 10km. – Federico Ramponi Oct 27 '08 at 3:53
1  
Does this work near the poles? It doesn't seem to, because it looks like it ends up with latMin < -pi (for the south pole) or latMax > pi (for the north pole)? I think when you are within halfSide of a pole you need to return a bounding box that includes all longitudes and the latitudes computed normally for the side away from the pole and at the pole on the side near the pole. – Doug McClean Apr 23 '10 at 21:48
feedback

I wrote an article about finding the bounding coordinates:

http://JanMatuschek.de/LatitudeLongitudeBoundingCoordinates

The article explains the formulae and also provides a Java implementation. (It also shows why Federico's formula for the min/max longitude is inaccurate.)

link|improve this answer
feedback

You're looking for an ellipsoid formula.

The best place I've found to start coding is based on the Geo::Ellipsoid library from CPAN. It gives you a baseline to create your tests off of and to compare your results with its results. I used it as the basis for a similar library for PHP at my previous employer.

http://search.cpan.org/~jgibson/Geo-Ellipsoid-1.12/lib/Geo/Ellipsoid.pm

Take a look at the location method. Call it twice and you've got your bbox.

You didn't post what language you were using. There may already be a geocoding library available for you.

Oh, and if you haven't figured it out by now, Google maps uses the WGS84 ellipsoid.

link|improve this answer
feedback

What You are looking for is called "great circle distance".

link|improve this answer
you can't actually use a sphere to model the earth without introducing inaccuracy. you have to use an ellipsoid- and there are a dozen or so to choose from. wgs84 seeming to be the most common. – jcoby Oct 26 '08 at 17:14
1  
But for a 10km distance you can probably get away with a sphere – Martin Beckett Oct 26 '08 at 17:57
a formula would be great ;) – Michal Oct 26 '08 at 18:48
This probably happened in an edit after the original question was posted, but the question is after a function that converts latitude, longitude, radius to a bounding box. – mjs Oct 5 '09 at 12:34
feedback

I adapted a PHP script I found to do just this. You can use it to find the corners of a box around a point (say, 20 km out). My specific example is for Google Maps API:

http://www.richardpeacock.com/blog/2011/11/draw-box-around-coordinate-google-maps-based-miles-or-kilometers

link|improve this answer
-1 What the OP is looking for is: given a reference point (lat, lon) and a distance, find the smallest box such that all points that are <= "distance" away from the reference point are not outside the box. Your box has its corners "distance" away from the reference point and is thus too small. Example: the point that is "distance" due north is well outside your box. – John Machin Feb 2 at 9:09
Well, by chance, it's exactly what I just needed. So thank you, even if it doesn't quite answer this question :) – Nasmon Feb 29 at 20:03
Well, I'm glad it could help somebody! – Richard Mar 2 at 21:38
feedback

Your Answer

 
or
required, but never shown

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