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)
48 my ($self, $line) = @_;
52 my @f = split /\s+/, $line;
59 if ($f =~ /^\d+$/ && $f < 366) { # no of days
63 if (my $utime = Date::Parse::str2time($f)) { # is it a parseable date?
65 $now = Julian::Day->new($utime);
66 $date = cldate($utime);
70 if (is_callsign($f)) {
80 if (my @ciz = Prefix::to_ciz('nc', $f)) {
81 push @dxcc, map {[$_, 2]} @ciz;
85 push @out, $self->msg('e27', $f);
90 # return error messages if any
91 return (1, @out) if @out;
94 unless (@pref) { # no prefix or callsign, use default prefix
95 push @dxcc, [$_, 2] for @main::my_cc;
96 push @pref, $main::mycall;
101 $now = Julian::Day->new(time); #no starting date
102 $date = cldate(time);
106 if ($self->{_nospawn}) {
107 @out = generate($self);
109 @out = $self->spawn_cmd("show/hftable $line", sub { return (generate($self)); });
123 # generate the spot list
124 for ($i = 0; $i < $days; $i++) {
125 my $fh = $Spot::statp->open($now); # get the next file
127 Spot::genstats($now);
128 $fh = $Spot::statp->open($now);
133 next if $l[0] eq 'TOTALS';
134 next unless $all || grep $l[$_->[1]] eq $_->[0], @dxcc;
135 my $ref = $list{$l[0]} || [0,0,0,0,0,0,0,0,0,0];
137 foreach my $item (@l[4..13]) {
142 $list{$l[0]} = $ref if $ref->[0];
150 my $l = join ',', @pref;
151 push @out, $self->msg('stathft', $l, $date, $days);
152 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);
154 for (sort {$list{$b}->[0] <=> $list{$a}->[0] || $a cmp $b} keys %list) {
157 my @list = (sprintf "%9s", $_);
158 foreach my $j (0..11) {
162 $r = sprintf("%5d", $r);
169 push @out, join('|', @list);
170 last if $limit && $nocalls >= $limit;
173 $nocalls = sprintf "%9s", "$nocalls calls";
174 @tot = map {$_ ? sprintf("%5d", $_) : ' ' } @tot;
175 push @out, join('|', $nocalls, @tot,"");