Last active
April 28, 2017 22:32
-
-
Save four43/3e1aa294ef732f0a5e53 to your computer and use it in GitHub Desktop.
Timezone Abbreviations to UTC Offset Map
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"ADT":"-0300", | |
"AKDT":"-0800", | |
"AKST":"-0900", | |
"AST":"-0400", | |
"CDT":"-0500", | |
"CST":"-0600", | |
"ECT":"-0400", | |
"EDT":"-0400", | |
"EST":"-0500", | |
"GST":"+0400", | |
"HADT":"-0900", | |
"HAST":"-1000", | |
"HST":"-1000", | |
"MDT":"-0600", | |
"MST":"-0700", | |
"PDT":"-0700", | |
"PST":"-0800", | |
"PYST":"-0300", | |
"PYT":"-0400", | |
"UCT":"+0000", | |
"UTC":"+0000", | |
"Z":"+0000" | |
} |
This list was copy-pasted, then editied from the Wikipedia list: http://en.wikipedia.org/wiki/List_of_time_zone_abbreviations
Please double check that pages sources for accuracy.
List now trimmed down to United States Timezones plus a few others. Redundancies made the previous not very helpful. Most of the international locations we deal with have full timezones (Europe/City_Name) format anyway, this is just being used as a domestic set. Thanks @adameickhoff for the update.
Does anyone know if this accounts for the fact that some time zones have daylight savings times and others don't (when working client-side/JavaScript)?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
A simple JSON map for Timezones Abbreviations, specifically the goal was 3 letter US abbreviations to UTC offsets. This was designed for use with Moment (http://momentjs.com/) in mind, so it uses the "+####" format.