mirror of
https://github.com/smittix/intercept.git
synced 2026-07-06 00:28:12 -07:00
Fix weather sat 0dB SNR: increase sample rate to 2.4 MHz for Meteor LRPT
The default 1 MHz sample rate was too low for SatDump's meteor_m2-x_lrpt pipeline, causing NOSYNC and 0.000dB SNR. Bumped to 2.4 MHz (SatDump recommendation) and wired up the WEATHER_SAT_SAMPLE_RATE config value so it actually gets passed to decoder.start() from both the auto-scheduler and manual start route. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -85,7 +85,11 @@ WEATHER_SATELLITES = {
|
||||
}
|
||||
|
||||
# Default sample rate for weather satellite reception
|
||||
DEFAULT_SAMPLE_RATE = 1000000 # 1 MHz
|
||||
try:
|
||||
from config import WEATHER_SAT_SAMPLE_RATE as _configured_rate
|
||||
DEFAULT_SAMPLE_RATE = _configured_rate
|
||||
except ImportError:
|
||||
DEFAULT_SAMPLE_RATE = 2400000 # 2.4 MHz — minimum for Meteor LRPT
|
||||
|
||||
|
||||
@dataclass
|
||||
|
||||
Reference in New Issue
Block a user