How time zone grouping works
mainTime zones are grouped together if they meet all three of these criteria:
- They are in the same country.
- They have the same DST or summer time offsets.
- They have the same non-DST, non-summer time offsets.
The "main" time zone in a group is determined by the one with the most populated city. When grouping occurs, the mainCities array provides the cities ranked by population.
{
name: "America/Dawson_Creek",
alternativeName: "Mountain Time",
group: ["America/Creston", "America/Dawson_Creek", "America/Fort_Nelson"],
continentCode: "NA",
continentName: "North America",
countryName: "Canada",
countryCode: "CA",
mainCities: ["Fort St. John", "Creston", "Fort Nelson"],
rawOffsetInMinutes: -420,
abbreviation: "MST",
rawFormat: "-07:00 Mountain Time - Fort St. John, Creston, Fort Nelson",
currentTimeOffsetInMinutes: -420,
currentTimeFormat: "-07:00 Mountain Time - Fort St. John, Creston"
}