vote up 4 vote down star
5

This may or may not be clear, leave me a comment if I am off base, or you need more information. Perhaps there is a solution out there already for what I want in PHP.

I am looking for a function that will add or subtract a distance from a longitude OR latitude value.

Reason: I have a database with all Latitudes and Longitudes in it and want to form a query to extract all cities within X kilometers (or miles). My query would look something like this...

Select * From Cities Where (Longitude > X1 and Longitude < X2) And (Latitude > Y1 and Latitude < Y2)

 Where X1 = Longitude - (distance)
 Where X2 = Longitude + (distance)

 Where Y1 = Latitude - (distance)
 Where Y2 = Latitude + (distance)

I am working in PHP, with a MySql Database.

Open to any suggestions also! :)

flag

you could always derive the function yourself... this seems like highschool-level calculus, or maybe even trig if you really simplify it... – rmeador Apr 30 at 20:47
1  
You'd think so, but the Earth is not a perfect sphere, and the variation between 1 degree longitude at the equator and 1 degree longitude elsewhere is surprisingly large. It's definitely not as simple as one would hope! – Andy Mikula Apr 30 at 20:55
(see my answer below :)) – Andy Mikula Apr 30 at 21:09
@ Mike, you can't just add a scalar distance to get a single new longitude and lattitude. You need to specify angles as well due to curvature of the Earth. You said you wanted to find cities with X kilometers, my solution does that. – Unknown May 1 at 8:52

11 Answers

vote up 3 vote down check

This is a MySQL query that will do exactly what you want. Keep in mind things like this are approximations generally, as the earth is not perfectly spherical nor does this take into account mountains, hills, valleys, etc.. We use this code on AcademicHomes.com with PHP and MySQL, it returns records within $radius miles of $latitude, $longitude.

$res = mysql_query("SELECT
    * 
FROM
    your_table
WHERE
    (
    	(69.1 * (latitude - " . $latitude . ")) * 
    	(69.1 * (latitude - " . $latitude . "))
    ) + ( 
    	(69.1 * (longitude - " . $longitude . ") * COS(" . $latitude . " / 57.3)) * 
    	(69.1 * (longitude - " . $longitude . ") * COS(" . $latitude . " / 57.3))
    ) < " . pow($radius, 2) . " 
ORDER BY 
    (
    	(69.1 * (latitude - " . $latitude . ")) * 
    	(69.1 * (latitude - " . $latitude . "))
    ) + ( 
    	(69.1 * (longitude - " . $longitude . ") * COS(" . $latitude . " / 57.3)) * 
    	(69.1 * (longitude - " . $longitude . ") * COS(" . $latitude . " / 57.3))
    ) ASC");
link|flag
If you don't mind me asking Keith, what is your index setup for, on this query? This works great, but its scanning every row in the DB with keys on Lat/Long – Mike Curry Jun 10 at 1:56
1  
Hey Mike, If performance matters, I set up an INDEX on 'latitude' and an INDEX on 'longitude', and I tweak the above query by using BETWEEN clauses to restrict the query to a smaller subset of records. Add in something like: WHERE latitude BETWEEN $latitude - ($radius / 70) AND $latitude + ($radius / 70) AND longitude BETWEEN $longitude - ($radius / 70) AND $longitude + ($radius / 70) ... This allows the database to use the indexes on latitude and longitude. The constant 70 is because the max distance 1 degree of latitude or longitude ever spans is about 70 miles. – Keith Palmer Jun 11 at 13:58
P.S. On our aging development server with a table with 2.9 million cities/towns around the world in it, the query times change from: Without indexes on latitude/longitude: 10.9 seconds With indexes on latitude/longitude: 0.52 seconds – Keith Palmer Jun 11 at 14:05
Use spacial indexes to quickly locate cities nearby. Much faster than ordinary indexes for this kind of work. – Will Dec 1 at 10:28
vote up 0 vote down

Don't reinvent the wheel. This is a spatial query. Use MySQL's built-in spatial extensions to store the latitude-longitude coordinate data in the native MySQL geometry column type. Then use the Distance function to query for points that are within a specified distance of one another.

Disclaimer: this is based on reading the documentation, I haven't tried this myself.

link|flag
vote up 0 vote down

Using the setup from the following URL, Ive built the query below. (Please note Im using codeIgnitor to query the database)

http://howto-use-mysql-spatial-ext.blogspot.com/2007/11/using-circular-area-selection.html

function getRadius($point="POINT(-29.8368 30.9096)", $radius=2)
{
    $km = 0.009;
    $center = "GeomFromText('$point')";
	$radius = $radius*$km;
	$bbox = "CONCAT('POLYGON((',
		X($center) - $radius, ' ', Y($center) - $radius, ',',
		X($center) + $radius, ' ', Y($center) - $radius, ',',
		X($center) + $radius, ' ', Y($center) + $radius, ',',
		X($center) - $radius, ' ', Y($center) + $radius, ',',
		X($center) - $radius, ' ', Y($center) - $radius, '
	))')";

    $query = $this->db->query("
	SELECT id, AsText(latLng) AS latLng, (SQRT(POW( ABS( X(latLng) - X({$center})), 2) + POW( ABS(Y(latLng) - Y({$center})), 2 )))/0.009 AS distance
	FROM crime_listing
	WHERE Intersects( latLng, GeomFromText($bbox) )
	AND SQRT(POW( ABS( X(latLng) - X({$center})), 2) + POW( ABS(Y(latLng) - Y({$center})), 2 )) < $radius
	ORDER BY distance
		");

    if($query->num_rows()>0){
		return($query->result());
	}else{
		return false;
	}
}
link|flag
vote up 0 vote down

I use the Km metric system. Maybe this question has a straight forward answer. How must I change the query to calculate in km and not in miles?

Using the query off Keith Parlmer:

$res = mysql_query("SELECT
    * 
FROM
    your_table
WHERE
    (
        (69.1 * (latitude - " . $latitude . ")) * 
        (69.1 * (latitude - " . $latitude . "))
    ) + ( 
        (69.1 * (longitude - " . $longitude . ") * COS(" . $latitude . " / 57.3)) * 
        (69.1 * (longitude - " . $longitude . ") * COS(" . $latitude . " / 57.3))
    ) < " . pow($radius, 2) . " 
ORDER BY 
    (
        (69.1 * (latitude - " . $latitude . ")) * 
        (69.1 * (latitude - " . $latitude . "))
    ) + ( 
        (69.1 * (longitude - " . $longitude . ") * COS(" . $latitude . " / 57.3)) * 
        (69.1 * (longitude - " . $longitude . ") * COS(" . $latitude . " / 57.3))
    ) ASC");
link|flag
vote up 0 vote down

You can use Pythagoras' Theorem to calculate the proximity of two pairs of lat/lon points.

If you have two locations (Alpha and Beta) you can calculate their distance apart with:

SQRT( POW(Alpha_lat - Beta_lat,2) + POW(Alpha_lon - Beta_lon,2) )
link|flag
For short distances this would be nice but our planet is not flat – Holli Dec 1 at 15:22
vote up 0 vote down

Depending on how many cities you are including, you can precompute the list. We do this here for an internal application where an inaccuracy of +100m is too much for our setup. It works by having a two key table of location1, location2, distance. We can then pull back locations x distance from location1 very quickly.

Also since the calcs can be done offline, it doesn't impact the running of the system. Users also get faster results.

link|flag
vote up 0 vote down

The function below is from the nerddinner's (ASP.NET MVC sample application available on codeplex) database (MSSQL).

ALTER FUNCTION [dbo].[DistanceBetween] (@Lat1 as real,
                @Long1 as real, @Lat2 as real, @Long2 as real)
RETURNS real
AS
BEGIN

DECLARE @dLat1InRad as float(53);
SET @dLat1InRad = @Lat1 * (PI()/180.0);
DECLARE @dLong1InRad as float(53);
SET @dLong1InRad = @Long1 * (PI()/180.0);
DECLARE @dLat2InRad as float(53);
SET @dLat2InRad = @Lat2 * (PI()/180.0);
DECLARE @dLong2InRad as float(53);
SET @dLong2InRad = @Long2 * (PI()/180.0);

DECLARE @dLongitude as float(53);
SET @dLongitude = @dLong2InRad - @dLong1InRad;
DECLARE @dLatitude as float(53);
SET @dLatitude = @dLat2InRad - @dLat1InRad;
/* Intermediate result a. */
DECLARE @a as float(53);
SET @a = SQUARE (SIN (@dLatitude / 2.0)) + COS (@dLat1InRad)
                 * COS (@dLat2InRad)
                 * SQUARE(SIN (@dLongitude / 2.0));
/* Intermediate result c (great circle distance in Radians). */
DECLARE @c as real;
SET @c = 2.0 * ATN2 (SQRT (@a), SQRT (1.0 - @a));
DECLARE @kEarthRadius as real;
/* SET kEarthRadius = 3956.0 miles */
SET @kEarthRadius = 6376.5;        /* kms */

DECLARE @dDistance as real;
SET @dDistance = @kEarthRadius * @c;
return (@dDistance);
END

I am guessing this could be helpful.

link|flag
The earth doesn't have a constant radius - this will get you close, but (at least for my previous application) not close enough. If you're not worried about a few (up to a few hundred) miles' difference, this would be a good way to go :) – Andy Mikula Apr 30 at 21:33
vote up 2 vote down

EDIT: If you have, somewhere, a list of all of the cities in the world along with their lat. and long. values, you can do a lookup. In this case, see my first link below for the formula to calculate the width of one longitudinal degree at latitude alt text :

alt text

Honestly, the complications behind this problem are such that you'd be far better off using a service such as Google Maps to get your data. Specifically, the Earth is not a perfect sphere, and the distance between two degrees varies as you are closer to / further from the equator.

See http://en.wikipedia.org/wiki/Geographic_coordinate_system for examples of what I mean, and check out the Google Maps API.

link|flag
that's essentially the function I was proposing he derive. I don't think the earth's slight asphericalness will matter over any reasonable distance... IIRC, the difference in the distance between the poles and across the equator is like 50 miles, which is nothing in earth-sized terms. – rmeador Apr 30 at 22:06
It makes a big difference when calculating position on the surface, however. – Andy Mikula Apr 30 at 22:15
vote up 1 vote down

lessthandot.com actually has 3 different ways to do this. you'll have to scroll through the blogs a little but they're there. http://blogs.lessthandot.com/

link|flag
vote up 0 vote down

http://mathforum.org/library/drmath/view/51879.html

Excerpt from the link:

I need to write a program module to calculate distances given longitude and latitude data. I am trying to find an object within a mile's radius of its location. Would you have the equation for this scenario?

Here is the algorithm:

  dlon = lon2 - lon1
  dlat = lat2 - lat1
  a = (sin(dlat/2))^2 + cos(lat1) * cos(lat2) * (sin(dlon/2))^2
  c = 2 * atan2(sqrt(a), sqrt(1-a)) 
  d = R * c
link|flag
I want Range values, I only have 1 point given (Lat/Long)- I want to add a range to that one point. – Mike Curry Apr 30 at 21:00
i.e: x1 = lat-1km x2 = lat+1km y1 = lat-1km y2 = lat+1km – Mike Curry Apr 30 at 21:01
@ Mike Curry, you can't have a range without 2 points. You use this formula to calculate lat/long to distance, and you find all the locations less than or equal to this distance. – Unknown Apr 30 at 21:20
@ Mike, if you want all the locations less than say 50 km to point 1, you compute every distance using this equation to point 1, and if d is less than 50, then it is accepted. – Unknown Apr 30 at 21:30
vote up 0 vote down

There are many (bad options)

  • Calculate the distance using the mathematical formula (treat X1-X2 and Y1-Y2) as vectors.

  • Create a lookup table in advance with all the combinations and keep the distances.

  • Consider using a GIS-specific extension of MySQL. Here is one article I found about this.

link|flag

Your Answer

Get an OpenID
or

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