Is there any library (or even better, web service) available which can convert from a latitude/longitude into a time zone?
|
locked by George Stocker♦ Nov 22 '12 at 15:00
This question exists because it has historical significance, but it is not considered a good, on-topic question for this site, so please do not use it as evidence that you can ask similar questions here. This question and its answers are frozen and cannot be changed. More info: FAQ.
|
I looked fairly deeply into this question for a project I am working on. GeoNames.org and EarthTools.com are both good options for many situations but with the following serious flaws:
These flaws meant that these existing tools were not suitable for my needs so I rolled my own solution and have published it for general use. You can find it here: AskGeo is based on a time zone map of the world, so it returns a valid time zone for every valid latitude and longitude. It returns the standard time zone ID (e.g., "America/Los_Angeles") used on Linux and most other operating systems and programming frameworks. It also returns the current offset, taking full account of daylight savings time. It is extremely easy to use and usage is documented on the main page of the site. The API supports batch queries, so if you need to do a lot of look-ups, please use the batch interface rather than bog down our servers with serial requests. The bulk queries are also much faster, so everybody wins. When we first launched this, we built it on Google App Engine (GAE) and made it free to all users. This was possible because GAE's prices were so low at that time. Since then, our server load has increased substantially and GAE's prices went way up. Both factors combined led us to switch to Amazon Web Services for hosting and to start charging for commercial use, while keeping the service free for non-profit, non-commercial open source projects, and researchers. For commercial users, we provide 1000 free queries to let potential customers evaluate the API to make sure it meets their needs. See the web site for pricing and terms. The underlying library was written in Java and due to popular demand, we also released the library under a commercial license. Full documentation of the library and pricing details are on the web site. I hope this is useful. It certainly was useful for the project I was working on. |
|||||||||||||||||
|
|
Take a look at Geonames.org It's a free webservice that allow you to get a lot of informations from a long/lat Here's some info you can get from long/lat: (complete list of webservices here)
|
|||||||||||
|
|
The Yahoo places API provides timezone information via reverse geolocation. Check it out. http://developer.yahoo.com/geo/placefinder/guide/requests.html |
|||||||||
|
|
Timezones are now available via Google API |
|||
|
|
These look pretty promising- |
|||||
|
|
How much accuracy do you need? Dividing the longitude by 15 would almost be right :p |
|||||||||||||||
|
|
Eric Muller has made shapefile maps for the timezones of the tz (Olson) database. A few minor caveats, though:
Those aside, however, it seems to be very accurate for most purposes. |
|||
|
|
|
DRT Engine takes a latitude, longitude and local datetime and returns a timezone offset. This can be used to establish the timezone of a particular location at a future date. |
||||
|
|
|
Yahoo Geocoding can get the timezone from an address, so if you can get an address like city, state then you can query Yahoo. http://developer.yahoo.com/geo/placefinder/guide/requests.html |
|||
|
|