a set of script to predict passes and make automated recordings of satellites. Intended to be run headless on an SoC. Original forked from https://github.com/va7eex/Pi_WXRX Improvements made for https://keet.space
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
781 B

7 years ago
# Pi_WXRX
Receive and decode NOAA satellites with a Raspberry Pi.
7 years ago
This requires the following:
* Osmocom RTLSDR library: https://github.com/osmocom/rtl-sdr
7 years ago
* PyPredict: https://github.com/nsat/pypredict
Edit satpredict.py and change the "qth" variable to your lat/long/alt.
7 years ago
7 years ago
To begin please run get_tle.py, preferably add it to a daily cron task. Afterwards run "bash sats.sh NOAA-##" for NOAA-15, -18, or -19 (your preference). The sats.sh file runs itself after completion so there are few reasons to run it twice. If you must rerun the sats.sh script you will need to wipe the At Queue, see below.
7 years ago
Occasionally things will get backed up and its best to clear everything in the pending At jobs with the following command:
7 years ago
7 years ago
for i in `atq | awk '{print $1}'`;do atrm $i;done