X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;ds=inline;f=cmd%2Fshow%2Fvhftable.pl;fp=cmd%2Fshow%2Fvhftable.pl;h=9849db4a178b4f268a1457c535fc3d05fe89f0eb;hb=70ffd373d199a2a83072da4e2b75572a2270383f;hp=0000000000000000000000000000000000000000;hpb=85f715f5353a78bac85f1802c22d6e7b9352ca81;p=spider.git diff --git a/cmd/show/vhftable.pl b/cmd/show/vhftable.pl new file mode 100644 index 00000000..9849db4a --- /dev/null +++ b/cmd/show/vhftable.pl @@ -0,0 +1,74 @@ +# +# do an VHFSpot table +# +# Copyright (c) 2001 Dirk Koopman G1TLH +# +# $Id$ +# + +my ($self, $line) = @_; +my @f = split /\s+/, $line; +my @calls; +my $days = 31; +my @dxcc; + +push @dxcc, (61..67) if $self->dxcc >= 61 && $self->dxcc < 67; +push @dxcc, $self->dxcc unless @dxcc; + +my $now = Julian::Day->new(time())->sub(1); +my %list; +my $i; + +# generate the spot list +for ($i = 0; $i < $days; $i++) { + my $fh = $Spot::statp->open($now); # get the next file + unless ($fh) { + Spot::genstats($now); + $fh = $Spot::statp->open($now); + } + while (<$fh>) { + chomp; + my @l = split /\^/; + next if $l[0] eq 'TOTALS'; + next unless grep $l[2] eq $_, @dxcc; + my $ref = $list{$l[0]} || [0,0,0,0,0,0,0,0,0,0]; + my $j = 1; + foreach my $item (@l[12..14, 16..22]) { + $ref->[$j] += $item; + $ref->[0] += $item; + $j++; + } + $list{$l[0]} = $ref if $ref->[0]; + } + $now = $now->sub(1); +} + +my @out; +my @tot; +my $nocalls; + +push @out, $self->msg('statvhft', join ',', @dxcc); +push @out, sprintf "%10s|%4s|%4s|%4s|%4s|%4s|%4s|%4s|%4s|%4s|%4s|", qw(Callsign Tot 6m 4m 2m 70cm 23cm 13cm 9cm 6cm 3cm); + +for (sort {$list{$b}->[0] <=> $list{$a}->[0] || $a cmp $b} keys %list) { + my $ref = $list{$_}; + $nocalls++; + my @list = (sprintf "%10s", $_); + foreach my $j (0..9) { + my $r = $ref->[$j]; + if ($r) { + $tot[$j] += $r; + $r = sprintf("%4d", $r); + } else { + $r = ' '; + } + push @list, $r; + } + push @out, join('|', @list, ""); +} + +$nocalls = sprintf "%10s", "$nocalls calls"; +@tot = map {$_ ? sprintf("%4d", $_) : ' ' } @tot; +push @out, join('|', $nocalls, @tot, ""); + +return (1, @out);