// Create zone mappings for the metazone
UResourceBundle bundle = UResourceBundle.getBundleInstance(ICUResourceBundle.ICU_BASE_NAME, "metaZones");
UResourceBundle mapTimezones = bundle.get("mapTimezones");
UResourceBundle territoryMap = mapTimezones.get(metazoneID);
zoneMap = new HashMap<String, String>();
Set<String> territories = territoryMap.keySet();
for (String territory : territories) {
String zone = territoryMap.getString(territory);
zoneMap.put(territory, zone);
}
// cache this