what algorithms should I explore to implement a feature which lets a user find other user located near him , the latitude and the longitudes of all the user are known in advance and are fixed [not dynamic]. Also i believe that there should be a better way to store such data then simply storing the lat , long of the user against his user id in a database.What are the efficient ways to handle this ?
|
|
|
If you are just finding close points, all you need is a simple circular bounding radius, which you could adjust or favor logarithmically toward the center. Of course, you would want to avoid doing this over the whole data set for every query. Generally, in addition to lat/lon you would break the map down into quadrants that you know you can ignore off the bat. -- just make sure if your area of interest is marginal, to also query the neighboring quadrant. That is have a link table for fetching only rows in that quadrant. Once you've reduced by quadrant. Using the most rudimentary geometry: 1) Eliminate a large portion of your data with a simple bounding box. pseudocode:
2) Do Pythagorean theorem to see if point falls withing radius. Within the reduced data set (a2+b2 =c2)
|
||||
|
|
MySQL (and others) now support spatial indexing. And if your database can do spatial queries you don't need to implement any part of the algorithm yourself. |
|||
|
|
|
Use a k-D tree for a nearest neighbor search. |
|||
|
|
There are two main classes of datastructures for spatial search: If you want an overwhelmingly complete answer to your question, check out Hanan Samet's book, Foundations of Multidimensional and Metric Data Structures |
|||
|
|