4 # Copyright (c) 2001 Dirk Koopman G1TLH
8 # Modified on 2002/10/27 by K1XX for his own use
9 # Valid inputs (and then tarted up by G1TLH to include in the
12 # sh/hftable (original operation, starts from today for own prefix)
14 # sh/hftable [<date>] [<no. of days>] [prefix] [prefix] [prefix] ..
16 # sh/hftable [<date>] [<no. of days>] (data from your own prefix)
18 # sh/hftable [<date>] [<no. of days>] [callsign] [callsign] [callsign] ..
20 # sh/hftable [<date>] [<no of days>] all
23 # Known good data formats
25 # 24-Nov-02 (using - . or / as separator)
26 # 24nov02 (ie no separators)
29 # mm-dd-yy (this depends on your locale settings)
30 # 11-24-02 (using - . or / as separator)
37 my ($self, $line) = @_;
38 my @f = split /\s+/, $line;
54 if ($f =~ /^\d+$/ && $f < 366) { # no of days
58 if (my $utime = Date::Parse::str2time($f)) { # is it a parseable date?
60 $now = Julian::Day->new($utime);
61 $date = cldate($utime);
65 if (is_callsign($f)) {
74 if (my @ciz = Prefix::to_ciz('nc', $f)) {
75 push @dxcc, map {[$_, 2]} @ciz;
78 push @out, $self->msg('e27', $f);
83 # return error messages if any
84 return (1, @out) if @out;
87 unless (@pref) { # no prefix or callsign, use default prefix
88 push @dxcc, [$_, 2] for @main::my_cc;
89 push @pref, $main::mycall;
94 $now = Julian::Day->new(time); #no starting date
98 @out = $self->spawn_cmd("show/hftable $line", sub {
103 # generate the spot list
104 for ($i = 0; $i < $days; $i++) {
105 my $fh = $Spot::statp->open($now); # get the next file
107 Spot::genstats($now);
108 $fh = $Spot::statp->open($now);
113 next if $l[0] eq 'TOTALS';
114 next unless $all || grep $l[$_->[1]] eq $_->[0], @dxcc;
115 my $ref = $list{$l[0]} || [0,0,0,0,0,0,0,0,0,0];
117 foreach my $item (@l[4..13]) {
122 $list{$l[0]} = $ref if $ref->[0];
130 my $l = join ',', @pref;
131 push @out, $self->msg('stathft', $l, $date, $days);
132 push @out, sprintf "%9s|%5s|%5s|%5s|%5s|%5s|%5s|%5s|%5s|%5s|%5s|%5s|", qw(Callsign Tot 160m 80m 60m 40m 30m 20m 17m 15m 12m 10m);
134 for (sort {$list{$b}->[0] <=> $list{$a}->[0] || $a cmp $b} keys %list) {
137 my @list = (sprintf "%9s", $_);
138 foreach my $j (0..11) {
142 $r = sprintf("%5d", $r);
148 push @out, join('|', @list);
149 last if $limit && $nocalls >= $limit;
152 $nocalls = sprintf "%9s", "$nocalls calls";
153 @tot = map {$_ ? sprintf("%5d", $_) : ' ' } @tot;
154 push @out, join('|', $nocalls, @tot,"");