X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FPrefix.pm;h=48206cea6b4cce0a861b4dcc775b3e5789bdefa8;hb=02ec8731a5a65aeb43b8e8925210533dd615ac0f;hp=aac78907f49a9090565fd5081dcbbe80ce86b777;hpb=89ab1e76dcec501c646d5b0158441c73923ec5fb;p=spider.git diff --git a/perl/Prefix.pm b/perl/Prefix.pm index aac78907..48206cea 100644 --- a/perl/Prefix.pm +++ b/perl/Prefix.pm @@ -41,7 +41,7 @@ sub init # fix up the node's default country codes unless (@main::my_cc) { push @main::my_cc, (61..67) if $main::mycall =~ /^GB/; - push @main::my_cc, qw(EA EA6 EA8 EA9) if $main::mycall =~ /^E(ABCD)/; + push @main::my_cc, qw(EA EA6 EA8 EA9) if $main::mycall =~ /^E[ABCD]/; push @main::my_cc, qw(I IT IS) if $main::mycall =~ /^I/; push @main::my_cc, qw(SV SV5 SV9) if $main::mycall =~ /^SV/; @@ -85,6 +85,11 @@ sub load return $out; } +sub loaded +{ + return $db; +} + sub store { my ($k, $l); @@ -468,6 +473,19 @@ sub to_ciz return @out; } +# get the full country data (dxcc, itu, cq, state, city) as a list +# from a callsign. +sub cty_data +{ + my $call = shift; + + my @dxcc = extract($call); + if (@dxcc) { + return ($dxcc[1]->dxcc, $dxcc[1]->itu, $dxcc[1]->cq, ($dxcc[1]->state||''), ($dxcc[1]->city||'')); + } + return (666,0,0,'',''); +} + my %valid = ( lat => '0,Latitude,slat', long => '0,Longitude,slong',