-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathwd_template.conf
More file actions
54 lines (42 loc) · 3.94 KB
/
wd_template.conf
File metadata and controls
54 lines (42 loc) · 3.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/bin/bash
### These first two bash variables *must* be changed from their default values.
### To do so, uncomment the following two lines by removing the leading '#' and change the "<....>" fields
# WSPRNET_REPORTER_ID="<YOUR_REPORTER_ID>"
# REPORTER_GRID="<YOUR_GRID>"
### If you want to give Wspredaemon devlopers remote access to your server, obtain a RAC number, uncomment the following line and replace <RAC_INTEGER_ID> with that number
### Developers will also see the login name and password of the Linux account which runs WD. 'RAC' is the acronym for 'Remote Access Channel'
# RAC=<RAC_INTEGER_ID>
WSPRNET_REPORTER_ID="${WSPRNET_REPORTER_ID-<NOT_DEFINED>}" ### The ID of spots uploaded to wsprnet.org by this site
REPORTER_GRID="${REPORTER_GRID-<NOT_DEFINED>}"
ANTENNA_DESCRIPTION="<NOT_DEFINED>" ### If defined, this is included in the reports to PSKReporter e.g '80m Dipole' and displayed on the KA9Q-web page
KA9Q_WEB_TITLE="${WSPRNET_REPORTER_ID}_@${REPORTER_GRID}_${ANTENNA_DESCRIPTION}"
# WD stations contirbuting to the HamSCI.org Personal Space Weather Project obtain these values from their dashboard at https://pswsnetwork.caps.ua.edu
# PSWS_STATION_ID="<PSWS_STATION_ID>"
# PSWS_DEVICE_ID="<PSWS_DEVICE_ID>"
## The default is to upload extented spot and background noise level data to wsprdaemon.org. These are small files, so they add little to the site's Internet bandwidth usage
# SIGNAL_LEVEL_UPLOAD="no"
## If "yes" the site uploads a 150 KByte .png file to wsprnet.org where it can be viewed at http://wsprdaemon.org/graphs/${WSPRNET_REPORTER_ID}/
## Since better, configurable Grafana graphs are available from the wsprdeamon.org, to conserve your site's Internet usage I now discourage the use of this feature
#SIGNAL_LEVEL_UPLOAD_GRAPHS="yes"
declare RECEIVER_LIST=(
"KA9Q_0 wspr-pcm.local ${WSPRNET_REPORTER_ID} ${REPORTER_GRID} <SDR_PASSWORD_IF_NEEDED>"
"KA9Q_0_WWV wwv-iq.local ${WSPRNET_REPORTER_ID} ${REPORTER_GRID} <SDR_PASSWORD_IF_NEEDED>"
"KIWI_0 10.0.0.73:8073 ${WSPRNET_REPORTER_ID} ${REPORTER_GRID} <SDR_PASSWORD_IF_NEEDED>"
"MERG_0 KIWI_0,KA9Q_0 ${WSPRNET_REPORTER_ID} ${REPORTER_GRID} <SDR_PASSWORD_IF_NEEDED>"
)
### Here are two examples of WSPR_SCHEDULEs. Much more complex SDR configurations and schedules are desribed in wd_template_full.conf
declare WSPR_SCHEDULE_only_rx888=(
"00:00 KA9Q_0,2200,W2:F2:F5:F15:F30 KA9Q_0,630,W2:F2:F5 KA9Q_0,160,W2:F2:F5 KA9Q_0,80,W2:F2:F5 KA9Q_0,80eu,W2:F2:F5 KA9Q_0,60,W2:F2:F5 KA9Q_0,60eu,W2:F2:F5 KA9Q_0,40,W2:F2:F5
KA9Q_0,30,W2:F2:F5 KA9Q_0,22,W2 KA9Q_0,20,W2:F2:F5 KA9Q_0,17,W2:F2:F5 KA9Q_0,15,W2:F2:F5 KA9Q_0,12,W2:F2:F5 KA9Q_0,10,W2:F2:F5 KA9Q_0,6,W2:F2:F5
KA9Q_0_WWV,WWVB,I1 KA9Q_0_WWV,WWV_2_5,I1 KA9Q_0_WWV,WWV_5,I1 KA9Q_0_WWV,WWV_10,I1 KA9Q_0_WWV,WWV_15,I1 KA9Q_0_WWV,WWV_20,I1 KA9Q_0_WWV,WWV_25,I1
KA9Q_0_WWV,CHU_3,I1 KA9Q_0_WWV,CHU_7,I1 KA9Q_0_WWV,CHU_14,I1"
)
### Configure the Kiwi in 8 channel mode and this WSPR_SCHEDULE configuration will use the 6 audio-only Kiwi channels to record spots on the most trafficed WSPR bands
### while leaving the 2 Kiwi waterfall channels free for listeners
declare WSPR_SCHEDULE_only_kiwi=(
"00:00 KIWI_0,80,W2:F2:F5 KIWI_0,40,W2:F2:F5
KIWI_0,30,W2:F2:F5 KIWI_0,20,W2:F2:F5 KIWI_0,15,W2:F2:F5 KIWI_0,10,W2:F2:F5"
)
### Default to use the WSPR_SCHEDULE_only_rx888 schedule
declare WSPR_SCHEDULE=( "${WSPR_SCHEDULE_only_rx888[@]}" )
#declare WSPR_SCHEDULE=( "${WSPR_SCHEDULE_only_kiwi[@]}" )