2016-12-17 16:18:47 -05:00
|
|
|
subroutine fix_contest_msg(mycall,mygrid,hiscall,msg)
|
|
|
|
|
|
|
|
! If msg is "mycall hiscall grid1" and distance from mygrid to grid1 is more
|
|
|
|
! thsn 10000 km, change "grid1" to "R grid2" where grid2 is the antipodes
|
|
|
|
! of grid1.
|
|
|
|
|
|
|
|
character*6 mycall,mygrid,hiscall
|
2016-12-17 21:46:04 -05:00
|
|
|
character*22 msg
|
2016-12-17 16:18:47 -05:00
|
|
|
character*6 g1,g2
|
|
|
|
logical isgrid
|
|
|
|
|
2016-12-17 21:46:04 -05:00
|
|
|
n=len(trim(msg))
|
|
|
|
g1=msg(n-3:n)//' '
|
|
|
|
if(isgrid(g1)) then
|
|
|
|
call azdist(mygrid,g1,0.d0,nAz,nEl,nDmiles,nDkm,nHotAz,nHotABetter)
|
|
|
|
if(ndkm.gt.10000) then
|
|
|
|
call grid2deg(g1,dlong,dlat)
|
|
|
|
dlong=dlong+180.0
|
|
|
|
if(dlong.gt.180.0) dlong=dlong-360.0
|
|
|
|
dlat=-dlat
|
|
|
|
call deg2grid(dlong,dlat,g2)
|
|
|
|
msg=msg(1:n-4)//'R '//g2(1:4)
|
2016-12-17 16:18:47 -05:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
return
|
|
|
|
end subroutine fix_contest_msg
|