2 # set the latitude and longtitude field
4 # Copyright (c) 1998 - Dirk Koopman
9 my ($self, $line) = @_;
10 my $call = $self->call;
13 # remove leading and trailing spaces
17 return (1, $self->msg('loce1')) if !$line;
18 return (1, $self->msg('loce2', $line)) unless $line =~ /\d+ \d+ [NnSs] \d+ \d+ [EeWw]/o;
20 $user = DXUser->get_current($call);
23 my ($lat, $long) = DXBearing::stoll($line);
26 DXProt::broadcast_all_ak1a(DXProt::pc41($call, 3, $line), $DXProt::me);
27 unless ($user->qra && DXBearing::is_qra($user->qra) ) {
28 my $qra = DXBearing::lltoqra($lat, $long);
33 return (1, $self->msg('loc', $line));
35 return (1, $self->msg('namee2', $call));