Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Querying within longitude and latitude in MySQL

Before asking for specific code examples, I just wanted to ask whether it is possible to make a query something like this pseudo code:

select items from table where lat/lon = -within x miles of a certain lat/lon point-

Is that doable? Or do I have to jump through some hoops? Any good approaches that could be recommended would be great!

like image 302
Genadinik Avatar asked Jan 14 '11 01:01

Genadinik


People also ask

How do you store latitude and longitude in a database?

Storing Latitude & Longitude data as Floats or Decimal This is one of the most fundamental ways of storing geocoordinate data. Latitude & longitude values can be represented & stored in a SQL database using decimal points (Decimal degrees) rather than degrees (or Degrees Minutes Seconds).

How do you find the distance between two latitude and longitude in SQL query?

The query for retrieving all of the records within a specific distance by calculating distance in miles between two points of latitude and longitude are: $query = "SELECT *, (((acos(sin((". $latitude. "*pi()/180)) * sin((`latitude`*pi()/180)) + cos((".

How can I find the distance between two points in MySQL?

Calculating Distance in MySQL To get the distance between two points, you call the function with the two points as the arguments: -- Returns distance in meters.


1 Answers

You should search for the Haversine formula, but a good start could be:

  • Creating a Store Locator with PHP, MySQL & Google Maps - See Section 'Finding Locations with MySQL'
  • Geo/Spatial Search with MySQL

Citing from the first url:

Here's the SQL statement that will find the closest 20 locations that are within a radius of 25 miles to the 37, -122 coordinate. It calculates the distance based on the latitude/longitude of that row and the target latitude/longitude, and then asks for only rows where the distance value is less than 25, orders the whole query by distance, and limits it to 20 results. To search by kilometers instead of miles, replace 3959 with 6371.

SELECT     id,     ( 3959       * acos( cos( radians(37) )               * cos(  radians( lat )   )               * cos(  radians( lng ) - radians(-122) )             + sin( radians(37) )               * sin( radians( lat ) )             )     )     AS distance FROM markers HAVING distance < 25 ORDER BY distance LIMIT 0 , 20; 
like image 76
daroczig Avatar answered Oct 09 '22 00:10

daroczig