Where can one obtain an open source or licensable database of latitudes and longitudes for various cities?
|
|
|
Looks like MaxMind opened theirs up for free. See this post for more information and download it here. |
|||
|
|
|
Geonames has long/lat as well as city, postal and other location type data. It is free as well. |
|||
|
|
|
This is a great question that naturally leads to other questions. Cities are not located at a single latitude and longitude, so first you need to decide whether you want a list of the locations of city "centers" or if you want to do geographic queries on the areas covered by cities. Mapping From City Name to Latitude and LongitudeIf you are trying to map from city name to lat/lon, then you will want a list of cities with the lat/lon of an interior point, probably the city's logical center (not its geographic center, which is often far away from downtown). In such a case, I would start with: http://earth-info.nga.mil/gns/html/namefiles.htm Both have downloadable files with easy to parse formats and are regularly updated. They include much more than cities (e.g., they include public buildings, places of interest, parks, etc.), but each record includes a type field that indicates what type of record it is. You can easily filter such records to only include cities and towns, for example. You can find similar datasets from non-governmental sources such as: http://www.maxmind.com/download/worldcities/ But I would start with the governmental sources, as they are updated regularly by well funded government departments. MaxMind is a private company and GeoNames is an open source project. Mapping From Latitude and Longitude to CityIf you are starting from lat/lon and are interested in finding what city contains that point, then you should take a different approach. First, point locations of city centers are not the best way to do it, since cities are defined by areas, not points. And that is not just a technicality. Using point locations may work for small towns surrounded only by unincorporated land, but in a metropolitan area where the various suburbs share borders, this method will lead to mistakes very often. If you want to do it this way anyway, you'll need two main components:
The better way to do it is to use a map of the cities, where each city is represented by a polygon representing the area of the city. For the US, such maps are readily available from the US Census. To query a map like that you'll need a different set of tools. I've explained how to do this in another answer: http://stackoverflow.com/a/10490201/688365. For some reason, that post was voted down, presumably because I mentioned my web site that sells related services. But the information is good. My web site provides an API to do things like this, and sells a Java library if you want to do it on your own server: The API is free for non-profits, non-commercial open source projects, and academic researchers. We charge a modest fee for API access to cover our serving costs, and the Java libraries are a bit more expensive, but offer the best solution for businesses that care about latency and reliability. |
|||
|
|
|
http://developer.yahoo.com/maps/rest/V1/geocode.html EDIT: unclear why I was modded down, this will indeed give you lat/lon for a zip or city! |
|||
|
|
|
If you need to host it locally or import it into your own database or gaz service, the USGS and NGA provide a comprehensive list of cities with lat/lon. It's updated reguarly, free, and reliable. |
|||
|
|
|
Not freely available, but pretty easy to get: IATA SSIM tapes are published weekly and contain all scheduled flights, worlwide. There is a port (airport) table inside which contains all airports (cities) and their lats/lons. These are useful for calculating official airline distances between cities for eg. ticketed point mileages etc. Most people who work for an airline can get you a copy of a recent SSIM 'tape' which is basically a big file - they are useful for all sorts of things as well. eg. timezone info, aircraft info too. |
|||
|
|
|
|
|||||||||
|
|
Yahoo! Place finder provides an easy to use rest API http://developer.yahoo.com/geo/placefinder/ Documentation: http://developer.yahoo.com/geo/placefinder/guide/ Example usage taken directly from the main page:
|
|||
|
|