3 # The geomagnetic information and calculation module
6 # Copyright (c) 1998 - Dirk Koopman G1TLH
22 use vars qw($date $sfi $k $a $r $forecast @allowed @denied $fp $node $from
26 $fp = 0; # the DXLog fcb
27 $date = 0; # the unix time of the WWV (notional)
28 $sfi = 0; # the current SFI value
29 $k = 0; # the current K value
30 $a = 0; # the current A value
31 $r = 0; # the current R value
32 $forecast = ""; # the current geomagnetic forecast
33 $node = ""; # originating node
34 $from = ""; # who this came from
35 @allowed = (); # if present only these callsigns are regarded as valid WWV updators
36 @denied = (); # if present ignore any wwv from these callsigns
37 $duplth = 20; # the length of text to use in the deduping
38 $dupage = 12*3600; # the length of time to hold spot dups
40 $dirprefix = "$main::data/wwv";
41 $param = "$dirprefix/param";
45 $fp = DXLog::new('wwv', 'dat', 'm');
46 do "$param" if -e "$param";
50 # write the current data away
53 my $fh = new IO::File;
54 open $fh, "> $param" or confess "can't open $param $!";
55 print $fh "# Geomagnetic data parameter file last mod:", scalar gmtime, "\n";
56 print $fh "\$date = $date;\n";
57 print $fh "\$sfi = $sfi;\n";
58 print $fh "\$a = $a;\n";
59 print $fh "\$k = $k;\n";
60 print $fh "\$r = $r;\n";
61 print $fh "\$from = '$from';\n";
62 print $fh "\$node = '$node';\n";
63 print $fh "\@denied = qw(", join(' ', @denied), ");\n" if @denied > 0;
64 print $fh "\@allowed = qw(", join(' ', @allowed), ");\n" if @allowed > 0;
68 $fp->writeunix($date, "$from^$date^$sfi^$a^$k^$forecast^$node^$r");
71 # update WWV info in one go (usually from a PC23)
74 my ($mydate, $mytime, $mysfi, $mya, $myk, $myforecast, $myfrom, $mynode, $myr) = @_;
75 if ((@allowed && grep {$_ eq $from} @allowed) ||
76 (@denied && !grep {$_ eq $from} @denied) ||
77 (@allowed == 0 && @denied == 0)) {
79 # my $trydate = cltounix($mydate, sprintf("%02d18Z", $mytime));
80 if ($mydate >= $date) {
84 $r = 0 unless abs ($mysfi - $sfi) > 3;
89 $forecast = $myforecast;
99 # add or substract an allowed callsign
104 push @allowed, map {uc $_} @_;
108 @allowed = map {$_ ne uc $c} @allowed;
114 # add or substract a denied callsign
119 push @denied, map {uc $_} @_;
123 @denied = map {$_ ne uc $c} @denied;
129 # accessor routines (when I work how symbolic refs work I might use one of those!)
132 @_ ? $sfi = shift : $sfi ;
137 @_ ? $k = shift : $k ;
142 @_ ? $r = shift : $r ;
147 @_ ? $a = shift : $a ;
152 @_ ? $forecast = shift : $forecast ;
157 # print some items from the log backwards in time
159 # This command outputs a list of n lines starting from line $from to $to
165 my @date = $fp->unixtoj(shift);
176 for (\$c = \$#in; \$c >= 0; \$c--) {
180 next if \$count < \$from;
182 last if \$count >= \$to; # stop after n
187 $fp->close; # close any open files
189 my $fh = $fp->open(@date);
190 for ($count = 0; $count < $to; ) {
195 push @in, [ split '\^' ] if length > 2;
197 eval $eval; # do the search on this file
198 return ("Geomag search error", $@) if $@;
199 last if $count >= $to; # stop after n
201 $fh = $fp->openprev(); # get the next file
209 # the standard log printing interpreting routine.
211 # every line that is printed should call this routine to be actually visualised
213 # Don't really know whether this is the correct place to put this stuff, but where
216 # I get a reference to an array of items
222 my $d = cldate($ref[1]);
223 my ($t) = (gmtime($ref[1]))[2];
225 return sprintf("$d %02d %5d %3d %3d %-37s <%s>", $t, $ref[2], $ref[3], $ref[4], $ref[5], $ref[0]);
229 # read in this month's data
233 my @date = $fp->unixtoj(shift);
234 my $fh = $fp->open(@date);
241 push @in, [ split '\^' ] if length > 2;
247 # enter the spot for dup checking and return true if it is already a dup
250 my ($d, $sfi, $k, $a, $text) = @_;
253 return 2 if $d < $main::systime - $dupage;
255 my $dupkey = "W$d|$sfi|$k|$a";
256 return DXDupe::check($dupkey, $main::systime+$dupage);
261 return DXDupe::listdups('W', $dupage, @_);