Added a test run to the readme.

merge-requests/31/head
cgbsat 2019-06-25 21:10:20 +00:00
parent a994f28f0d
commit c83426e19b
1 changed files with 15 additions and 1 deletions

View File

@ -15,6 +15,20 @@ pip install -r requirements.txt
Copy the env-dist file to .env and set your legacy SatNOGS Network credentials.
## Test run
Perform a test run to download orbital elements and transmitter priorities (these are stored in `/tmp/cache`) with
```bash
schedule_single_station.py -s <ground station ID> -n
```
The `-n` option computes the passes but does not schedule them. To schedule these passes, run
```bash
schedule_single_station.py -s <ground station ID>
```
## Setup priority scheduling
The following commands will add a list consisting of all DUV, BPSK1k2, BPSK9k6, [G]MSK and [G]FSK transmitters into `priorities_37.txt`.
@ -28,7 +42,7 @@ awk '{if ($3>=80) print $0 }' /tmp/cache/transmitters_37.txt | grep -e "MSK" | a
sort -n -k 4 /tmp/cache/transmitters_37.txt | grep -e "DUV" | awk '{printf("%s 1.0 %s\n",$1,$2)} >> priorities_37.txt'
```
## Add ad cron-job
## Add cron-job
Start editing your default user's cron (select your preferred editor):
```bash