neeto_time_zones 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/data/africa.json +140 -0
- data/data/america.json +292 -0
- data/data/asia.json +392 -0
- data/data/atlantic.json +22 -0
- data/data/australia.json +71 -0
- data/data/data/africa.json +140 -0
- data/data/data/america.json +292 -0
- data/data/data/asia.json +392 -0
- data/data/data/atlantic.json +22 -0
- data/data/data/australia.json +71 -0
- data/data/data/europe.json +146 -0
- data/data/data/pacific.json +134 -0
- data/data/data/us_canada.json +144 -0
- data/data/europe.json +146 -0
- data/data/pacific.json +134 -0
- data/data/us_canada.json +144 -0
- data/lib/README.md +35 -0
- data/lib/neeto_time_zones/utils.rb +31 -0
- data/lib/neeto_time_zones/version.rb +5 -0
- data/lib/neeto_time_zones.rb +4 -0
- metadata +63 -0
@@ -0,0 +1,71 @@
|
|
1
|
+
[
|
2
|
+
{
|
3
|
+
"utc": [
|
4
|
+
"Antarctica/Casey",
|
5
|
+
"Australia/Perth",
|
6
|
+
"Australia/West"
|
7
|
+
],
|
8
|
+
"label": "West Australia Standard Time",
|
9
|
+
"keywords": "W. Australia Standard Time Casey Perth WAST",
|
10
|
+
"isDst": false,
|
11
|
+
"cities": "Casey, Perth, Australia West"
|
12
|
+
},
|
13
|
+
{
|
14
|
+
"utc": [
|
15
|
+
"Australia/Adelaide",
|
16
|
+
"Australia/Broken_Hill",
|
17
|
+
"Australia/South"
|
18
|
+
],
|
19
|
+
"label": "Central Australian Standard Time",
|
20
|
+
"keywords": "Cen. Australia Standard Time Adelaide South Broken Hill CAST",
|
21
|
+
"isDst": false,
|
22
|
+
"cities": "Adelaide, Broken Hill, Austrailia South"
|
23
|
+
},
|
24
|
+
{
|
25
|
+
"utc": [
|
26
|
+
"Australia/Darwin",
|
27
|
+
"Australia/North"
|
28
|
+
],
|
29
|
+
"label": "Australian Central Standard Time",
|
30
|
+
"keywords": "AUS Central Standard Time Darwin ACST North",
|
31
|
+
"isDst": false,
|
32
|
+
"cities": "Darwin, Australia North"
|
33
|
+
},
|
34
|
+
{
|
35
|
+
"utc": [
|
36
|
+
"Australia/Brisbane",
|
37
|
+
"Australia/Queensland",
|
38
|
+
"Australia/Lindeman"
|
39
|
+
],
|
40
|
+
"label": "East Australian Standard Time",
|
41
|
+
"keywords": "East Australian Australia Standard Time Brisbane Queensland Lindeman EAST",
|
42
|
+
"isDst": false,
|
43
|
+
"cities": "Brisbane, Queensland, Lindeman"
|
44
|
+
},
|
45
|
+
{
|
46
|
+
"utc": [
|
47
|
+
"Australia/Melbourne",
|
48
|
+
"Australia/Victoria",
|
49
|
+
"Australia/ACT",
|
50
|
+
"Australia/Sydney",
|
51
|
+
"Australia/NSW",
|
52
|
+
"Australia/LHI",
|
53
|
+
"Australia/Lord_Howe"
|
54
|
+
],
|
55
|
+
"label": "Australian Eastern Standard Time",
|
56
|
+
"keywords": "AUS Eastern Standard Time Melbourne Sydney Victoria ACT AEST LHI Lord_Howe NSW",
|
57
|
+
"isDst": false,
|
58
|
+
"cities": "Melbourne, Sydney, Canberra NSW Victoria"
|
59
|
+
},
|
60
|
+
{
|
61
|
+
"utc": [
|
62
|
+
"Australia/Currie",
|
63
|
+
"Australia/Hobart",
|
64
|
+
"Australia/Tasmania"
|
65
|
+
],
|
66
|
+
"label": "Tasmania Standard Time",
|
67
|
+
"keywords": "Tasmania Standard Time Currie Hobart Tasmania TST",
|
68
|
+
"isDst": false,
|
69
|
+
"cities": "Currie, Hobart, Tasmania"
|
70
|
+
}
|
71
|
+
]
|
@@ -0,0 +1,146 @@
|
|
1
|
+
[
|
2
|
+
{
|
3
|
+
"utc": [
|
4
|
+
"Europe/London",
|
5
|
+
"GB",
|
6
|
+
"GB-Eire",
|
7
|
+
"Europe/Isle_of_Man",
|
8
|
+
"Europe/Guernsey",
|
9
|
+
"Europe/Jersey"
|
10
|
+
],
|
11
|
+
"label": "GMT Standard Time",
|
12
|
+
"keywords": "GMT Standard Time Isle of_Man Guernsey Jersey London GB Edinburgh England, GB-Eire",
|
13
|
+
"isDst": true,
|
14
|
+
"cities": "London, Edinburgh, Isle of Man, Guernsey, Jersey"
|
15
|
+
},
|
16
|
+
{
|
17
|
+
"utc": [
|
18
|
+
"WET",
|
19
|
+
"Atlantic/Canary",
|
20
|
+
"Atlantic/Faeroe",
|
21
|
+
"Atlantic/Faroe",
|
22
|
+
"Atlantic/Madeira",
|
23
|
+
"Europe/Dublin",
|
24
|
+
"Eire",
|
25
|
+
"Europe/Lisbon",
|
26
|
+
"Portugal"
|
27
|
+
],
|
28
|
+
"label": "Western European Time",
|
29
|
+
"keywords": "WET Western European Time Canary Faeroe Faroe Madeira Dublin Lisbon Eire Portugal",
|
30
|
+
"isDst": true,
|
31
|
+
"cities": "Canary, Faeroe, Faroe, Madeira, Dublin, Lisbon, Eire"
|
32
|
+
},
|
33
|
+
{
|
34
|
+
"utc": [
|
35
|
+
"CET",
|
36
|
+
"Africa/Ceuta",
|
37
|
+
"Arctic/Longyearbyen",
|
38
|
+
"Europe/Amsterdam",
|
39
|
+
"Europe/Andorra",
|
40
|
+
"Europe/Belgrade",
|
41
|
+
"Europe/Berlin",
|
42
|
+
"Europe/Bratislava",
|
43
|
+
"Europe/Brussels",
|
44
|
+
"Europe/Budapest",
|
45
|
+
"Europe/Busingen",
|
46
|
+
"Europe/Copenhagen",
|
47
|
+
"Europe/Gibraltar",
|
48
|
+
"Europe/Ljubljana",
|
49
|
+
"Europe/Luxembourg",
|
50
|
+
"Europe/Madrid",
|
51
|
+
"Europe/Malta",
|
52
|
+
"Europe/Monaco",
|
53
|
+
"Europe/Oslo",
|
54
|
+
"Europe/Paris",
|
55
|
+
"Europe/Podgorica",
|
56
|
+
"Europe/Prague",
|
57
|
+
"Europe/Rome",
|
58
|
+
"Europe/San_Marino",
|
59
|
+
"Europe/Sarajevo",
|
60
|
+
"Europe/Skopje",
|
61
|
+
"Europe/Stockholm",
|
62
|
+
"Europe/Tirane",
|
63
|
+
"Europe/Vaduz",
|
64
|
+
"Europe/Vatican",
|
65
|
+
"Europe/Vienna",
|
66
|
+
"Europe/Warsaw",
|
67
|
+
"Poland",
|
68
|
+
"Europe/Zagreb",
|
69
|
+
"Europe/Zurich"
|
70
|
+
],
|
71
|
+
"label": "Central European Time",
|
72
|
+
"keywords": "CET Central European Time Amsterdam Andorra Belgrade Berlin Bern Bratislava Brussels Budapest Busingen Ceuta Copenhagen Gibraltar Ljubljana Longyearbyen Luxembourg Madrid Malta Monaco Oslo Paris Podgorica Prague Rome San Marino Stockholm Tirane Vaduz Vatican Vienna Zurich Spain France Italy Germany Poland",
|
73
|
+
"isDst": true,
|
74
|
+
"cities": "Amsterdam, Andorra, Belgrade, Berlin, Bern, Bratislava, Brussels, Budapest, Busingen, Ceuta, Copenhagen, Gibraltar, Ljubljana, Longyearbyen, Luxembourg, Madrid, Malta, Monaco, Oslo, Paris, Podgorica, Prague, Rome, San Marino, Stockholm, Tirane, Vaduz, Vatican, Vienna, Zurich"
|
75
|
+
},
|
76
|
+
{
|
77
|
+
"utc": [
|
78
|
+
"EET",
|
79
|
+
"Asia/Nicosia",
|
80
|
+
"Europe/Athens",
|
81
|
+
"Europe/Bucharest",
|
82
|
+
"Europe/Chisinau",
|
83
|
+
"Europe/Helsinki",
|
84
|
+
"Europe/Kiev",
|
85
|
+
"Europe/Kyiv",
|
86
|
+
"Europe/Mariehamn",
|
87
|
+
"Europe/Nicosia",
|
88
|
+
"Europe/Riga",
|
89
|
+
"Europe/Sofia",
|
90
|
+
"Europe/Tallinn",
|
91
|
+
"Europe/Uzhgorod",
|
92
|
+
"Europe/Uzhhorod",
|
93
|
+
"Europe/Vilnius",
|
94
|
+
"Europe/Zaporozhye",
|
95
|
+
"Europe/Zaporizhzhia"
|
96
|
+
],
|
97
|
+
"label": "Eastern European Time",
|
98
|
+
"keywords": "Eastern European Time Athens Bucharest Chisinau Helsinki Kiev Kyiv Mariehamn Nicosia Riga Sofia Tallinn Uzhgorod Uzhhorod Vilnius Zaporozhye Zaporizhzhia EEST",
|
99
|
+
"isDst": true,
|
100
|
+
"cities": "Athens, Bucharest, Chisinau, Helsinki, Kiev, Kyiv, Mariehamn, Nicosia, Riga, Sofia, Tallinn, Uzhgorod, Uzhhorod, Vilnius, Zaporozhye, Zaporizhzhia"
|
101
|
+
},
|
102
|
+
{
|
103
|
+
"utc": [
|
104
|
+
"Europe/Istanbul",
|
105
|
+
"Turkey"
|
106
|
+
],
|
107
|
+
"label": "Turkey Standard Time",
|
108
|
+
"keywords": "Turkey Standard Time Istanbul TST",
|
109
|
+
"isDst": false,
|
110
|
+
"cities": "Istanbul"
|
111
|
+
},
|
112
|
+
{
|
113
|
+
"utc": [
|
114
|
+
"Europe/Kaliningrad"
|
115
|
+
],
|
116
|
+
"label": "Kaliningrad Standard Time",
|
117
|
+
"keywords": "Kaliningrad Standard Time Kaliningrad KST",
|
118
|
+
"isDst": false,
|
119
|
+
"cities": "Kaliningrad"
|
120
|
+
},
|
121
|
+
{
|
122
|
+
"utc": [
|
123
|
+
"Europe/Kirov",
|
124
|
+
"Europe/Moscow",
|
125
|
+
"Europe/Simferopol",
|
126
|
+
"Europe/Volgograd",
|
127
|
+
"Europe/Minsk",
|
128
|
+
"W-SU"
|
129
|
+
],
|
130
|
+
"label": "Moscow Standard Time",
|
131
|
+
"keywords": "Moscow Standard Time Kirov Moscow Simferopol Volgograd Minsk MST W-SU",
|
132
|
+
"isDst": false,
|
133
|
+
"cities": "Moscow, St. Petersburg, Volgograd, Minsk, Kirov"
|
134
|
+
},
|
135
|
+
{
|
136
|
+
"utc": [
|
137
|
+
"Europe/Astrakhan",
|
138
|
+
"Europe/Samara",
|
139
|
+
"Europe/Ulyanovsk"
|
140
|
+
],
|
141
|
+
"label": "Samara Time",
|
142
|
+
"keywords": "Samara Time Astrakhan Samara Ulyanovsk ST",
|
143
|
+
"isDst": false,
|
144
|
+
"cities": "Samara, Ulyanovsk, Saratov"
|
145
|
+
}
|
146
|
+
]
|
@@ -0,0 +1,134 @@
|
|
1
|
+
[
|
2
|
+
{
|
3
|
+
"utc": [
|
4
|
+
"Etc/GMT+11",
|
5
|
+
"Pacific/Midway",
|
6
|
+
"Pacific/Niue",
|
7
|
+
"Pacific/Pago_Pago",
|
8
|
+
"US/Samoa"
|
9
|
+
],
|
10
|
+
"label": "Coordinated Universal Time (UTC -11)",
|
11
|
+
"keywords": "UTC-11 GMT+11 Midway Niue Pago Pago CUT Samoa",
|
12
|
+
"isDst": false,
|
13
|
+
"cities": "Midway, Pago Pago"
|
14
|
+
},
|
15
|
+
{
|
16
|
+
"utc": [
|
17
|
+
"Pacific/Apia"
|
18
|
+
],
|
19
|
+
"label": "Samoa Standard Time",
|
20
|
+
"keywords": "Samoa Standard Time Apia SST",
|
21
|
+
"isDst": false,
|
22
|
+
"cities": "Apia"
|
23
|
+
},
|
24
|
+
{
|
25
|
+
"utc": [
|
26
|
+
"Antarctica/McMurdo",
|
27
|
+
"Pacific/Auckland",
|
28
|
+
"Antarctica/South_Pole",
|
29
|
+
"NZ"
|
30
|
+
],
|
31
|
+
"label": "New Zealand Standard Time",
|
32
|
+
"keywords": "New Zealand Standard Time Wellington McMurdo Auckland NST South_Pole NZ",
|
33
|
+
"isDst": false,
|
34
|
+
"cities": "Auckland, Wellington, McMurdo"
|
35
|
+
},
|
36
|
+
{
|
37
|
+
"utc": [
|
38
|
+
"Pacific/Fiji"
|
39
|
+
],
|
40
|
+
"label": "Fiji Standard Time",
|
41
|
+
"keywords": "Fiji Standard Time Fiji FST",
|
42
|
+
"isDst": false,
|
43
|
+
"cities": "Fiji"
|
44
|
+
},
|
45
|
+
{
|
46
|
+
"utc": [
|
47
|
+
"Etc/GMT-12",
|
48
|
+
"Pacific/Funafuti",
|
49
|
+
"Pacific/Kwajalein",
|
50
|
+
"Pacific/Majuro",
|
51
|
+
"Pacific/Nauru",
|
52
|
+
"Pacific/Tarawa",
|
53
|
+
"Pacific/Wake",
|
54
|
+
"Pacific/Wallis",
|
55
|
+
"Kwajalein"
|
56
|
+
],
|
57
|
+
"label": "Coordinated Universal Time (UTC +12)",
|
58
|
+
"keywords": "UTC+12 GMT-12 Funafuti Kwajalein Majuro Nauru Tarawa Wake Wallis CUT",
|
59
|
+
"isDst": false,
|
60
|
+
"cities": "Funafuti, Kwajalein, Majuro, Nauru, Tarawa, Wake, Wallis"
|
61
|
+
},
|
62
|
+
{
|
63
|
+
"utc": [
|
64
|
+
"Antarctica/DumontDUrville",
|
65
|
+
"Etc/GMT-10",
|
66
|
+
"Pacific/Guam",
|
67
|
+
"Pacific/Port_Moresby",
|
68
|
+
"Pacific/Saipan",
|
69
|
+
"Pacific/Chuuk",
|
70
|
+
"Pacific/Truk"
|
71
|
+
],
|
72
|
+
"label": "West Pacific Standard Time",
|
73
|
+
"keywords": "West Pacific Standard Time DumontDUrville GMT-10 Guam Port Moresby Saipan Truk WPST Chuuk",
|
74
|
+
"isDst": false,
|
75
|
+
"cities": "DumontDUrville, Guam, Port Moresby, Saipan, Truk"
|
76
|
+
},
|
77
|
+
{
|
78
|
+
"utc": [
|
79
|
+
"Antarctica/Macquarie",
|
80
|
+
"Etc/GMT-11",
|
81
|
+
"Pacific/Efate",
|
82
|
+
"Pacific/Guadalcanal",
|
83
|
+
"Pacific/Kosrae",
|
84
|
+
"Pacific/Noumea",
|
85
|
+
"Pacific/Ponape",
|
86
|
+
"Pacific/Pohnpei"
|
87
|
+
],
|
88
|
+
"label": "Central Pacific Standard Time",
|
89
|
+
"keywords": "Central Pacific Standard Time Macquarie GMT-11 Efate Guadalcanal Kosrae Noumea Ponape CPST Pohnpei",
|
90
|
+
"isDst": false,
|
91
|
+
"cities": "Macquarie, Efate, Guadalcanal, Kosrae, Noumea, Ponape"
|
92
|
+
},
|
93
|
+
{
|
94
|
+
"utc": [
|
95
|
+
"Etc/GMT-13",
|
96
|
+
"Pacific/Kanton",
|
97
|
+
"Pacific/Enderbury",
|
98
|
+
"Pacific/Fakaofo",
|
99
|
+
"Pacific/Tongatapu"
|
100
|
+
],
|
101
|
+
"label": "Tonga Standard Time",
|
102
|
+
"keywords": "Tonga Standard Time GMT-13 Enderbury Fakaofo Tongatapu TST Kanton",
|
103
|
+
"isDst": false,
|
104
|
+
"cities": "Enderbury, Fakaofo, Tongatapu"
|
105
|
+
},
|
106
|
+
{
|
107
|
+
"utc": [
|
108
|
+
"Etc/GMT+12"
|
109
|
+
],
|
110
|
+
"label": "International Date Line West",
|
111
|
+
"keywords": "Dateline Standard Time GMT+12 IDLW",
|
112
|
+
"isDst": false,
|
113
|
+
"cities": ""
|
114
|
+
},
|
115
|
+
{
|
116
|
+
"utc": [
|
117
|
+
"Pacific/Easter",
|
118
|
+
"Chile/EasterIsland"
|
119
|
+
],
|
120
|
+
"label": "Easter Island Standard Time",
|
121
|
+
"keywords": "Easter Island Standard Time Pacific Easter Chile EasterIsland EIST",
|
122
|
+
"isDst": false,
|
123
|
+
"cities": ""
|
124
|
+
},
|
125
|
+
{
|
126
|
+
"utc": [
|
127
|
+
"Pacific/Chatham"
|
128
|
+
],
|
129
|
+
"label": "Chatham Standard Time",
|
130
|
+
"keywords": "Chatham Standard Time Pacific Chatham CST NZ-CHAT",
|
131
|
+
"isDst": false,
|
132
|
+
"cities": ""
|
133
|
+
}
|
134
|
+
]
|
@@ -0,0 +1,144 @@
|
|
1
|
+
[
|
2
|
+
{
|
3
|
+
"utc": [
|
4
|
+
"America/Los_Angeles",
|
5
|
+
"America/Tijuana",
|
6
|
+
"Mexico/BajaNorte",
|
7
|
+
"America/Vancouver",
|
8
|
+
"Canada/Pacific",
|
9
|
+
"US/Pacific",
|
10
|
+
"PST8PDT"
|
11
|
+
],
|
12
|
+
"label": "Pacific Standard Time",
|
13
|
+
"keywords": "Pacific Standard Time PST8PDT PST California Las Vegas Los Angeles Nevada Palm Springs San Diego San Francisco Tijuana Vancouver Washington BajaNorte",
|
14
|
+
"isDst": true,
|
15
|
+
"cities": "California, Las Vegas, Los Angeles, Nevada, Palm Springs, San Diego, San Francisco, Tijuana, BajaNorte, Vancouver, Washington"
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"utc": [
|
19
|
+
"America/Creston",
|
20
|
+
"America/Dawson",
|
21
|
+
"America/Dawson_Creek",
|
22
|
+
"America/Hermosillo",
|
23
|
+
"America/Phoenix",
|
24
|
+
"US/Arizona",
|
25
|
+
"America/Whitehorse",
|
26
|
+
"Canada/Yukon",
|
27
|
+
"Etc/GMT+7"
|
28
|
+
],
|
29
|
+
"label": "Mountain Time",
|
30
|
+
"keywords": "US Mountain Standard Time GMT+7 MT MST Creston Dawson Creek Hermosillo Phoenix Whitehorse Yukon Arizona",
|
31
|
+
"isDst": false,
|
32
|
+
"cities": "Creston, Dawson, Dawson Creek, Hermosillo, Phoenix, Whitehorse"
|
33
|
+
},
|
34
|
+
{
|
35
|
+
"utc": [
|
36
|
+
"America/Boise",
|
37
|
+
"America/Cambridge_Bay",
|
38
|
+
"America/Denver",
|
39
|
+
"America/Edmonton",
|
40
|
+
"America/Inuvik",
|
41
|
+
"America/Ojinaga",
|
42
|
+
"America/Yellowknife",
|
43
|
+
"MST7MDT",
|
44
|
+
"Canada/Mountain",
|
45
|
+
"Navajo",
|
46
|
+
"US/Mountain"
|
47
|
+
],
|
48
|
+
"label": "Mountain Time",
|
49
|
+
"keywords": "Mountain Time MST7MDT MT MST MDT Boise Cambridge_Bay Denver Edmonton Inuvik Ojinaga Yellowknife Navajo",
|
50
|
+
"isDst": true,
|
51
|
+
"cities": "Boise, Cambridge Bay, Denver, Edmonton, Inuvik, Ojinaga, Yellowknife"
|
52
|
+
},
|
53
|
+
{
|
54
|
+
"utc": [
|
55
|
+
"America/Chicago",
|
56
|
+
"America/Knox_IN",
|
57
|
+
"America/Indiana/Knox",
|
58
|
+
"America/Indiana/Tell_City",
|
59
|
+
"America/Matamoros",
|
60
|
+
"America/Menominee",
|
61
|
+
"America/North_Dakota/Beulah",
|
62
|
+
"America/North_Dakota/Center",
|
63
|
+
"America/North_Dakota/New_Salem",
|
64
|
+
"America/Rainy_River",
|
65
|
+
"America/Rankin_Inlet",
|
66
|
+
"America/Resolute",
|
67
|
+
"America/Winnipeg",
|
68
|
+
"Canada/Central",
|
69
|
+
"US/Central",
|
70
|
+
"US/Indiana-Starke",
|
71
|
+
"CST6CDT"
|
72
|
+
],
|
73
|
+
"label": "Central Time",
|
74
|
+
"keywords": "Central Standard Time CST6CDT CT CDT Austin Beulah Center Chicago Illinois Knox Matamoros Menominee Nashville New Salem Rainy River Rankin Inlet Resolute San Antonio Tell City Tennessee Texas Winnipeg Indiana-Starke",
|
75
|
+
"isDst": true,
|
76
|
+
"cities": "Austin, Beulah, Center, Chicago, Knox, Matamoros, Menominee, Nashville, New Salem, Rainy River, Rankin Inlet, Resolute, San Antonio, Tell City, Tennessee, Texas, Winnipeg"
|
77
|
+
},
|
78
|
+
{
|
79
|
+
"utc": [
|
80
|
+
"America/New_York",
|
81
|
+
"America/Detroit",
|
82
|
+
"America/Havana",
|
83
|
+
"America/Indiana/Petersburg",
|
84
|
+
"America/Indiana/Vincennes",
|
85
|
+
"America/Indiana/Winamac",
|
86
|
+
"America/Iqaluit",
|
87
|
+
"America/Kentucky/Monticello",
|
88
|
+
"America/Louisville",
|
89
|
+
"America/Montreal",
|
90
|
+
"America/Nassau",
|
91
|
+
"America/Nipigon",
|
92
|
+
"America/Pangnirtung",
|
93
|
+
"America/Port-au-Prince",
|
94
|
+
"America/Thunder_Bay",
|
95
|
+
"America/Toronto",
|
96
|
+
"Canada/Eastern",
|
97
|
+
"Cuba",
|
98
|
+
"US/Michigan",
|
99
|
+
"US/Eastern"
|
100
|
+
],
|
101
|
+
"label": "Eastern Time",
|
102
|
+
"keywords": "Eastern Standard Time EST ET Boston Massachusetts Charleston South Carolina Detroit Florida Havana Iqaluit Louisville Miami Monticello Montreal Nassau New York Nipigon Orlando Pangnirtung Port-au-Prince Petersburg Saint Augustine Thunder Bay Toronto Vincennes Washington D.C Winamac Cuba Michigan",
|
103
|
+
"isDst": true,
|
104
|
+
"cities": "Boston, Charleston, Detroit, Florida, Havana, Iqaluit, Louisville, Miami, Monticello, Montreal, Nassau, New York, Nipigon, Orlando, Pangnirtung, Port-au-Prince, Petersburg, Saint Augustine, Thunder Bay, Toronto, Vincennes, Washington D.C, Winamac"
|
105
|
+
},
|
106
|
+
{
|
107
|
+
"utc": [
|
108
|
+
"America/Anchorage",
|
109
|
+
"America/Juneau",
|
110
|
+
"America/Nome",
|
111
|
+
"America/Sitka",
|
112
|
+
"America/Yakutat",
|
113
|
+
"US/Alaska"
|
114
|
+
],
|
115
|
+
"label": "Alaskan Time",
|
116
|
+
"keywords": "Alaskan Standard Time AT Anchorage Juneau Nome Sitka Yakutat",
|
117
|
+
"isDst": true,
|
118
|
+
"cities": "Anchorage, Juneau, Nome, Sitka, Yakutat"
|
119
|
+
},
|
120
|
+
{
|
121
|
+
"utc": [
|
122
|
+
"America/St_Johns",
|
123
|
+
"Canada/Newfoundland"
|
124
|
+
],
|
125
|
+
"label": "Newfoundland Time",
|
126
|
+
"keywords": "Newfoundland Standard Time NT St Johns",
|
127
|
+
"isDst": true,
|
128
|
+
"cities": "St Johns"
|
129
|
+
},
|
130
|
+
{
|
131
|
+
"utc": [
|
132
|
+
"Etc/GMT+10",
|
133
|
+
"Pacific/Honolulu",
|
134
|
+
"Pacific/Johnston",
|
135
|
+
"Pacific/Rarotonga",
|
136
|
+
"Pacific/Tahiti",
|
137
|
+
"US/Hawaii"
|
138
|
+
],
|
139
|
+
"label": "Hawaiian Time",
|
140
|
+
"keywords": "Hawaiian Standard Time T GMT+10 Honolulu Johnston Lahaina Rarotonga Tahiti",
|
141
|
+
"isDst": false,
|
142
|
+
"cities": "Honolulu, Johnston, Lahaina, Rarotonga, Tahiti"
|
143
|
+
}
|
144
|
+
]
|
data/data/europe.json
ADDED
@@ -0,0 +1,146 @@
|
|
1
|
+
[
|
2
|
+
{
|
3
|
+
"utc": [
|
4
|
+
"Europe/London",
|
5
|
+
"GB",
|
6
|
+
"GB-Eire",
|
7
|
+
"Europe/Isle_of_Man",
|
8
|
+
"Europe/Guernsey",
|
9
|
+
"Europe/Jersey"
|
10
|
+
],
|
11
|
+
"label": "GMT Standard Time",
|
12
|
+
"keywords": "GMT Standard Time Isle of_Man Guernsey Jersey London GB Edinburgh England, GB-Eire",
|
13
|
+
"isDst": true,
|
14
|
+
"cities": "London, Edinburgh, Isle of Man, Guernsey, Jersey"
|
15
|
+
},
|
16
|
+
{
|
17
|
+
"utc": [
|
18
|
+
"WET",
|
19
|
+
"Atlantic/Canary",
|
20
|
+
"Atlantic/Faeroe",
|
21
|
+
"Atlantic/Faroe",
|
22
|
+
"Atlantic/Madeira",
|
23
|
+
"Europe/Dublin",
|
24
|
+
"Eire",
|
25
|
+
"Europe/Lisbon",
|
26
|
+
"Portugal"
|
27
|
+
],
|
28
|
+
"label": "Western European Time",
|
29
|
+
"keywords": "WET Western European Time Canary Faeroe Faroe Madeira Dublin Lisbon Eire Portugal",
|
30
|
+
"isDst": true,
|
31
|
+
"cities": "Canary, Faeroe, Faroe, Madeira, Dublin, Lisbon, Eire"
|
32
|
+
},
|
33
|
+
{
|
34
|
+
"utc": [
|
35
|
+
"CET",
|
36
|
+
"Africa/Ceuta",
|
37
|
+
"Arctic/Longyearbyen",
|
38
|
+
"Europe/Amsterdam",
|
39
|
+
"Europe/Andorra",
|
40
|
+
"Europe/Belgrade",
|
41
|
+
"Europe/Berlin",
|
42
|
+
"Europe/Bratislava",
|
43
|
+
"Europe/Brussels",
|
44
|
+
"Europe/Budapest",
|
45
|
+
"Europe/Busingen",
|
46
|
+
"Europe/Copenhagen",
|
47
|
+
"Europe/Gibraltar",
|
48
|
+
"Europe/Ljubljana",
|
49
|
+
"Europe/Luxembourg",
|
50
|
+
"Europe/Madrid",
|
51
|
+
"Europe/Malta",
|
52
|
+
"Europe/Monaco",
|
53
|
+
"Europe/Oslo",
|
54
|
+
"Europe/Paris",
|
55
|
+
"Europe/Podgorica",
|
56
|
+
"Europe/Prague",
|
57
|
+
"Europe/Rome",
|
58
|
+
"Europe/San_Marino",
|
59
|
+
"Europe/Sarajevo",
|
60
|
+
"Europe/Skopje",
|
61
|
+
"Europe/Stockholm",
|
62
|
+
"Europe/Tirane",
|
63
|
+
"Europe/Vaduz",
|
64
|
+
"Europe/Vatican",
|
65
|
+
"Europe/Vienna",
|
66
|
+
"Europe/Warsaw",
|
67
|
+
"Poland",
|
68
|
+
"Europe/Zagreb",
|
69
|
+
"Europe/Zurich"
|
70
|
+
],
|
71
|
+
"label": "Central European Time",
|
72
|
+
"keywords": "CET Central European Time Amsterdam Andorra Belgrade Berlin Bern Bratislava Brussels Budapest Busingen Ceuta Copenhagen Gibraltar Ljubljana Longyearbyen Luxembourg Madrid Malta Monaco Oslo Paris Podgorica Prague Rome San Marino Stockholm Tirane Vaduz Vatican Vienna Zurich Spain France Italy Germany Poland",
|
73
|
+
"isDst": true,
|
74
|
+
"cities": "Amsterdam, Andorra, Belgrade, Berlin, Bern, Bratislava, Brussels, Budapest, Busingen, Ceuta, Copenhagen, Gibraltar, Ljubljana, Longyearbyen, Luxembourg, Madrid, Malta, Monaco, Oslo, Paris, Podgorica, Prague, Rome, San Marino, Stockholm, Tirane, Vaduz, Vatican, Vienna, Zurich"
|
75
|
+
},
|
76
|
+
{
|
77
|
+
"utc": [
|
78
|
+
"EET",
|
79
|
+
"Asia/Nicosia",
|
80
|
+
"Europe/Athens",
|
81
|
+
"Europe/Bucharest",
|
82
|
+
"Europe/Chisinau",
|
83
|
+
"Europe/Helsinki",
|
84
|
+
"Europe/Kiev",
|
85
|
+
"Europe/Kyiv",
|
86
|
+
"Europe/Mariehamn",
|
87
|
+
"Europe/Nicosia",
|
88
|
+
"Europe/Riga",
|
89
|
+
"Europe/Sofia",
|
90
|
+
"Europe/Tallinn",
|
91
|
+
"Europe/Uzhgorod",
|
92
|
+
"Europe/Uzhhorod",
|
93
|
+
"Europe/Vilnius",
|
94
|
+
"Europe/Zaporozhye",
|
95
|
+
"Europe/Zaporizhzhia"
|
96
|
+
],
|
97
|
+
"label": "Eastern European Time",
|
98
|
+
"keywords": "Eastern European Time Athens Bucharest Chisinau Helsinki Kiev Kyiv Mariehamn Nicosia Riga Sofia Tallinn Uzhgorod Uzhhorod Vilnius Zaporozhye Zaporizhzhia EEST",
|
99
|
+
"isDst": true,
|
100
|
+
"cities": "Athens, Bucharest, Chisinau, Helsinki, Kiev, Kyiv, Mariehamn, Nicosia, Riga, Sofia, Tallinn, Uzhgorod, Uzhhorod, Vilnius, Zaporozhye, Zaporizhzhia"
|
101
|
+
},
|
102
|
+
{
|
103
|
+
"utc": [
|
104
|
+
"Europe/Istanbul",
|
105
|
+
"Turkey"
|
106
|
+
],
|
107
|
+
"label": "Turkey Standard Time",
|
108
|
+
"keywords": "Turkey Standard Time Istanbul TST",
|
109
|
+
"isDst": false,
|
110
|
+
"cities": "Istanbul"
|
111
|
+
},
|
112
|
+
{
|
113
|
+
"utc": [
|
114
|
+
"Europe/Kaliningrad"
|
115
|
+
],
|
116
|
+
"label": "Kaliningrad Standard Time",
|
117
|
+
"keywords": "Kaliningrad Standard Time Kaliningrad KST",
|
118
|
+
"isDst": false,
|
119
|
+
"cities": "Kaliningrad"
|
120
|
+
},
|
121
|
+
{
|
122
|
+
"utc": [
|
123
|
+
"Europe/Kirov",
|
124
|
+
"Europe/Moscow",
|
125
|
+
"Europe/Simferopol",
|
126
|
+
"Europe/Volgograd",
|
127
|
+
"Europe/Minsk",
|
128
|
+
"W-SU"
|
129
|
+
],
|
130
|
+
"label": "Moscow Standard Time",
|
131
|
+
"keywords": "Moscow Standard Time Kirov Moscow Simferopol Volgograd Minsk MST W-SU",
|
132
|
+
"isDst": false,
|
133
|
+
"cities": "Moscow, St. Petersburg, Volgograd, Minsk, Kirov"
|
134
|
+
},
|
135
|
+
{
|
136
|
+
"utc": [
|
137
|
+
"Europe/Astrakhan",
|
138
|
+
"Europe/Samara",
|
139
|
+
"Europe/Ulyanovsk"
|
140
|
+
],
|
141
|
+
"label": "Samara Time",
|
142
|
+
"keywords": "Samara Time Astrakhan Samara Ulyanovsk ST",
|
143
|
+
"isDst": false,
|
144
|
+
"cities": "Samara, Ulyanovsk, Saratov"
|
145
|
+
}
|
146
|
+
]
|