rtlsdr-automated-wxsat-capture/README.md

50 lines
1.9 KiB
Markdown
Raw Permalink Normal View History

2014-09-25 23:01:02 -06:00
rtlsdr-automated-wxsat-capture
==============================
Automate Recording of Low Earth Orbit NOAA Weather Satellites
These are some automation scripts I am developing in python for weather satellite hobbyist use.
License: GPLv2 or any later version
assumptions: Linux-based computer, rtl-sdr usb dongle, stationary antenna, experienced python user
2014-09-25 23:01:02 -06:00
goal: record wav files for later processing
prerequistes: working rtl-sdr, predict (text based, not gpredict) setup with correct ground station coordinates, sox
NO WARRANTY: ALL USE IS AT THE RISK OF THE USER. These are scripts I use for hobbyist purposes. There may
be pre-requisites or system configuration differences which you will need to resolve in order to make use of these scripts in your project. To do so requires patience and and, quite often, previous experience programming python
and/or maintaining Linux-based rtl-sdr software.
2014-09-25 23:04:42 -06:00
##FILES
2014-09-25 23:01:02 -06:00
2014-09-25 23:04:42 -06:00
###LICENSE
General Public License version 2.0, or any later version
###dotpredict-predict.tle
2014-09-25 23:07:21 -06:00
Modification of PREDICT's TLE file to provide orbit data for weather satellites NOAA-18,NOAA-19
to get coverage of missing satellites into predict's default config
2014-09-25 23:04:42 -06:00
2014-09-25 23:07:21 -06:00
Copy as follows:
```
mv dotpredict-predict.tle ~/.predict/predict.tle
```
2014-09-25 23:01:02 -06:00
2014-09-25 23:04:42 -06:00
###noaacapture.py
2014-09-25 23:07:21 -06:00
This is the main python script. It will calculate the time
2014-09-25 23:01:02 -06:00
of the next pass for recording. It expects to call rtl_fm to do the
recording and sox to convert the file to .wav
2014-09-25 23:04:42 -06:00
###pypredict.py
2014-09-25 23:07:21 -06:00
This is a short python module for extracting the AOS/LOS times
2014-09-25 23:01:02 -06:00
of the next pass for a specified satellite. It calls predict -p and extracts
the times from the first and last lines.
2014-09-25 23:04:42 -06:00
###update-keps.sh
2014-09-25 23:07:21 -06:00
This is a short shell script to update the keps, which are orbital
2014-09-25 23:01:02 -06:00
parameters needed by the predict program. It is mostly copied from the PREDICT man
page. PREDICT was written by John Magliacane, KD2BD and released under the
GPL license.