countries: change antarctica class to .an
[sheet.git] / tools / mkcountries-geonames
index b10bb83705bf8c2d3c3ce77314a44db65902be60..325379ce7eb8591c4795198175f6a51f6382035b 100755 (executable)
@@ -53,7 +53,6 @@ my %cc;  # map of country code to info array
 while (<>) {
        /^#/ and next;  # skip comments
        my ($iso, $name, $cont) = (split /\t/)[0, 4, 8];
-       $cont =~ s/\AAN\z/aa/;  # different antarctica abbreviation
        my $class = "c-\L$cont";
        $cc{ lc $iso } = [ $name, $class ];
 }