Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Consider an app that stores geocode data for photos. I want to be able to return albums of photos from within a city, within a state or within a country.

Currently the database uses location strings for matching (location_name = "London, UK"). This is a very simple calculation compared to actively querying through map geometry, but has accuracy issues. Also, alternate names or localizations cause records to not match ("London, UK" won't match "London, United Kingdom").

Radius searching is an option with Great Circle distances, but for geographic areas that are weird shapes (Tennessee or Texas for example), that also presents accuracy issues.

So, what's the best way to match locations in a database?

share|improve this question
What type of Database are you using or considering to use? MS Sql? Oracle? RavenDB? .. – Pure.Krome Sep 27 '10 at 1:35
The current implementation is built on MySQL 5 – Hunter Bridges Sep 27 '10 at 3:09

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.