mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-05-24 02:12:37 -04:00
Do not process extremely strong signals in the wideband pass.
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/map65@614 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
parent
1afbef982d
commit
c8897fc0d2
2
map65.py
2
map65.py
@ -1,4 +1,4 @@
|
|||||||
#--------------------------------------------------------------------- MAP65
|
#-------------------------------------------------------------------- MAP65
|
||||||
# $Date$ $Revision$
|
# $Date$ $Revision$
|
||||||
#
|
#
|
||||||
from Tkinter import *
|
from Tkinter import *
|
||||||
|
@ -101,8 +101,12 @@ subroutine map65a(newdat)
|
|||||||
enddo
|
enddo
|
||||||
call pctile(tavg,tmp,101,50,base(jp))
|
call pctile(tavg,tmp,101,50,base(jp))
|
||||||
enddo
|
enddo
|
||||||
|
bmax=max(base(1),base(2),base(3),base(4))
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
! Do not process extremely strong signals
|
||||||
|
if(nqd.eq.0 .and. bmax.gt.500.0) go to 70
|
||||||
|
|
||||||
! Find max signal at this frequency
|
! Find max signal at this frequency
|
||||||
smax=0.
|
smax=0.
|
||||||
do jp=1,4
|
do jp=1,4
|
||||||
@ -225,6 +229,7 @@ subroutine map65a(newdat)
|
|||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
70 continue
|
||||||
enddo
|
enddo
|
||||||
if(nqd.eq.1) then
|
if(nqd.eq.1) then
|
||||||
nwrite=0
|
nwrite=0
|
||||||
|
Loading…
x
Reference in New Issue
Block a user