Is there a web service of some sort (or any other way) to pull a current time zone settings for a (US) city. For the parts of the country that don't follow the Daylight Saving Time and basically jump timezones when everyone else is switching summer/winter time... I don't fancy creating own database of the places that don't follow DST. Is there a way to pull this data on demand?

Thank you!

EDIT: I need this for the database server (not for client workstations) - there entities stored in the database that have City, State as properties. I need know current timezone for these entities at any moment of time.

EDIT2: Thank you for the great answers!

EDIT3: Sorry SO only allows 1 post marked as "answer", @Espo posted good answer too.

link|improve this question

feedback

4 Answers

up vote 19 down vote accepted

earthtools.org provides a free web service to get the time zone from a city here:

http://www.earthtools.org/webservices.htm#timezone

You just pass in the long/lat values like this: (This is for New York)

http://www.earthtools.org/timezone-1.1/40.71417/-74.00639

link|improve this answer
2  
what if we do not know the latitude/longitude information for a city? – emaillenin Feb 25 '11 at 6:45
EarthTools is great but since a week it's offset by 4 min. Great but does not seem reliable. – Malartre Oct 18 '11 at 21:49
I add a few issues with earthtools.org especially when DST in involved. I would not recommend this webservice. I found timeanddate.com to be much more accurate, it is not free though. – Jérôme R Mar 7 at 8:57
i agree, DST support is very poor :( – padde Mar 11 at 11:48
feedback

Geonames.org has a wonderful set of worldly data that's available via webservice or download:

http://www.geonames.org/export/ws-overview.html

In particular

http://www.geonames.org/export/web-services.html#timezone

.

link|improve this answer
However it doesn't allow to specify date,for which you want to find timezone offset – Michael Freidgeim May 13 at 2:39
feedback

WorldTimeServer.com has what appears to be a comprehensive time zone database, which you can purchase access to in a variety of formats, including a .NET component for Web use.

No connection, just had to research the same thing myself recently.

link|improve this answer
feedback

Earthtool's timezone info is not up to date ... for an instance, the Sri Lankan current offset is +5.5 from GMT but EarthTools shows as +6 which was the old offset before 2005.

I suggest GeoNames.org.

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.