3 # Something to create my subset of the US call book data,
4 # in my flat file form, either from the main data base or
5 # else the daily updates.
7 # You can get the main database from:
9 # http://wireless.fcc.gov/uls/data/complete/l_amat.zip
11 # The daily data bases are available as a set of seven from here:-
13 # http://wireless.fcc.gov/uls/data/daily/l_am_sat.zip
14 # http://wireless.fcc.gov/uls/data/daily/l_am_sun.zip
15 # http://wireless.fcc.gov/uls/data/daily/l_am_mon.zip
16 # http://wireless.fcc.gov/uls/data/daily/l_am_tue.zip
17 # http://wireless.fcc.gov/uls/data/daily/l_am_wed.zip
18 # http://wireless.fcc.gov/uls/data/daily/l_am_thu.zip
19 # http://wireless.fcc.gov/uls/data/daily/l_am_fri.zip
21 # this program expects one or more zip files containing the call book
24 # Copyright (c) 2002 Dirk Koopman G1TLH
31 # make sure that modules are searched in the order local then perl
33 # root of directory tree for this system
37 $root = $ENV{'DXSPIDER_ROOT'} if $ENV{'DXSPIDER_ROOT'};
39 unshift @INC, "$root/perl"; # this IS the right way round!
40 unshift @INC, "$root/local";
44 use Archive::Zip qw(:ERROR_CODES);
45 use Archive::Zip::MemberRead;
49 my $blksize = 1024 * 1024;
53 my $dbrawfn = "$main::data/usdbraw.gz";
55 rename "$dbrawfn.oo", "$dbrawfn.ooo";
56 rename "$dbrawfn.o", "$dbrawfn.oo";
57 rename "$dbrawfn", "$dbrawfn.o";
58 my $gzfh = gzopen($dbrawfn, "wb") or die "Cannot open $dbrawfn $!";
62 foreach my $argv (@ARGV) {
63 my $zip = new Archive::Zip($argv) or die "Cannot open $argv $!\n";
64 print "Doing $argv\n";
65 handleEN($zip, $argv);
66 handleAM($zip, $argv);
67 handleHS($zip, $argv);
76 my ($zip, $argv) = @_;
78 my $ofn = "$main::data/$mname";
79 print " Handling EN records, unzipping";
80 if ($zip->extractMember($mname, $ofn) == AZ_OK) {
81 my $fh = new IO::File "$ofn" or die "Cannot open $ofn $!";
89 while (my $l = $fh->getline) {
91 my ($rt,$usi,$ulsfn,$ebfno,$call,$type,$lid,$name,$first,$middle,$last,$suffix,
92 $phone,$fax,$email,$street,$city,$state,$zip,$pobox,$attl,$sgin,$frn) = split /\|/, $l;
94 # print "ERR: $l\n" unless $call && $city && $state;
96 if ($call && $city && $state) {
97 my $rec = uc join '|', $call,$city,$state if $city && $state;
99 if (length $buf > $blksize) {
100 $gzfh->gzwrite($buf);
106 $gzfh->gzwrite($buf) if length $buf;
107 print ", $count records\n";
112 print "EN missing in $argv\n";