I have a PlaceID | PlaceName | Lat | Lon as my database structure.

Say I have my current latitude and longitude as

$lat = "37.331862";
$lon = "-122.029937";

I want to find places that are in a 100 feet radius. Might allow the user to choose.

link|improve this question

feedback

1 Answer

up vote 6 down vote accepted

You may be interested in checking out the following presentation:

The author describes how you can use the Haversine Formula in MySQL to order by proximity and limit your searches to a defined range. He also describes how to avoid a full table scan for such queries, using traditional indexes on the latitude and longitude columns.


1 PDF Version

link|improve this answer
2  
Very nice paper, thanks for sharing! – svens Sep 26 '10 at 10:19
feedback

Your Answer

 
or
required, but never shown

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