2 # Locale::Country - ISO codes for country identification (ISO 3166)
4 # $Id: Country.pm,v 2.2 2002/03/06 10:45:38 neilb Exp $
7 package Locale::Country;
13 use Locale::Constants;
16 #-----------------------------------------------------------------------
17 # Public Global Variables
18 #-----------------------------------------------------------------------
19 use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
20 $VERSION = sprintf("%d.%02d", q$Revision: 2.2 $ =~ /(\d+)\.(\d+)/);
22 @EXPORT = qw(code2country country2code
23 all_country_codes all_country_names
25 LOCALE_CODE_ALPHA_2 LOCALE_CODE_ALPHA_3 LOCALE_CODE_NUMERIC);
27 #-----------------------------------------------------------------------
28 # Private Global Variables
29 #-----------------------------------------------------------------------
34 #=======================================================================
36 # code2country ( CODE [, CODESET ] )
38 #=======================================================================
42 my $codeset = @_ > 0 ? shift : LOCALE_CODE_DEFAULT;
45 return undef unless defined $code;
47 #-------------------------------------------------------------------
48 # Make sure the code is in the right form before we use it
49 # to look up the corresponding country.
50 # We have to sprintf because the codes are given as 3-digits,
51 # with leading 0's. Eg 052 for Barbados.
52 #-------------------------------------------------------------------
53 if ($codeset == LOCALE_CODE_NUMERIC)
55 return undef if ($code =~ /\D/);
56 $code = sprintf("%.3d", $code);
63 if (exists $CODES->[$codeset]->{$code})
65 return $CODES->[$codeset]->{$code};
69 #---------------------------------------------------------------
70 # no such country code!
71 #---------------------------------------------------------------
77 #=======================================================================
79 # country2code ( NAME [, CODESET ] )
81 #=======================================================================
85 my $codeset = @_ > 0 ? shift : LOCALE_CODE_DEFAULT;
88 return undef unless defined $country;
89 $country = lc($country);
90 if (exists $COUNTRIES->[$codeset]->{$country})
92 return $COUNTRIES->[$codeset]->{$country};
96 #---------------------------------------------------------------
98 #---------------------------------------------------------------
104 #=======================================================================
106 # country_code2code ( NAME [, CODESET ] )
108 #=======================================================================
109 sub country_code2code
111 (@_ == 3) or croak "country_code2code() takes 3 arguments!";
120 return undef if $inset == $outset;
121 $country = code2country($code, $inset);
122 return undef if not defined $country;
123 $outcode = country2code($country, $outset);
128 #=======================================================================
130 # all_country_codes ( [ CODESET ] )
132 #=======================================================================
133 sub all_country_codes
135 my $codeset = @_ > 0 ? shift : LOCALE_CODE_DEFAULT;
137 return keys %{ $CODES->[$codeset] };
141 #=======================================================================
143 # all_country_names ( [ CODESET ] )
145 #=======================================================================
146 sub all_country_names
148 my $codeset = @_ > 0 ? shift : LOCALE_CODE_DEFAULT;
150 return values %{ $CODES->[$codeset] };
154 #=======================================================================
156 # alias_code ( ALIAS => CODE [ , CODESET ] )
158 # Add an alias for an existing code. If the CODESET isn't specified,
159 # then we use the default (currently the alpha-2 codeset).
161 # Locale::Country::alias_code('uk' => 'gb');
163 #=======================================================================
168 my $codeset = @_ > 0 ? shift : LOCALE_CODE_DEFAULT;
173 if (not exists $CODES->[$codeset]->{$real})
175 carp "attempt to alias \"$alias\" to unknown country code \"$real\"\n";
178 $country = $CODES->[$codeset]->{$real};
179 $CODES->[$codeset]->{$alias} = $country;
180 $COUNTRIES->[$codeset]->{"\L$country"} = $alias;
185 # old name of function for backwards compatibility
186 *_alias_code = *alias_code;
189 #=======================================================================
193 # change the official name for a country, eg:
194 # gb => 'Great Britain'
195 # rather than the standard 'United Kingdom'. The original is retained
196 # as an alias, but the new name will be returned if you lookup the
199 #=======================================================================
203 my $new_name = shift;
204 my $codeset = @_ > 0 ? shift : _code2codeset($code);
209 if (not defined $codeset)
211 carp "rename_country(): unknown country code \"$code\"\n";
215 $country = $CODES->[$codeset]->{$code};
217 foreach my $cset (LOCALE_CODE_ALPHA_2,
221 if ($cset == $codeset)
227 $c = country_code2code($code, $codeset, $cset);
230 $CODES->[$cset]->{$c} = $new_name;
231 $COUNTRIES->[$cset]->{"\L$new_name"} = $c;
238 #=======================================================================
242 # given a country code in an unknown codeset, return the codeset
243 # it is from, or undef.
245 #=======================================================================
251 foreach my $codeset (LOCALE_CODE_ALPHA_2, LOCALE_CODE_ALPHA_3,
254 return $codeset if (exists $CODES->[$codeset]->{$code})
261 #=======================================================================
263 # initialisation code - stuff the DATA into the ALPHA2 hash
265 #=======================================================================
267 my ($alpha2, $alpha3, $numeric);
268 my ($country, @countries);
275 ($alpha2, $alpha3, $numeric, @countries) = split(/:/, $_);
277 $CODES->[LOCALE_CODE_ALPHA_2]->{$alpha2} = $countries[0];
278 foreach $country (@countries)
280 $COUNTRIES->[LOCALE_CODE_ALPHA_2]->{"\L$country"} = $alpha2;
285 $CODES->[LOCALE_CODE_ALPHA_3]->{$alpha3} = $countries[0];
286 foreach $country (@countries)
288 $COUNTRIES->[LOCALE_CODE_ALPHA_3]->{"\L$country"} = $alpha3;
294 $CODES->[LOCALE_CODE_NUMERIC]->{$numeric} = $countries[0];
295 foreach $country (@countries)
297 $COUNTRIES->[LOCALE_CODE_NUMERIC]->{"\L$country"} = $numeric;
308 ae:are:784:United Arab Emirates
309 af:afg:004:Afghanistan
310 ag:atg:028:Antigua and Barbuda
314 an:ant:530:Netherlands Antilles
318 as:asm:016:American Samoa
322 az:aze:031:Azerbaijan
323 ba:bih:070:Bosnia and Herzegovina
325 bd:bgd:050:Bangladesh
327 bf:bfa:854:Burkina Faso
333 bn:brn:096:Brunei Darussalam
343 cc:::Cocos (Keeling) Islands
344 cd:cod:180:Congo, The Democratic Republic of the:Congo, Democratic Republic of the
345 cf:caf:140:Central African Republic
347 ch:che:756:Switzerland
348 ci:civ:384:Cote D'Ivoire
349 ck:cok:184:Cook Islands
354 cr:cri:188:Costa Rica
356 cv:cpv:132:Cape Verde
357 cx:::Christmas Island
359 cz:cze:203:Czech Republic
364 do:dom:214:Dominican Republic
369 eh:esh:732:Western Sahara
375 fk:flk:238:Falkland Islands (Malvinas):Falkland Islands (Islas Malvinas)
376 fm:fsm:583:Micronesia, Federated States of
377 fo:fro:234:Faroe Islands
379 fx:::France, Metropolitan
381 gb:gbr:826:United Kingdom:Great Britain
384 gf:guf:254:French Guiana
390 gp:glp:312:Guadeloupe
391 gq:gnq:226:Equatorial Guinea
393 gs:::South Georgia and the South Sandwich Islands
396 gw:gnb:624:Guinea-Bissau
399 hm:::Heard Island and McDonald Islands
408 io:::British Indian Ocean Territory
410 ir:irn:364:Iran, Islamic Republic of:Iran
417 kg:kgz:417:Kyrgyzstan
421 kn:kna:659:Saint Kitts and Nevis
422 kp:prk:408:Korea, Democratic People's Republic of:Korea, North:North Korea
423 kr:kor:410:Korea, Republic of:Korea, South:South Korea
425 ky:cym:136:Cayman Islands
427 la:lao:418:Lao People's Democratic Republic
429 lc:lca:662:Saint Lucia
430 li:lie:438:Liechtenstein
435 lu:lux:442:Luxembourg
437 ly:lby:434:Libyan Arab Jamahiriya:Libya
440 md:mda:498:Moldova, Republic of
441 mg:mdg:450:Madagascar
442 mh:mhl:584:Marshall Islands
443 mk:mkd:807:Macedonia, the Former Yugoslav Republic of:Macedonia, Former Yugoslav Republic of:Macedonia
448 mp:mnp:580:Northern Mariana Islands
449 mq:mtq:474:Martinique
450 mr:mrt:478:Mauritania
451 ms:msr:500:Montserrat
458 mz:moz:508:Mozambique
460 nc:ncl:540:New Caledonia
462 nf:nfk:574:Norfolk Island
465 nl:nld:528:Netherlands
470 nz:nzl:554:New Zealand
474 pf:pyf:258:French Polynesia
475 pg:png:598:Papua New Guinea
476 ph:phl:608:Philippines
479 pm:spm:666:Saint Pierre and Miquelon
480 pn:pcn:612:Pitcairn:Pitcairn Island
481 pr:pri:630:Puerto Rico
482 ps:pse:275:Palestinian Territory, Occupied
489 ru:rus:643:Russian Federation:Russia
491 sa:sau:682:Saudi Arabia
492 sb:slb:090:Solomon Islands
493 sc:syc:690:Seychelles
497 sh:shn:654:Saint Helena
499 sj:sjm:744:Svalbard and Jan Mayen:Jan Mayen:Svalbard
501 sl:sle:694:Sierra Leone
502 sm:smr:674:San Marino
506 st:stp:678:Sao Tome and Principe
507 sv:slv:222:El Salvador
508 sy:syr:760:Syrian Arab Republic:Syria
510 tc:tca:796:Turks and Caicos Islands
512 tf:::French Southern Territories
515 tj:tjk:762:Tajikistan
517 tm:tkm:795:Turkmenistan
520 tp:tmp:626:East Timor
522 tt:tto:780:Trinidad and Tobago
524 tw:twn:158:Taiwan, Province of China:Taiwan
525 tz:tza:834:Tanzania, United Republic of:Tanzania
528 um:::United States Minor Outlying Islands
529 us:usa:840:United States:USA:United States of America
531 uz:uzb:860:Uzbekistan
532 va:vat:336:Holy See (Vatican City State):Hole See (Vatican City)
533 vc:vct:670:Saint Vincent and the Grenadines
535 vg:vgb:092:Virgin Islands, British:British Virgin Islands
536 vi:vir:850:Virgin Islands, U.S.
539 wf:wlf:876:Wallis and Futuna
543 yu:yug:891:Yugoslavia
544 za:zaf:710:South Africa