Skip to content

Instantly share code, notes, and snippets.

@jrolstad
Last active December 16, 2023 06:55
Show Gist options
  • Star 14 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jrolstad/5ca7d78dbfe182d7c1be to your computer and use it in GitHub Desktop.
Save jrolstad/5ca7d78dbfe182d7c1be to your computer and use it in GitHub Desktop.
List all NodaTime Timezones
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using NodaTime.TimeZones;
using NUnit.Framework;
namespace what_time_is_it
{
[TestFixture]
public class NodaTimeTests
{
[Test]
public void ListAllTimezones()
{
TzdbDateTimeZoneSource.Default
.ZoneLocations
.ToList()
.ForEach(tz =>
{
Console.WriteLine("ZoneId:{0} | CountryName:{1} | Comment:{2}",tz.ZoneId,tz.CountryName,tz.Comment);
});
}
/*
---- Results ----
ZoneId:Europe/Andorra | CountryName:Andorra | Comment:
ZoneId:Asia/Dubai | CountryName:United Arab Emirates | Comment:
ZoneId:Asia/Kabul | CountryName:Afghanistan | Comment:
ZoneId:America/Antigua | CountryName:Antigua & Barbuda | Comment:
ZoneId:America/Anguilla | CountryName:Anguilla | Comment:
ZoneId:Europe/Tirane | CountryName:Albania | Comment:
ZoneId:Asia/Yerevan | CountryName:Armenia | Comment:
ZoneId:Africa/Luanda | CountryName:Angola | Comment:
ZoneId:Antarctica/McMurdo | CountryName:Antarctica | Comment:McMurdo, South Pole, Scott (New Zealand time)
ZoneId:Antarctica/Rothera | CountryName:Antarctica | Comment:Rothera Station, Adelaide Island
ZoneId:Antarctica/Palmer | CountryName:Antarctica | Comment:Palmer Station, Anvers Island
ZoneId:Antarctica/Mawson | CountryName:Antarctica | Comment:Mawson Station, Holme Bay
ZoneId:Antarctica/Davis | CountryName:Antarctica | Comment:Davis Station, Vestfold Hills
ZoneId:Antarctica/Casey | CountryName:Antarctica | Comment:Casey Station, Bailey Peninsula
ZoneId:Antarctica/Vostok | CountryName:Antarctica | Comment:Vostok Station, Lake Vostok
ZoneId:Antarctica/DumontDUrville | CountryName:Antarctica | Comment:Dumont-d'Urville Station, Terre Adelie
ZoneId:Antarctica/Syowa | CountryName:Antarctica | Comment:Syowa Station, E Ongul I
ZoneId:Antarctica/Troll | CountryName:Antarctica | Comment:Troll Station, Queen Maud Land
ZoneId:America/Argentina/Buenos_Aires | CountryName:Argentina | Comment:Buenos Aires (BA, CF)
ZoneId:America/Argentina/Cordoba | CountryName:Argentina | Comment:most locations (CB, CC, CN, ER, FM, MN, SE, SF)
ZoneId:America/Argentina/Salta | CountryName:Argentina | Comment:(SA, LP, NQ, RN)
ZoneId:America/Argentina/Jujuy | CountryName:Argentina | Comment:Jujuy (JY)
ZoneId:America/Argentina/Tucuman | CountryName:Argentina | Comment:Tucuman (TM)
ZoneId:America/Argentina/Catamarca | CountryName:Argentina | Comment:Catamarca (CT), Chubut (CH)
ZoneId:America/Argentina/La_Rioja | CountryName:Argentina | Comment:La Rioja (LR)
ZoneId:America/Argentina/San_Juan | CountryName:Argentina | Comment:San Juan (SJ)
ZoneId:America/Argentina/Mendoza | CountryName:Argentina | Comment:Mendoza (MZ)
ZoneId:America/Argentina/San_Luis | CountryName:Argentina | Comment:San Luis (SL)
ZoneId:America/Argentina/Rio_Gallegos | CountryName:Argentina | Comment:Santa Cruz (SC)
ZoneId:America/Argentina/Ushuaia | CountryName:Argentina | Comment:Tierra del Fuego (TF)
ZoneId:Pacific/Pago_Pago | CountryName:Samoa (American) | Comment:
ZoneId:Europe/Vienna | CountryName:Austria | Comment:
ZoneId:Australia/Lord_Howe | CountryName:Australia | Comment:Lord Howe Island
ZoneId:Antarctica/Macquarie | CountryName:Australia | Comment:Macquarie Island
ZoneId:Australia/Hobart | CountryName:Australia | Comment:Tasmania - most locations
ZoneId:Australia/Currie | CountryName:Australia | Comment:Tasmania - King Island
ZoneId:Australia/Melbourne | CountryName:Australia | Comment:Victoria
ZoneId:Australia/Sydney | CountryName:Australia | Comment:New South Wales - most locations
ZoneId:Australia/Broken_Hill | CountryName:Australia | Comment:New South Wales - Yancowinna
ZoneId:Australia/Brisbane | CountryName:Australia | Comment:Queensland - most locations
ZoneId:Australia/Lindeman | CountryName:Australia | Comment:Queensland - Holiday Islands
ZoneId:Australia/Adelaide | CountryName:Australia | Comment:South Australia
ZoneId:Australia/Darwin | CountryName:Australia | Comment:Northern Territory
ZoneId:Australia/Perth | CountryName:Australia | Comment:Western Australia - most locations
ZoneId:Australia/Eucla | CountryName:Australia | Comment:Western Australia - Eucla area
ZoneId:America/Aruba | CountryName:Aruba | Comment:
ZoneId:Europe/Mariehamn | CountryName:Aaland Islands | Comment:
ZoneId:Asia/Baku | CountryName:Azerbaijan | Comment:
ZoneId:Europe/Sarajevo | CountryName:Bosnia & Herzegovina | Comment:
ZoneId:America/Barbados | CountryName:Barbados | Comment:
ZoneId:Asia/Dhaka | CountryName:Bangladesh | Comment:
ZoneId:Europe/Brussels | CountryName:Belgium | Comment:
ZoneId:Africa/Ouagadougou | CountryName:Burkina Faso | Comment:
ZoneId:Europe/Sofia | CountryName:Bulgaria | Comment:
ZoneId:Asia/Bahrain | CountryName:Bahrain | Comment:
ZoneId:Africa/Bujumbura | CountryName:Burundi | Comment:
ZoneId:Africa/Porto-Novo | CountryName:Benin | Comment:
ZoneId:America/St_Barthelemy | CountryName:St Barthelemy | Comment:
ZoneId:Atlantic/Bermuda | CountryName:Bermuda | Comment:
ZoneId:Asia/Brunei | CountryName:Brunei | Comment:
ZoneId:America/La_Paz | CountryName:Bolivia | Comment:
ZoneId:America/Kralendijk | CountryName:Caribbean Netherlands | Comment:
ZoneId:America/Noronha | CountryName:Brazil | Comment:Atlantic islands
ZoneId:America/Belem | CountryName:Brazil | Comment:Amapa, E Para
ZoneId:America/Fortaleza | CountryName:Brazil | Comment:NE Brazil (MA, PI, CE, RN, PB)
ZoneId:America/Recife | CountryName:Brazil | Comment:Pernambuco
ZoneId:America/Araguaina | CountryName:Brazil | Comment:Tocantins
ZoneId:America/Maceio | CountryName:Brazil | Comment:Alagoas, Sergipe
ZoneId:America/Bahia | CountryName:Brazil | Comment:Bahia
ZoneId:America/Sao_Paulo | CountryName:Brazil | Comment:S & SE Brazil (GO, DF, MG, ES, RJ, SP, PR, SC, RS)
ZoneId:America/Campo_Grande | CountryName:Brazil | Comment:Mato Grosso do Sul
ZoneId:America/Cuiaba | CountryName:Brazil | Comment:Mato Grosso
ZoneId:America/Santarem | CountryName:Brazil | Comment:W Para
ZoneId:America/Porto_Velho | CountryName:Brazil | Comment:Rondonia
ZoneId:America/Boa_Vista | CountryName:Brazil | Comment:Roraima
ZoneId:America/Manaus | CountryName:Brazil | Comment:E Amazonas
ZoneId:America/Eirunepe | CountryName:Brazil | Comment:W Amazonas
ZoneId:America/Rio_Branco | CountryName:Brazil | Comment:Acre
ZoneId:America/Nassau | CountryName:Bahamas | Comment:
ZoneId:Asia/Thimphu | CountryName:Bhutan | Comment:
ZoneId:Africa/Gaborone | CountryName:Botswana | Comment:
ZoneId:Europe/Minsk | CountryName:Belarus | Comment:
ZoneId:America/Belize | CountryName:Belize | Comment:
ZoneId:America/St_Johns | CountryName:Canada | Comment:Newfoundland Time, including SE Labrador
ZoneId:America/Halifax | CountryName:Canada | Comment:Atlantic Time - Nova Scotia (most places), PEI
ZoneId:America/Glace_Bay | CountryName:Canada | Comment:Atlantic Time - Nova Scotia - places that did not observe DST 1966-1971
ZoneId:America/Moncton | CountryName:Canada | Comment:Atlantic Time - New Brunswick
ZoneId:America/Goose_Bay | CountryName:Canada | Comment:Atlantic Time - Labrador - most locations
ZoneId:America/Blanc-Sablon | CountryName:Canada | Comment:Atlantic Standard Time - Quebec - Lower North Shore
ZoneId:America/Toronto | CountryName:Canada | Comment:Eastern Time - Ontario & Quebec - most locations
ZoneId:America/Nipigon | CountryName:Canada | Comment:Eastern Time - Ontario & Quebec - places that did not observe DST 1967-1973
ZoneId:America/Thunder_Bay | CountryName:Canada | Comment:Eastern Time - Thunder Bay, Ontario
ZoneId:America/Iqaluit | CountryName:Canada | Comment:Eastern Time - east Nunavut - most locations
ZoneId:America/Pangnirtung | CountryName:Canada | Comment:Eastern Time - Pangnirtung, Nunavut
ZoneId:America/Resolute | CountryName:Canada | Comment:Central Standard Time - Resolute, Nunavut
ZoneId:America/Atikokan | CountryName:Canada | Comment:Eastern Standard Time - Atikokan, Ontario and Southampton I, Nunavut
ZoneId:America/Rankin_Inlet | CountryName:Canada | Comment:Central Time - central Nunavut
ZoneId:America/Winnipeg | CountryName:Canada | Comment:Central Time - Manitoba & west Ontario
ZoneId:America/Rainy_River | CountryName:Canada | Comment:Central Time - Rainy River & Fort Frances, Ontario
ZoneId:America/Regina | CountryName:Canada | Comment:Central Standard Time - Saskatchewan - most locations
ZoneId:America/Swift_Current | CountryName:Canada | Comment:Central Standard Time - Saskatchewan - midwest
ZoneId:America/Edmonton | CountryName:Canada | Comment:Mountain Time - Alberta, east British Columbia & west Saskatchewan
ZoneId:America/Cambridge_Bay | CountryName:Canada | Comment:Mountain Time - west Nunavut
ZoneId:America/Yellowknife | CountryName:Canada | Comment:Mountain Time - central Northwest Territories
ZoneId:America/Inuvik | CountryName:Canada | Comment:Mountain Time - west Northwest Territories
ZoneId:America/Creston | CountryName:Canada | Comment:Mountain Standard Time - Creston, British Columbia
ZoneId:America/Dawson_Creek | CountryName:Canada | Comment:Mountain Standard Time - Dawson Creek & Fort Saint John, British Columbia
ZoneId:America/Vancouver | CountryName:Canada | Comment:Pacific Time - west British Columbia
ZoneId:America/Whitehorse | CountryName:Canada | Comment:Pacific Time - south Yukon
ZoneId:America/Dawson | CountryName:Canada | Comment:Pacific Time - north Yukon
ZoneId:Indian/Cocos | CountryName:Cocos (Keeling) Islands | Comment:
ZoneId:Africa/Kinshasa | CountryName:Congo (Dem. Rep.) | Comment:west Dem. Rep. of Congo
ZoneId:Africa/Lubumbashi | CountryName:Congo (Dem. Rep.) | Comment:east Dem. Rep. of Congo
ZoneId:Africa/Bangui | CountryName:Central African Rep. | Comment:
ZoneId:Africa/Brazzaville | CountryName:Congo (Rep.) | Comment:
ZoneId:Europe/Zurich | CountryName:Switzerland | Comment:
ZoneId:Africa/Abidjan | CountryName:Cote d'Ivoire | Comment:
ZoneId:Pacific/Rarotonga | CountryName:Cook Islands | Comment:
ZoneId:America/Santiago | CountryName:Chile | Comment:most locations
ZoneId:Pacific/Easter | CountryName:Chile | Comment:Easter Island & Sala y Gomez
ZoneId:Africa/Douala | CountryName:Cameroon | Comment:
ZoneId:Asia/Shanghai | CountryName:China | Comment:east China - Beijing, Guangdong, Shanghai, etc.
ZoneId:Asia/Harbin | CountryName:China | Comment:Heilongjiang (except Mohe), Jilin
ZoneId:Asia/Chongqing | CountryName:China | Comment:central China - Sichuan, Yunnan, Guangxi, Shaanxi, Guizhou, etc.
ZoneId:Asia/Urumqi | CountryName:China | Comment:most of Tibet & Xinjiang
ZoneId:Asia/Kashgar | CountryName:China | Comment:west Tibet & Xinjiang
ZoneId:America/Bogota | CountryName:Colombia | Comment:
ZoneId:America/Costa_Rica | CountryName:Costa Rica | Comment:
ZoneId:America/Havana | CountryName:Cuba | Comment:
ZoneId:Atlantic/Cape_Verde | CountryName:Cape Verde | Comment:
ZoneId:America/Curacao | CountryName:Curacao | Comment:
ZoneId:Indian/Christmas | CountryName:Christmas Island | Comment:
ZoneId:Asia/Nicosia | CountryName:Cyprus | Comment:
ZoneId:Europe/Prague | CountryName:Czech Republic | Comment:
ZoneId:Europe/Berlin | CountryName:Germany | Comment:most locations
ZoneId:Europe/Busingen | CountryName:Germany | Comment:Busingen
ZoneId:Africa/Djibouti | CountryName:Djibouti | Comment:
ZoneId:Europe/Copenhagen | CountryName:Denmark | Comment:
ZoneId:America/Dominica | CountryName:Dominica | Comment:
ZoneId:America/Santo_Domingo | CountryName:Dominican Republic | Comment:
ZoneId:Africa/Algiers | CountryName:Algeria | Comment:
ZoneId:America/Guayaquil | CountryName:Ecuador | Comment:mainland
ZoneId:Pacific/Galapagos | CountryName:Ecuador | Comment:Galapagos Islands
ZoneId:Europe/Tallinn | CountryName:Estonia | Comment:
ZoneId:Africa/Cairo | CountryName:Egypt | Comment:
ZoneId:Africa/El_Aaiun | CountryName:Western Sahara | Comment:
ZoneId:Africa/Asmara | CountryName:Eritrea | Comment:
ZoneId:Europe/Madrid | CountryName:Spain | Comment:mainland
ZoneId:Africa/Ceuta | CountryName:Spain | Comment:Ceuta & Melilla
ZoneId:Atlantic/Canary | CountryName:Spain | Comment:Canary Islands
ZoneId:Africa/Addis_Ababa | CountryName:Ethiopia | Comment:
ZoneId:Europe/Helsinki | CountryName:Finland | Comment:
ZoneId:Pacific/Fiji | CountryName:Fiji | Comment:
ZoneId:Atlantic/Stanley | CountryName:Falkland Islands | Comment:
ZoneId:Pacific/Chuuk | CountryName:Micronesia | Comment:Chuuk (Truk) and Yap
ZoneId:Pacific/Pohnpei | CountryName:Micronesia | Comment:Pohnpei (Ponape)
ZoneId:Pacific/Kosrae | CountryName:Micronesia | Comment:Kosrae
ZoneId:Atlantic/Faroe | CountryName:Faroe Islands | Comment:
ZoneId:Europe/Paris | CountryName:France | Comment:
ZoneId:Africa/Libreville | CountryName:Gabon | Comment:
ZoneId:Europe/London | CountryName:Britain (UK) | Comment:
ZoneId:America/Grenada | CountryName:Grenada | Comment:
ZoneId:Asia/Tbilisi | CountryName:Georgia | Comment:
ZoneId:America/Cayenne | CountryName:French Guiana | Comment:
ZoneId:Europe/Guernsey | CountryName:Guernsey | Comment:
ZoneId:Africa/Accra | CountryName:Ghana | Comment:
ZoneId:Europe/Gibraltar | CountryName:Gibraltar | Comment:
ZoneId:America/Godthab | CountryName:Greenland | Comment:most locations
ZoneId:America/Danmarkshavn | CountryName:Greenland | Comment:east coast, north of Scoresbysund
ZoneId:America/Scoresbysund | CountryName:Greenland | Comment:Scoresbysund / Ittoqqortoormiit
ZoneId:America/Thule | CountryName:Greenland | Comment:Thule / Pituffik
ZoneId:Africa/Banjul | CountryName:Gambia | Comment:
ZoneId:Africa/Conakry | CountryName:Guinea | Comment:
ZoneId:America/Guadeloupe | CountryName:Guadeloupe | Comment:
ZoneId:Africa/Malabo | CountryName:Equatorial Guinea | Comment:
ZoneId:Europe/Athens | CountryName:Greece | Comment:
ZoneId:Atlantic/South_Georgia | CountryName:South Georgia & the South Sandwich Islands | Comment:
ZoneId:America/Guatemala | CountryName:Guatemala | Comment:
ZoneId:Pacific/Guam | CountryName:Guam | Comment:
ZoneId:Africa/Bissau | CountryName:Guinea-Bissau | Comment:
ZoneId:America/Guyana | CountryName:Guyana | Comment:
ZoneId:Asia/Hong_Kong | CountryName:Hong Kong | Comment:
ZoneId:America/Tegucigalpa | CountryName:Honduras | Comment:
ZoneId:Europe/Zagreb | CountryName:Croatia | Comment:
ZoneId:America/Port-au-Prince | CountryName:Haiti | Comment:
ZoneId:Europe/Budapest | CountryName:Hungary | Comment:
ZoneId:Asia/Jakarta | CountryName:Indonesia | Comment:Java & Sumatra
ZoneId:Asia/Pontianak | CountryName:Indonesia | Comment:west & central Borneo
ZoneId:Asia/Makassar | CountryName:Indonesia | Comment:east & south Borneo, Sulawesi (Celebes), Bali, Nusa Tengarra, west Timor
ZoneId:Asia/Jayapura | CountryName:Indonesia | Comment:west New Guinea (Irian Jaya) & Malukus (Moluccas)
ZoneId:Europe/Dublin | CountryName:Ireland | Comment:
ZoneId:Asia/Jerusalem | CountryName:Israel | Comment:
ZoneId:Europe/Isle_of_Man | CountryName:Isle of Man | Comment:
ZoneId:Asia/Kolkata | CountryName:India | Comment:
ZoneId:Indian/Chagos | CountryName:British Indian Ocean Territory | Comment:
ZoneId:Asia/Baghdad | CountryName:Iraq | Comment:
ZoneId:Asia/Tehran | CountryName:Iran | Comment:
ZoneId:Atlantic/Reykjavik | CountryName:Iceland | Comment:
ZoneId:Europe/Rome | CountryName:Italy | Comment:
ZoneId:Europe/Jersey | CountryName:Jersey | Comment:
ZoneId:America/Jamaica | CountryName:Jamaica | Comment:
ZoneId:Asia/Amman | CountryName:Jordan | Comment:
ZoneId:Asia/Tokyo | CountryName:Japan | Comment:
ZoneId:Africa/Nairobi | CountryName:Kenya | Comment:
ZoneId:Asia/Bishkek | CountryName:Kyrgyzstan | Comment:
ZoneId:Asia/Phnom_Penh | CountryName:Cambodia | Comment:
ZoneId:Pacific/Tarawa | CountryName:Kiribati | Comment:Gilbert Islands
ZoneId:Pacific/Enderbury | CountryName:Kiribati | Comment:Phoenix Islands
ZoneId:Pacific/Kiritimati | CountryName:Kiribati | Comment:Line Islands
ZoneId:Indian/Comoro | CountryName:Comoros | Comment:
ZoneId:America/St_Kitts | CountryName:St Kitts & Nevis | Comment:
ZoneId:Asia/Pyongyang | CountryName:Korea (North) | Comment:
ZoneId:Asia/Seoul | CountryName:Korea (South) | Comment:
ZoneId:Asia/Kuwait | CountryName:Kuwait | Comment:
ZoneId:America/Cayman | CountryName:Cayman Islands | Comment:
ZoneId:Asia/Almaty | CountryName:Kazakhstan | Comment:most locations
ZoneId:Asia/Qyzylorda | CountryName:Kazakhstan | Comment:Qyzylorda (Kyzylorda, Kzyl-Orda)
ZoneId:Asia/Aqtobe | CountryName:Kazakhstan | Comment:Aqtobe (Aktobe)
ZoneId:Asia/Aqtau | CountryName:Kazakhstan | Comment:Atyrau (Atirau, Gur'yev), Mangghystau (Mankistau)
ZoneId:Asia/Oral | CountryName:Kazakhstan | Comment:West Kazakhstan
ZoneId:Asia/Vientiane | CountryName:Laos | Comment:
ZoneId:Asia/Beirut | CountryName:Lebanon | Comment:
ZoneId:America/St_Lucia | CountryName:St Lucia | Comment:
ZoneId:Europe/Vaduz | CountryName:Liechtenstein | Comment:
ZoneId:Asia/Colombo | CountryName:Sri Lanka | Comment:
ZoneId:Africa/Monrovia | CountryName:Liberia | Comment:
ZoneId:Africa/Maseru | CountryName:Lesotho | Comment:
ZoneId:Europe/Vilnius | CountryName:Lithuania | Comment:
ZoneId:Europe/Luxembourg | CountryName:Luxembourg | Comment:
ZoneId:Europe/Riga | CountryName:Latvia | Comment:
ZoneId:Africa/Tripoli | CountryName:Libya | Comment:
ZoneId:Africa/Casablanca | CountryName:Morocco | Comment:
ZoneId:Europe/Monaco | CountryName:Monaco | Comment:
ZoneId:Europe/Chisinau | CountryName:Moldova | Comment:
ZoneId:Europe/Podgorica | CountryName:Montenegro | Comment:
ZoneId:America/Marigot | CountryName:St Martin (French part) | Comment:
ZoneId:Indian/Antananarivo | CountryName:Madagascar | Comment:
ZoneId:Pacific/Majuro | CountryName:Marshall Islands | Comment:most locations
ZoneId:Pacific/Kwajalein | CountryName:Marshall Islands | Comment:Kwajalein
ZoneId:Europe/Skopje | CountryName:Macedonia | Comment:
ZoneId:Africa/Bamako | CountryName:Mali | Comment:
ZoneId:Asia/Rangoon | CountryName:Myanmar (Burma) | Comment:
ZoneId:Asia/Ulaanbaatar | CountryName:Mongolia | Comment:most locations
ZoneId:Asia/Hovd | CountryName:Mongolia | Comment:Bayan-Olgiy, Govi-Altai, Hovd, Uvs, Zavkhan
ZoneId:Asia/Choibalsan | CountryName:Mongolia | Comment:Dornod, Sukhbaatar
ZoneId:Asia/Macau | CountryName:Macau | Comment:
ZoneId:Pacific/Saipan | CountryName:Northern Mariana Islands | Comment:
ZoneId:America/Martinique | CountryName:Martinique | Comment:
ZoneId:Africa/Nouakchott | CountryName:Mauritania | Comment:
ZoneId:America/Montserrat | CountryName:Montserrat | Comment:
ZoneId:Europe/Malta | CountryName:Malta | Comment:
ZoneId:Indian/Mauritius | CountryName:Mauritius | Comment:
ZoneId:Indian/Maldives | CountryName:Maldives | Comment:
ZoneId:Africa/Blantyre | CountryName:Malawi | Comment:
ZoneId:America/Mexico_City | CountryName:Mexico | Comment:Central Time - most locations
ZoneId:America/Cancun | CountryName:Mexico | Comment:Central Time - Quintana Roo
ZoneId:America/Merida | CountryName:Mexico | Comment:Central Time - Campeche, Yucatan
ZoneId:America/Monterrey | CountryName:Mexico | Comment:Mexican Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas away from US border
ZoneId:America/Matamoros | CountryName:Mexico | Comment:US Central Time - Coahuila, Durango, Nuevo Leon, Tamaulipas near US border
ZoneId:America/Mazatlan | CountryName:Mexico | Comment:Mountain Time - S Baja, Nayarit, Sinaloa
ZoneId:America/Chihuahua | CountryName:Mexico | Comment:Mexican Mountain Time - Chihuahua away from US border
ZoneId:America/Ojinaga | CountryName:Mexico | Comment:US Mountain Time - Chihuahua near US border
ZoneId:America/Hermosillo | CountryName:Mexico | Comment:Mountain Standard Time - Sonora
ZoneId:America/Tijuana | CountryName:Mexico | Comment:US Pacific Time - Baja California near US border
ZoneId:America/Santa_Isabel | CountryName:Mexico | Comment:Mexican Pacific Time - Baja California away from US border
ZoneId:America/Bahia_Banderas | CountryName:Mexico | Comment:Mexican Central Time - Bahia de Banderas
ZoneId:Asia/Kuala_Lumpur | CountryName:Malaysia | Comment:peninsular Malaysia
ZoneId:Asia/Kuching | CountryName:Malaysia | Comment:Sabah & Sarawak
ZoneId:Africa/Maputo | CountryName:Mozambique | Comment:
ZoneId:Africa/Windhoek | CountryName:Namibia | Comment:
ZoneId:Pacific/Noumea | CountryName:New Caledonia | Comment:
ZoneId:Africa/Niamey | CountryName:Niger | Comment:
ZoneId:Pacific/Norfolk | CountryName:Norfolk Island | Comment:
ZoneId:Africa/Lagos | CountryName:Nigeria | Comment:
ZoneId:America/Managua | CountryName:Nicaragua | Comment:
ZoneId:Europe/Amsterdam | CountryName:Netherlands | Comment:
ZoneId:Europe/Oslo | CountryName:Norway | Comment:
ZoneId:Asia/Kathmandu | CountryName:Nepal | Comment:
ZoneId:Pacific/Nauru | CountryName:Nauru | Comment:
ZoneId:Pacific/Niue | CountryName:Niue | Comment:
ZoneId:Pacific/Auckland | CountryName:New Zealand | Comment:most locations
ZoneId:Pacific/Chatham | CountryName:New Zealand | Comment:Chatham Islands
ZoneId:Asia/Muscat | CountryName:Oman | Comment:
ZoneId:America/Panama | CountryName:Panama | Comment:
ZoneId:America/Lima | CountryName:Peru | Comment:
ZoneId:Pacific/Tahiti | CountryName:French Polynesia | Comment:Society Islands
ZoneId:Pacific/Marquesas | CountryName:French Polynesia | Comment:Marquesas Islands
ZoneId:Pacific/Gambier | CountryName:French Polynesia | Comment:Gambier Islands
ZoneId:Pacific/Port_Moresby | CountryName:Papua New Guinea | Comment:
ZoneId:Asia/Manila | CountryName:Philippines | Comment:
ZoneId:Asia/Karachi | CountryName:Pakistan | Comment:
ZoneId:Europe/Warsaw | CountryName:Poland | Comment:
ZoneId:America/Miquelon | CountryName:St Pierre & Miquelon | Comment:
ZoneId:Pacific/Pitcairn | CountryName:Pitcairn | Comment:
ZoneId:America/Puerto_Rico | CountryName:Puerto Rico | Comment:
ZoneId:Asia/Gaza | CountryName:Palestine | Comment:Gaza Strip
ZoneId:Asia/Hebron | CountryName:Palestine | Comment:West Bank
ZoneId:Europe/Lisbon | CountryName:Portugal | Comment:mainland
ZoneId:Atlantic/Madeira | CountryName:Portugal | Comment:Madeira Islands
ZoneId:Atlantic/Azores | CountryName:Portugal | Comment:Azores
ZoneId:Pacific/Palau | CountryName:Palau | Comment:
ZoneId:America/Asuncion | CountryName:Paraguay | Comment:
ZoneId:Asia/Qatar | CountryName:Qatar | Comment:
ZoneId:Indian/Reunion | CountryName:Reunion | Comment:
ZoneId:Europe/Bucharest | CountryName:Romania | Comment:
ZoneId:Europe/Belgrade | CountryName:Serbia | Comment:
ZoneId:Europe/Kaliningrad | CountryName:Russia | Comment:Moscow-01 - Kaliningrad
ZoneId:Europe/Moscow | CountryName:Russia | Comment:Moscow+00 - west Russia
ZoneId:Europe/Volgograd | CountryName:Russia | Comment:Moscow+00 - Caspian Sea
ZoneId:Europe/Samara | CountryName:Russia | Comment:Moscow+00 - Samara, Udmurtia
ZoneId:Europe/Simferopol | CountryName:Russia | Comment:Moscow+00 - Crimea
ZoneId:Asia/Yekaterinburg | CountryName:Russia | Comment:Moscow+02 - Urals
ZoneId:Asia/Omsk | CountryName:Russia | Comment:Moscow+03 - west Siberia
ZoneId:Asia/Novosibirsk | CountryName:Russia | Comment:Moscow+03 - Novosibirsk
ZoneId:Asia/Novokuznetsk | CountryName:Russia | Comment:Moscow+03 - Novokuznetsk
ZoneId:Asia/Krasnoyarsk | CountryName:Russia | Comment:Moscow+04 - Yenisei River
ZoneId:Asia/Irkutsk | CountryName:Russia | Comment:Moscow+05 - Lake Baikal
ZoneId:Asia/Yakutsk | CountryName:Russia | Comment:Moscow+06 - Lena River
ZoneId:Asia/Khandyga | CountryName:Russia | Comment:Moscow+06 - Tomponsky, Ust-Maysky
ZoneId:Asia/Vladivostok | CountryName:Russia | Comment:Moscow+07 - Amur River
ZoneId:Asia/Sakhalin | CountryName:Russia | Comment:Moscow+07 - Sakhalin Island
ZoneId:Asia/Ust-Nera | CountryName:Russia | Comment:Moscow+07 - Oymyakonsky
ZoneId:Asia/Magadan | CountryName:Russia | Comment:Moscow+08 - Magadan
ZoneId:Asia/Kamchatka | CountryName:Russia | Comment:Moscow+08 - Kamchatka
ZoneId:Asia/Anadyr | CountryName:Russia | Comment:Moscow+08 - Bering Sea
ZoneId:Africa/Kigali | CountryName:Rwanda | Comment:
ZoneId:Asia/Riyadh | CountryName:Saudi Arabia | Comment:
ZoneId:Pacific/Guadalcanal | CountryName:Solomon Islands | Comment:
ZoneId:Indian/Mahe | CountryName:Seychelles | Comment:
ZoneId:Africa/Khartoum | CountryName:Sudan | Comment:
ZoneId:Europe/Stockholm | CountryName:Sweden | Comment:
ZoneId:Asia/Singapore | CountryName:Singapore | Comment:
ZoneId:Atlantic/St_Helena | CountryName:St Helena | Comment:
ZoneId:Europe/Ljubljana | CountryName:Slovenia | Comment:
ZoneId:Arctic/Longyearbyen | CountryName:Svalbard & Jan Mayen | Comment:
ZoneId:Europe/Bratislava | CountryName:Slovakia | Comment:
ZoneId:Africa/Freetown | CountryName:Sierra Leone | Comment:
ZoneId:Europe/San_Marino | CountryName:San Marino | Comment:
ZoneId:Africa/Dakar | CountryName:Senegal | Comment:
ZoneId:Africa/Mogadishu | CountryName:Somalia | Comment:
ZoneId:America/Paramaribo | CountryName:Suriname | Comment:
ZoneId:Africa/Juba | CountryName:South Sudan | Comment:
ZoneId:Africa/Sao_Tome | CountryName:Sao Tome & Principe | Comment:
ZoneId:America/El_Salvador | CountryName:El Salvador | Comment:
ZoneId:America/Lower_Princes | CountryName:St Maarten (Dutch part) | Comment:
ZoneId:Asia/Damascus | CountryName:Syria | Comment:
ZoneId:Africa/Mbabane | CountryName:Swaziland | Comment:
ZoneId:America/Grand_Turk | CountryName:Turks & Caicos Is | Comment:
ZoneId:Africa/Ndjamena | CountryName:Chad | Comment:
ZoneId:Indian/Kerguelen | CountryName:French Southern & Antarctic Lands | Comment:
ZoneId:Africa/Lome | CountryName:Togo | Comment:
ZoneId:Asia/Bangkok | CountryName:Thailand | Comment:
ZoneId:Asia/Dushanbe | CountryName:Tajikistan | Comment:
ZoneId:Pacific/Fakaofo | CountryName:Tokelau | Comment:
ZoneId:Asia/Dili | CountryName:East Timor | Comment:
ZoneId:Asia/Ashgabat | CountryName:Turkmenistan | Comment:
ZoneId:Africa/Tunis | CountryName:Tunisia | Comment:
ZoneId:Pacific/Tongatapu | CountryName:Tonga | Comment:
ZoneId:Europe/Istanbul | CountryName:Turkey | Comment:
ZoneId:America/Port_of_Spain | CountryName:Trinidad & Tobago | Comment:
ZoneId:Pacific/Funafuti | CountryName:Tuvalu | Comment:
ZoneId:Asia/Taipei | CountryName:Taiwan | Comment:
ZoneId:Africa/Dar_es_Salaam | CountryName:Tanzania | Comment:
ZoneId:Europe/Kiev | CountryName:Ukraine | Comment:most locations
ZoneId:Europe/Uzhgorod | CountryName:Ukraine | Comment:Ruthenia
ZoneId:Europe/Zaporozhye | CountryName:Ukraine | Comment:Zaporozh'ye, E Lugansk / Zaporizhia, E Luhansk
ZoneId:Africa/Kampala | CountryName:Uganda | Comment:
ZoneId:Pacific/Johnston | CountryName:US minor outlying islands | Comment:Johnston Atoll
ZoneId:Pacific/Midway | CountryName:US minor outlying islands | Comment:Midway Islands
ZoneId:Pacific/Wake | CountryName:US minor outlying islands | Comment:Wake Island
ZoneId:America/New_York | CountryName:United States | Comment:Eastern Time
ZoneId:America/Detroit | CountryName:United States | Comment:Eastern Time - Michigan - most locations
ZoneId:America/Kentucky/Louisville | CountryName:United States | Comment:Eastern Time - Kentucky - Louisville area
ZoneId:America/Kentucky/Monticello | CountryName:United States | Comment:Eastern Time - Kentucky - Wayne County
ZoneId:America/Indiana/Indianapolis | CountryName:United States | Comment:Eastern Time - Indiana - most locations
ZoneId:America/Indiana/Vincennes | CountryName:United States | Comment:Eastern Time - Indiana - Daviess, Dubois, Knox & Martin Counties
ZoneId:America/Indiana/Winamac | CountryName:United States | Comment:Eastern Time - Indiana - Pulaski County
ZoneId:America/Indiana/Marengo | CountryName:United States | Comment:Eastern Time - Indiana - Crawford County
ZoneId:America/Indiana/Petersburg | CountryName:United States | Comment:Eastern Time - Indiana - Pike County
ZoneId:America/Indiana/Vevay | CountryName:United States | Comment:Eastern Time - Indiana - Switzerland County
ZoneId:America/Chicago | CountryName:United States | Comment:Central Time
ZoneId:America/Indiana/Tell_City | CountryName:United States | Comment:Central Time - Indiana - Perry County
ZoneId:America/Indiana/Knox | CountryName:United States | Comment:Central Time - Indiana - Starke County
ZoneId:America/Menominee | CountryName:United States | Comment:Central Time - Michigan - Dickinson, Gogebic, Iron & Menominee Counties
ZoneId:America/North_Dakota/Center | CountryName:United States | Comment:Central Time - North Dakota - Oliver County
ZoneId:America/North_Dakota/New_Salem | CountryName:United States | Comment:Central Time - North Dakota - Morton County (except Mandan area)
ZoneId:America/North_Dakota/Beulah | CountryName:United States | Comment:Central Time - North Dakota - Mercer County
ZoneId:America/Denver | CountryName:United States | Comment:Mountain Time
ZoneId:America/Boise | CountryName:United States | Comment:Mountain Time - south Idaho & east Oregon
ZoneId:America/Phoenix | CountryName:United States | Comment:Mountain Standard Time - Arizona (except Navajo)
ZoneId:America/Los_Angeles | CountryName:United States | Comment:Pacific Time
ZoneId:America/Anchorage | CountryName:United States | Comment:Alaska Time
ZoneId:America/Juneau | CountryName:United States | Comment:Alaska Time - Alaska panhandle
ZoneId:America/Sitka | CountryName:United States | Comment:Alaska Time - southeast Alaska panhandle
ZoneId:America/Yakutat | CountryName:United States | Comment:Alaska Time - Alaska panhandle neck
ZoneId:America/Nome | CountryName:United States | Comment:Alaska Time - west Alaska
ZoneId:America/Adak | CountryName:United States | Comment:Aleutian Islands
ZoneId:America/Metlakatla | CountryName:United States | Comment:Metlakatla Time - Annette Island
ZoneId:Pacific/Honolulu | CountryName:United States | Comment:Hawaii
ZoneId:America/Montevideo | CountryName:Uruguay | Comment:
ZoneId:Asia/Samarkand | CountryName:Uzbekistan | Comment:west Uzbekistan
ZoneId:Asia/Tashkent | CountryName:Uzbekistan | Comment:east Uzbekistan
ZoneId:Europe/Vatican | CountryName:Vatican City | Comment:
ZoneId:America/St_Vincent | CountryName:St Vincent | Comment:
ZoneId:America/Caracas | CountryName:Venezuela | Comment:
ZoneId:America/Tortola | CountryName:Virgin Islands (UK) | Comment:
ZoneId:America/St_Thomas | CountryName:Virgin Islands (US) | Comment:
ZoneId:Asia/Ho_Chi_Minh | CountryName:Vietnam | Comment:
ZoneId:Pacific/Efate | CountryName:Vanuatu | Comment:
ZoneId:Pacific/Wallis | CountryName:Wallis & Futuna | Comment:
ZoneId:Pacific/Apia | CountryName:Samoa (western) | Comment:
ZoneId:Asia/Aden | CountryName:Yemen | Comment:
ZoneId:Indian/Mayotte | CountryName:Mayotte | Comment:
ZoneId:Africa/Johannesburg | CountryName:South Africa | Comment:
ZoneId:Africa/Lusaka | CountryName:Zambia | Comment:
ZoneId:Africa/Harare | CountryName:Zimbabwe | Comment:
*/
}
}
@DiskJunky
Copy link

Great work listing this - it was annoyingly difficult to find the zone IDs online

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment