I have a database of 20k+ cities with latitude and longitude and I need to make lot of nearest point queries (which city is the nearest to certain lat,long point) against this dataset.

I guess an R-Tree or QuadTree would be a perfect data structure for this, but I haven't been able to find a working ruby implementation. Do you know any?

link|improve this question

22% accept rate
feedback

2 Answers

I've found the kd-tree gem which helped me solve the above task

link|improve this answer
feedback

Or try:

https://github.com/iterationlabs/rquad

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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