WSJT-X/lib/wsprd
2018-01-12 22:47:59 +00:00
..
fano.c
fano.h
fftw3.h
genmet.f90
gran.c
jelinek.c
jelinek.h Decrease memory footprint of stack and improve stack decoder efficiency. 2015-07-26 14:09:25 +00:00
Makefile Remove wsprd_exp from stand-alone Makefile. 2016-04-03 20:01:43 +00:00
Makefile.MinGW
Makefile.win32
metric_tables.c Sharpen 2016-06-20 23:53:57 +00:00
mettab.c
nhash.c
nhash.h
README
t2.f90
tab.c
test_wspr.f90
unpk.c.obsolete
WSPRcode.f90
wsprd_exp.c New scheme - first pass is same as stock wsprd with blocksize=1; second pass tries blocksizes {1,2,3}. Drift estimation is turned off on second pass for smaller frequency estimate variance. 2018-01-12 22:47:59 +00:00
wsprd_stats.txt Reintegrate the wsjtx_exp branch into the trunk 2015-05-27 13:08:28 +00:00
wsprd_utils.c Fix a wsprd bug that was introduced in r7090, which attempted to fix encoding of callsigns like 5N/6O0O. 2016-12-17 06:41:07 +00:00
wsprd_utils.h
wsprd.c In ALL_WSPR.TXT: add another decimal place for DT and place for another MHz digit. 2016-11-01 21:15:29 +00:00
wsprsim_utils.c Tweaks to simulators. 2018-01-07 15:26:43 +00:00
wsprsim_utils.h
wsprsim.c Add new command line option (-f) to set simulated signal's frequency offset. 2018-01-04 17:40:33 +00:00

wsprd is a decoder for K1JT's Weak Signal Propagation Reporter (WSPR) mode.

The program is written in C and is a command-line program that reads from a
.c2 file or .wav file and writes output to the console. It is used by WSJT-X
for wspr-mode decoding. 

USAGE: 
       wsprd [options...] infile

OPTIONS:
       -a <path> path to writeable data files, default="."
       -c write .c2 file at the end of the first pass
       -e x (x is transceiver dial frequency error in Hz)
       -f x (x is transceiver dial frequency in MHz)
       -H do not use (or update) the hash table
       -m decode wspr-15 .wav file
       -q quick mode - doesn't dig deep for weak signals
       -s single pass mode, no subtraction (same as original wsprd)
       -v verbose mode (shows dupes)
       -w wideband mode - decode signals within +/- 150 Hz of center
       -z x (x is fano metric table bias, default is 0.42)

infile can be either .wav or .c2

e.g. 
./wsprd -wf 14.0956 140709_2258.wav

Note that for .c2 files, the frequency within the file overrides the command
line value.

FEATURES:
By default, wsprd reports signals that are within +/- 110 Hz of the
subband center frequency. The wideband option (-w) extends this to +/- 150 Hz.

wsprd maintains a hashtable and will decode all three types of wspr
messages. An option (-H) is available to turn off use of the hashtable.

The symbols are decoded using Phil Karn's sequential decoder routine,
fano.c.

NOTES:
This program attempts to maximize the number of successful decodes per transmit
interval by trying to decode virtually every peak in the averaged spectrum. 
The program also implements two-pass decoding, whereby signals that are successfully
decoded are subtracted one-by-one during the first decoding pass. Then, the 
decoder is run again. In many cases the subtraction process will uncover signals
that can then be successfully decoded on the second pass.

There will be occasional duplicate decodes when two closely spaced 
peaks come from the same signal. The program removes dupes based on callsign 
and frequency. Two decodes that have the same callsign and estimated frequencies
that are within 1 Hz will be treated as decodes of the same signal. This
dupechecking is turned off with the -v flag.