↧
Answer by Tim Child for Designing a Database that holds Geographic Locations
Use a database with good multi-dimensional indexing. This allows the database to do efficient bounding box queries. PostgreSQL is good choice, as it has GIST indices for bounding box queries. MySQL and...
View ArticleAnswer by Neil McGuigan for Designing a Database that holds Geographic Locations
use PostGIShttp://en.wikipedia.org/wiki/PostGIS
View ArticleDesigning a Database that holds Geographic Locations
I am designing an android app that will display points of interest (POIs) near you. The POIs will be stored in a database, which I would like to be able to efficiently search for the POIs near me and...
View Article
More Pages to Explore .....