i need to retrieve all the city names from a specific country using openstreet map or google maps. is there any API available?
or is there any other way of getting this world geographic data?
|
i need to retrieve all the city names from a specific country using openstreet map or google maps. is there any API available? or is there any other way of getting this world geographic data?
| |||
|
feedback
|
|
You should definitely checkout GeoNames. They have the entire world in a standardized database. You can download it or use their API. I download the US database and use a connector I created in C# to insert States, Cities, Towns, and Zip Codes in my database.
There is also Open Street Maps that you can download or use their API. I do not suggest Yahoo's new API they are cutting products left and right and you never know how long it will be around. Also you cannot download a whole dump currently. | ||||
|
feedback
|
|
Download the data from http://www.geonames.org/ | |||
|
feedback
|
|
I don't know if you're restricted to google maps or openstreet map but you might find taking a look at Yahoo's woeid interesting. http://developer.yahoo.com/geo/geoplanet/ I've had a play around with this and it's extremely powerful. | |||
|
feedback
|
|
I looked at the solution from Jonperl. It could use some comments. First, I believe geonames.org gets the US city data from the USGS GNIS server. One can directly get a download file from them. http://geonames.usgs.gov/domestic/download_data.htm A few points someone should know: ADM1 stands for first level administrative division. For the US, these are the 50 states, District of Columbia, the 5 US territories, and 4 freely associated states. ADM2 stands for second level administrative division. For the US, these are counties, boroughs and census designated areas for Alaska, parishes for Louisiana, municipios for Puerto Rico, islands for the Virgin Islands, Marshall Islands, U.S. Minor Outlying Islands, districts for American Samoa, and municipalities for Nothern Mariana Islands. PPL are populated places. I'm not sure how geonames.org sorts these, but this category includes with cities: large subdivisions, unicorporated areas and large trailer parks. Thney also include some historical places. I can answer alot of these questions. I'm part of a public domain geospatial team at OpenGeoCode.Org Andrew | |||||
feedback
|