-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproc.pl
130 lines (122 loc) · 4.46 KB
/
proc.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
use warnings;
use strict;
use Text::CSV;
use Switch;
use open IN => ':encoding(cp1252)', OUT => ':utf8', ':std';
my %states = (
'Alabama' => 'AL',
'Alaska' => 'AK',
'Arizona' => 'AZ',
'Arkansas' => 'AR',
'California' => 'CA',
'Colorado' => 'CO',
'Connecticut' => 'CT',
'Delaware' => 'DE',
'Florida' => 'FL',
'Georgia' => 'GA',
'Hawaii' => 'HI',
'Idaho' => 'ID',
'Illinois' => 'IL',
'Indiana' => 'IN',
'Iowa' => 'IA',
'Kansas' => 'KS',
'Kentucky' => 'KY',
'Louisiana' => 'LA',
'Maine' => 'ME',
'Maryland' => 'MD',
'Massachusetts' => 'MA',
'Michigan' => 'MI',
'Minnesota' => 'MN',
'Mississippi' => 'MS',
'Missouri' => 'MO',
'Montana' => 'MT',
'Nebraska' => 'NE',
'Nevada' => 'NV',
'New Hampshire' => 'NH',
'New Jersey' => 'NJ',
'New Mexico' => 'NM',
'New York' => 'NY',
'North Carolina' => 'NC',
'North Dakota' => 'ND',
'Ohio' => 'OH',
'Oklahoma' => 'OK',
'Oregon' => 'OR',
'Pennsylvania' => 'PA',
'Rhode Island' => 'RI',
'South Carolina' => 'SC',
'South Dakota' => 'SD',
'Tennessee' => 'TN',
'Texas' => 'TX',
'Utah' => 'UT',
'Vermont' => 'VT',
'Virginia' => 'VA',
'Washington' => 'WA',
'West Virginia' => 'WV',
'Wisconsin' => 'WI',
'Wyoming' => 'WY',
'District of Columbia' => 'DC',
'Puerto Rico' => 'PR',
);
my @rows;
my $csv = Text::CSV->new () # should set binary attribute.
or die "Cannot use CSV: ".Text::CSV->error_diag ();
#my %fix = ('Islamorada, Village of Islands village; Florida' => 'Islamorada, Village of Islands village, Florida',
# 'Louisville/Jefferson County metro government (balance), Kentucky' => 'Louisville/Jefferson County metropolitan government (balance), Kentucky',
# 'Carson City, Nevada' => 'Carson City city, Nevada',
# 'Lynchburg, Moore County metropolitan government; Tennessee', 'Lynchburg, Moore County metropolitan government, Tennessee',
$/ = "\x0d\x0a";
<>;
<>;
while ( <> ) {
chomp;
$csv->parse($_);
my ($c0,$c1,$what,$pop) = $csv->fields( $_ );
$pop =~ s/\(r\d+\)$//;
switch ($c0) {
case /^0500000/ {
my ($name,$loc) = $what =~ /^(.+)[,;] (.+)$/ or die "$what";
my $type = '';
die "$loc" unless exists $states{$loc};
print "county \t$name\t$states{$loc}\t$type\t$pop\n";
}
case /^1600000/ {
#$what =~ /^(.+) (CDP|city|town|village|city and borough|borough|urbana|municipality|village|comunidad|municipality|consolidated government|metro government|metropolitan government|urban county|unified government|)( \(.+\)|)[,;] (.+)$/ or warn $what;
my ($name,$loc) = $what =~ /^(.+)[,;] (.+)$/ or die "$what";
my $type = '';
my $suffix = '';
$suffix = " $1" if $name =~ s/ (\([A-Z].+\))$//;
$type = $1 if $name =~ s/ (\(.+\))$//;
while ($name =~ s/ (CDP|[a-z]+)$//) {
$type = "$1 $type";
}
die "$loc" unless exists $states{$loc};
print "place\t$name$suffix\t$states{$loc}\t$type\t$pop\n";
}
case /^310M100/ {
my ($name,$loc,$type) = $what =~ /^(.+), (.+) (Micro Area|Metro Area)$/;
$name =~ s/--/;/g or $name =~ s/-/;/g;
$loc =~ s/-/;/g;
print "ma\t$name\t$loc\t$type\t$pop\n";
}
case /^400C100/ {
my ($name,$loc,$type) = $what =~ /^(.+), (.+) (Urbanized Area|Urban Cluster) \(2010\)/ or die;
$name =~ s/--/;/g;
$loc =~ s/--/;/g;
print "ua\t$name\t$loc\t$type\t$pop\n";
}
}
# next if $c0 =~ /^2500000/;
# die "$what|$pop" unless $pop =~ /^[0-9]+$/;
# #$what = $fix{$what} if $row->[0] =~ /^1600000/ and defined $fix{$what};
# switch ($what) {
# case /^(.+) (County|Municipio|Census Area|Municipality|Borough|Parish), (.+)$/ {}
# case /^(.+) (CDP|city|town|village|city and borough|borough|urbana|municipality|village|comunidad|municipality|consolidated government|metro government|metropolitan government|urban county|unified government)(| \(.+\))[,;] (.+)$/ {}
# case /^(.+), (.+) (Micro|Metro) Area$/ {}
# case /^(.+), (.+) (Urbanized Area)|(Urban Cluster) \(2010\)/ {}
# case /^(.+), (.+) CSA/ {}
# else {warn "$c0|$what|$pop" if $pop >= 5000};
# }
# push @rows, [$what,$pop];
}
$csv->eof or $csv->error_diag();
#print @rows+0,"\n";