Make decoder spacing limit apply to all sonde types.

pull/182/head
Mark Jessop 2019-05-21 19:12:02 +09:30
rodzic b9661d4f29
commit 60f3ac1aaf
2 zmienionych plików z 4 dodań i 1 usunięć

Wyświetl plik

@ -23,6 +23,8 @@ from .sonde_specific import *
VALID_SONDE_TYPES = ['RS92', 'RS41', 'DFM', 'M10', 'iMet']
# Known 'Drifty' Radiosonde types
# NOTE: Due to observed adjacent channel detections of RS41s, the adjacent channel decoder restriction
# is now applied to all radiosonde types. This may need to be re-evaluated in the future.
DRIFTY_SONDE_TYPES = VALID_SONDE_TYPES # ['RS92', 'DFM', 'LMS6']

Wyświetl plik

@ -56,12 +56,13 @@ cp ../m10/m10 .
cp ../utils/fsk_demod .
cp ../imet/imet1rs_dft .
cp ../demod/mod/rs41mod .
cp ../demod/mod/rs41mod ./rs41ecc
cp ../demod/mod/dfm09mod .
#cp ../demod/mod/m10mod .
cp ../demod/mod/rs92mod .
#cp ../demod/mod/lms6mod .
# Overwrite the normal RS41 decoder with the trial combined decoder.
cp ../demod/mod/rs41sgm ./rs41mod
echo "Done!"