Is there somewhere a base of polylines for download, I need polylines of european countries and a solution in php for calculating in which country a certain coordinate resides.

I used google maps api for this till now but it's too slow and I make many requests frequently so I need to do this locally.

link|improve this question

78% accept rate
How may coordinate per day are you trying to process? Because unless you are trying to process thousands of points per day, the Google Maps API will really save you some effort. – Daniel Vassallo Dec 14 '09 at 17:04
It's an fleet management software and manages around 3 points per minute, this would be a big performance improvement. – dfilkovi Dec 14 '09 at 17:19
feedback

1 Answer

up vote 0 down vote accepted

Using the Google Maps API is a good solution because the data is already there and you have the code to use it.

However, a local solution would be to setup a spatial database and load it with the appropriate data. For an open source solution I recommend PostGIS running on PostgreSQL. You then need to find and load in the relevant boundary data. Searching for "world political boundary shapefile" or "europe political boundary shapefile" will give you some useful links to check.

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.