I have a location (city, state), date, and time and I want to convert it to utc, but need to first find the timezone of the location. I've done a little research and everything seems to point to either earthtools or geonames but both webservices appear to be latitude and longitude only. Is there a service or gem or any other way to find the timezone based on this format of location? or how can the location be converted to latitude and longitude?
|
|
You can easily get a latitude and longitude using the google maps geocoding API. There are ruby implementations for the API like GeoKit. Once you have that you can use the timezone gem to easily get the timezone of a latitude and longitude. The gem makes it easy to do time conversions in your timezone as well. Here is an example using GeoKit and TimeZone.
|
|||||||
|
|
For the second part of the question, see the accepted answer to this question: Determine timezone from latitude/longitude without using web services like Geonames.org As stated in that answer, you should:
Keep in mind also that many U.S. states belong to a single time zone, which should make the job easier. |
|||
|
|
You can make your own calls to a geolocation service, like Google Maps to translate City, State into latitude and longitude. There are also open database seeds that will give you latitude and longitudes for cities around the world. You could make a location model and seed that table with one of those. Here is one place you can download geolocation data for free: http://www.maxmind.com/app/geolitecity |
|||
|
|
|
Check the Gist at https://gist.github.com/4676207 for a version that uses Google's API (https://developers.google.com/maps/documentation/timezone/). Together with the Geocoder gem you can easily find all timezone ids :) |
|||
|
|