IQtoMorse is a simple signal analytical morse decoder which decodes raw iq samples based on statistical signal analysis using python3, numpy, scipy and matplotlib.
[[(0, 2), (3, 5), (6, 9)], [(10, 12)]]
[['.-.', '-.-', '....'], ['...']]
[['R', 'K', 'H'], ['S']]
RKH S
0:00:00.062408s (62ms)
python3 IQtoMorse.py iqdata fs -plot
- iqdata - path to file with raw iq data
- fs - sample frequency in hertz
- -fc - cutoff frequency in hertz [optional]
- -plot - enables plot [optional]
File with raw iq data should hold sequentially stored float32 I and Q components.
The cutoff frequency is taken from frequency domain automatically in case no optional cutoff frequency has given.
python3 IQtoMorse.py data/partae 67000 -plot
python3 IQtoMorse.py data/partae 67000 -plot -fc 1000