Created
November 2, 2016 06:29
-
-
Save ejmg/5a5afff80fdd3f3ec3ce4548a8f50eff to your computer and use it in GitHub Desktop.
Dictionary with UTC offset values mapped to their phonetic codes
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
timezones = {"-12:00": "Y", | |
"-11:00": "X", | |
"-10:00": "W", | |
"-09:00": "V", | |
"-08:00": "U", | |
"-07:00": "T", | |
"-06:00": "S", | |
"-05:00": "R", | |
"-04:00": "Q", | |
"-03:00": "P", | |
"-02:00": "O", | |
"-01:00": "N", | |
"-00:00": "Z", | |
"+00:00": "Z", | |
"+01:00": "A", | |
"+02:00": "B", | |
"+03:00": "C", | |
"+04:00": "D", | |
"+05:00": "E", | |
"+06:00": "F", | |
"+07:00": "G", | |
"+08:00": "H", | |
"+09:00": "I", | |
"+10:00": "J", | |
"+11:00": "K", | |
"+12:00": "M"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment