X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fshow%2Fhfstats.pl;fp=cmd%2Fshow%2Fhfstats.pl;h=63a3b56c1eaa0532f92d7f7db3dfecbcdd5bc297;hb=70ffd373d199a2a83072da4e2b75572a2270383f;hp=0000000000000000000000000000000000000000;hpb=85f715f5353a78bac85f1802c22d6e7b9352ca81;p=spider.git diff --git a/cmd/show/hfstats.pl b/cmd/show/hfstats.pl new file mode 100644 index 00000000..63a3b56c --- /dev/null +++ b/cmd/show/hfstats.pl @@ -0,0 +1,51 @@ +# +# Show total HF DX Spot Stats per day +# +# Copyright (c) 2001 Dirk Koopman G1TLH +# +# $Id$ +# + +my ($self, $line) = @_; +my @f = split /\s+/, $line; +my $days = 31; +my $now = Julian::Day->new(time())->sub(31); +my $i; +my @in; + +# 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 unless $l[0] eq 'TOTALS'; + next unless $l[1]; + $l[0] = $now; + push @in, \@l; + last; + } + $now = $now->add(1); +} + +my @out; +my @tot; + +push @out, $self->msg('stathf'); +push @out, sprintf "%11s|%6s|%5s|%5s|%5s|%5s|%5s|%5s|%5s|%5s|%5s|", qw(Date Total 160m 80m 40m 30m 20m 17m 15m 12m 10m); +foreach my $ref (@in) { + my $linetot = 0; + foreach my $j (3..11) { + $tot[$j] += $ref->[$j]; + $tot[0] += $ref->[$j]; + $linetot += $ref->[$j]; + } + push @out, join '|', sprintf("%11s|%6d", $ref->[0]->as_string, $linetot), map {$_ ? sprintf("%5d", $_) : ' '} @$ref[3..11], ""; +} +push @out, join '|', sprintf("%11s|%6d", 'Total', $tot[0]), map {$_ ? sprintf("%5d", $_) : ' '} @tot[3..11], ""; + +return (1, @out);