Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Lookup country for GPS coordinates without Internet access

Tags:

python

gps

gis

I need to find out in what country given GPS coordinates are, on a device that has no Internet access (e.g. this, but without the easy on-line solution). Having no experience with GIS, I guess I'd need some kind of module that would statically store shapes of countries and match current location against them.

I'd therefore like to ask what kind of tools would be best for this, and what is the best way to obtain the country data. I'm using Python on an embedded Linux box.

like image 860
che Avatar asked Sep 04 '10 20:09

che


1 Answers

There's a shape file here with all of the country borders. You can then use OGR or something like this to access the data.

like image 157
Seth Avatar answered Oct 14 '22 11:10

Seth