+25Jun02=======================================================================
+1. as predicted there was an error in the Prefix routine, I have improved it.
24Jun02=======================================================================
1. make set/badspotter non SSID sensitive. Set/badnode is left to be SSID
sensitive.
#
my ($self, $line) = @_;
-my @list = split /\s+/, $line; # generate a list of callsigns
+my @list = split /\s+/, $line; # generate a list of callsigns
my $l;
my @out;
#print "line: $line\n";
foreach $l (@list) {
- my @ans = Prefix::extract($l);
-# my $dd = new Data::Dumper([ \@ans ]);
-# print "ans:", $dd->Dumpxs;
- next if !@ans;
- my $pre = shift @ans;
- my $a;
- foreach $a (@ans) {
- push @out, sprintf "%s DXCC: %d ITU: %d CQ: %d LL: %s %s (%s, %s)", uc $l, $a->dxcc, $a->itu, $a->cq, slat($a->lat), slong($a->long), $pre, $a->name;
- $l = " " x length $l;
- }
+ my @ans = Prefix::extract($l);
+ next if !@ans;
+ my $pre = shift @ans;
+ my $a;
+ foreach $a (@ans) {
+ push @out, sprintf "%s DXCC: %d ITU: %d CQ: %d LL: %s %s (%s, %s)", uc $l, $a->dxcc, $a->itu, $a->cq, slat($a->lat), slong($a->long), $pre, $a->name;
+ $l = " " x length $l;
+ }
}
return (1, @out);
}
# which is the shortest part (first if equal)?
+ dbg("Parts: $call = " . join('|', @parts)) if isdbg('prefix');
$sp = $parts[0];
foreach $p (@parts) {
- $sp = $p if length $sp > length $p;
+ $sp = $p if length $p < length $sp;
}
+ $sp =~ s/-\d+$//; # remove any SSID
+
# # now start to resolve it from the left hand end
# for ($i = 1; $i <= length $sp; ++$i) {
# now start to resolve it from the right hand end
for ($i = length $sp; $i >= 1; --$i) {
my @wout = get(substr($sp, 0, $i));
- last if @wout > 0 && $wout[0] gt $sp;
+ next if @wout > 0 && $wout[0] gt $sp;
# last if @wout == 0;
push @out, @wout;
last if @wout;
}
}
+ if (isdbg('prefix')) {
+ my $dd = new Data::Dumper([ \@out ], [qw(@out)]);
+ dbg($dd->Dumpxs);
+ }
return @out;
}