Extract propagation mode from grid<mode>grid type comments #113

This commit is contained in:
Ian Renton
2026-06-21 09:30:30 +01:00
parent 0c256447a8
commit 5f24f1f9fb
10 changed files with 50 additions and 23 deletions

View File

@@ -89,3 +89,17 @@ UNKNOWN_BAND = Band(name="Unknown", start_freq=0, end_freq=0)
# Continents
CONTINENTS = ["EU", "NA", "SA", "AS", "AF", "OC", "AN"]
# Propagation modes used in VHF/UHF DX cluster comments, e.g. "JN61ES<ES>JM56XT". I don't think there's an official list
# of these anywhere, but here are some I've seen or seen reference to
PROPAGATION_MODES = {
"F2": "F2 layer ionospheric",
"ES": "Sporadic-E",
"TR": "Tropospheric ducting",
"TEP": "Trans-Equatorial Propagation",
"EME": "Earth-Moon-Earth",
"AU": "Aurora",
"MS": "Meteor scatter",
"RS": "Rain scatter",
"AS": "Aircraft scatter"
}