Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add satdump apt processing script (and meteor m2 3) #25

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,3 +131,14 @@ satellites:
type: FM
parameters:
audio_samplerate: 48000
- norad: 57166 # METEOR-M2 3
min_elevation: 10
priority: 1
downlinks:
- name: LRPT
frequency: 137100000
bandwidth: 140000
doppler: false
post_processing_script: lrpt-meteormn2_x-satdump.py
output_extension: wav
type: IQ
11 changes: 11 additions & 0 deletions scripts/apt-noaa-satdump.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import altiwx
import subprocess


altiwx.info("Processing NOAA APT data...")

command = "satdump noaa_apt audio_wav '" + altiwx.input_file + "' '" + altiwx.filename + "' --satellite_number " + altiwx.satellite_name.replace('NOAA ', '')
altiwx.debug(command)
subprocess.Popen([command], shell=1).wait()

altiwx.info("Done processing NOAA APT data!")
12 changes: 12 additions & 0 deletions scripts/lrpt-meteormn2_x-satdump.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import altiwx
import subprocess


altiwx.info("Processing METEOR M2-x LRPT 72k data...")

output_folder = altiwx.filename
command = "satdump meteor_m2-x_lrpt baseband '" + altiwx.input_file + "' '" + output_folder + "' --samplerate 140e3 --baseband_format f32"
altiwx.debug(command)
subprocess.Popen([command], shell=1).wait()

altiwx.info("Done processing METEOR M2-x LRPT 72k data!")