This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% python3 adif_parse.py > data.csv | |
% R | |
> data=read.csv("data.csv", header=F, sep="") | |
> plot(data$V2, data$V3, xlab="time [hour]", ylab="No. of stations received", pch=16, col=rgb(1-data$V1, 0, data$V1, alpha=0.8), tck=1, main="7MHz USA stations") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import re | |
import datetime | |
fnames = ['station1.adif', 'station2.adif'] | |
def parse_adif(fn): | |
raw = re.split('<eor>|<eoh>',open(fn).read() ) | |
raw.pop(0) | |
raw.pop() | |
logbook =[] |
NewerOlder