mirror of
https://git.ianrenton.com/ian/spothole.git
synced 2026-09-20 06:17:41 +00:00
447 lines
15 KiB
Python
447 lines
15 KiB
Python
from core.config import SERVER_OWNER_CALLSIGN
|
|
from core.enums import ActivityRefType, ActivityType
|
|
from data.activity import Activity
|
|
from data.band import Band
|
|
|
|
# General software
|
|
SOFTWARE_VERSION = "2.1"
|
|
|
|
# HTTP headers used for spot providers that use HTTP
|
|
HTTP_HEADERS = {"User-Agent": f"Spothole v{SOFTWARE_VERSION} (operated by {SERVER_OWNER_CALLSIGN})"}
|
|
HAMQTH_PRG = f"Spothole v{SOFTWARE_VERSION} operated by {SERVER_OWNER_CALLSIGN}".replace(" ", "_")
|
|
|
|
# Activities
|
|
ACTIVITIES = [
|
|
Activity(
|
|
name="AMSAT",
|
|
comment_names=[],
|
|
description="Amateur Radio Satellites",
|
|
sig_type=ActivityType.WORLDWIDE,
|
|
icon="fa-satellite",
|
|
refs_globally_unique=False,
|
|
),
|
|
Activity(
|
|
name="EME",
|
|
comment_names=[],
|
|
description="Moonbounce",
|
|
sig_type=ActivityType.WORLDWIDE,
|
|
icon="fa-moon",
|
|
refs_globally_unique=False,
|
|
),
|
|
Activity(
|
|
name="POTA",
|
|
comment_names=["POTA"],
|
|
description="Parks on the Air",
|
|
sig_type=ActivityType.WORLDWIDE,
|
|
ref_type=ActivityRefType.PARK,
|
|
ref_regex=r"[A-Z]{2}\-\d{4,5}|K\-TEST",
|
|
icon="fa-tree",
|
|
refs_globally_unique=False,
|
|
),
|
|
Activity(
|
|
name="SOTA",
|
|
comment_names=["SOTA"],
|
|
description="Summits on the Air",
|
|
sig_type=ActivityType.WORLDWIDE,
|
|
ref_type=ActivityRefType.SUMMIT,
|
|
ref_regex=r"[A-Z0-9]{1,3}\/[A-Z]{2}\-\d{3}",
|
|
icon="fa-mountain-sun",
|
|
refs_globally_unique=False,
|
|
),
|
|
Activity(
|
|
name="WWFF",
|
|
comment_names=["WWFF"],
|
|
description="World Wide Flora & Fauna",
|
|
sig_type=ActivityType.WORLDWIDE,
|
|
ref_type=ActivityRefType.PARK,
|
|
ref_regex=r"[A-Z0-9]{1,3}FF\-\d{4}",
|
|
icon="fa-seedling",
|
|
refs_globally_unique=True,
|
|
),
|
|
Activity(
|
|
name="GMA",
|
|
comment_names=["GMA"],
|
|
description="Global Mountain Activity",
|
|
sig_type=ActivityType.WORLDWIDE,
|
|
ref_type=ActivityRefType.SUMMIT,
|
|
ref_regex=r"[A-Z0-9]{1,3}\/[A-Z]{2}\-\d{3}",
|
|
icon="fa-person-hiking",
|
|
refs_globally_unique=False,
|
|
),
|
|
Activity(
|
|
name="WWBOTA",
|
|
comment_names=["WWBOTA", "BOTA"],
|
|
description="Worldwide Bunkers on the Air",
|
|
sig_type=ActivityType.WORLDWIDE,
|
|
ref_type=ActivityRefType.BUNKER,
|
|
ref_regex=r"B\/[A-Z0-9]{1,3}\-\d{3,4}",
|
|
icon="fa-radiation",
|
|
refs_globally_unique=True,
|
|
),
|
|
Activity(
|
|
name="HEMA",
|
|
comment_names=["HEMA"],
|
|
description="HuMPs Excluding Marilyns Award",
|
|
sig_type=ActivityType.WORLDWIDE,
|
|
ref_type=ActivityRefType.SUMMIT,
|
|
ref_regex=r"[A-Z0-9]{1,3}\/[A-Z]{3}\-\d{3}",
|
|
icon="fa-mound",
|
|
refs_globally_unique=False,
|
|
),
|
|
Activity(
|
|
name="IOTA",
|
|
comment_names=["IOTA"],
|
|
description="Islands on the Air",
|
|
sig_type=ActivityType.WORLDWIDE,
|
|
ref_type=ActivityRefType.ISLAND,
|
|
ref_regex=r"[A-Z]{2}\-\d{3}",
|
|
icon="fa-book-atlas",
|
|
refs_globally_unique=False,
|
|
),
|
|
Activity(
|
|
name="GMA Islands",
|
|
comment_names=[],
|
|
description="Global Mountain Activity - Islands",
|
|
sig_type=ActivityType.WORLDWIDE,
|
|
ref_type=ActivityRefType.ISLAND,
|
|
ref_regex=r"(([A-Z]{2}\-\d{3})|([A-Z0-9]{1,3}\/[A-Z]{2}\-\d{3}))",
|
|
icon="fa-person-hiking",
|
|
refs_globally_unique=False,
|
|
),
|
|
Activity(
|
|
name="ARLHS",
|
|
comment_names=["ARLHS"],
|
|
description="Amateur Radio Lighthouse Society",
|
|
sig_type=ActivityType.WORLDWIDE,
|
|
ref_type=ActivityRefType.LIGHTHOUSE,
|
|
ref_regex=r"[A-Z]{3}[\- ]\d{3,4}",
|
|
icon="fa-house-flood-water",
|
|
refs_globally_unique=False,
|
|
),
|
|
Activity(
|
|
name="ILLW",
|
|
comment_names=["ILLW"],
|
|
description="International Lighthouse & Lightship Weekend",
|
|
sig_type=ActivityType.EVENT,
|
|
ref_type=ActivityRefType.LIGHTHOUSE,
|
|
ref_regex=r"[A-Z]{2}\d{4}",
|
|
icon="fa-house-flood-water",
|
|
refs_globally_unique=False,
|
|
),
|
|
Activity(
|
|
name="MOTA",
|
|
comment_names=["MOTA"],
|
|
description="Mills on the Air",
|
|
sig_type=ActivityType.EVENT,
|
|
ref_type=ActivityRefType.MILL,
|
|
ref_regex=r"X\d{4,6}",
|
|
icon="fa-fan",
|
|
refs_globally_unique=True,
|
|
),
|
|
Activity(
|
|
name="SIOTA",
|
|
comment_names=["SIOTA"],
|
|
description="Silos on the Air",
|
|
sig_type=ActivityType.WORLDWIDE,
|
|
ref_type=ActivityRefType.SILO,
|
|
ref_regex=r"[A-Z]{2}\-[A-Z]{3}\d",
|
|
icon="fa-wheat-awn",
|
|
refs_globally_unique=False,
|
|
),
|
|
Activity(
|
|
name="WCA",
|
|
comment_names=["WCA"],
|
|
description="World Castles Award",
|
|
sig_type=ActivityType.WORLDWIDE,
|
|
ref_type=ActivityRefType.CASTLE,
|
|
ref_regex=r"[A-Z0-9]{1,3}\-\d{5}",
|
|
icon="fa-chess-rook",
|
|
refs_globally_unique=False,
|
|
),
|
|
Activity(
|
|
name="ZLOTA",
|
|
comment_names=["ZLOTA"],
|
|
description="New Zealand on the Air",
|
|
sig_type=ActivityType.REGIONAL,
|
|
ref_type=None,
|
|
ref_regex=r"ZL[A-Z]/[A-Z]{2}\-\d{3,4}",
|
|
icon="fa-kiwi-bird",
|
|
region_flag="🇳🇿",
|
|
refs_globally_unique=True,
|
|
),
|
|
Activity(
|
|
name="WOTA",
|
|
comment_names=["WOTA"],
|
|
description="Wainwrights on the Air",
|
|
sig_type=ActivityType.REGIONAL,
|
|
ref_type=ActivityRefType.SUMMIT,
|
|
ref_regex=r"[A-Z]{3}-[0-9]{2}",
|
|
icon="fa-w",
|
|
region_flag="🇬🇧",
|
|
refs_globally_unique=False,
|
|
),
|
|
Activity(
|
|
name="BOTA",
|
|
comment_names=[],
|
|
description="Beaches on the Air",
|
|
sig_type=ActivityType.WORLDWIDE,
|
|
ref_type=ActivityRefType.BEACH,
|
|
icon="fa-umbrella-beach",
|
|
refs_globally_unique=False,
|
|
),
|
|
Activity(
|
|
name="KRMNPA",
|
|
comment_names=["KRMNPA"],
|
|
description="Keith Roget Memorial National Parks Award",
|
|
sig_type=ActivityType.REGIONAL,
|
|
ref_type=ActivityRefType.PARK,
|
|
ref_regex=r"VKFF\-\d{4}",
|
|
icon="fa-earth-oceania",
|
|
region_flag="🇦🇺",
|
|
refs_globally_unique=False,
|
|
),
|
|
Activity(
|
|
name="SANPCPA",
|
|
comment_names=["SANPCPA"],
|
|
description="South Australian National Parks and Conservation Parks Award",
|
|
sig_type=ActivityType.REGIONAL,
|
|
ref_type=ActivityRefType.PARK,
|
|
ref_regex=r"VKFF\-\d{4}",
|
|
icon="fa-earth-oceania",
|
|
region_flag="🇦🇺",
|
|
refs_globally_unique=False,
|
|
),
|
|
Activity(
|
|
name="LLOTA",
|
|
comment_names=["LLOTA"],
|
|
description="Lagos y Lagunas on the Air",
|
|
sig_type=ActivityType.WORLDWIDE,
|
|
ref_type=ActivityRefType.LAKE,
|
|
ref_regex=r"LL[A-Z]{2}\-\d{4}",
|
|
icon="fa-water",
|
|
refs_globally_unique=True,
|
|
),
|
|
Activity(
|
|
name="Towers",
|
|
comment_names=["TOTA"],
|
|
description="Towers on the Air",
|
|
sig_type=ActivityType.WORLDWIDE,
|
|
ref_type=ActivityRefType.TOWER,
|
|
ref_regex=r"[A-Z]{2,3}R\-\d{4}",
|
|
icon="fa-tower-observation",
|
|
refs_globally_unique=False,
|
|
),
|
|
Activity(
|
|
name="Tiles",
|
|
comment_names=[],
|
|
description="Tiles on the Air",
|
|
sig_type=ActivityType.WORLDWIDE,
|
|
ref_type=ActivityRefType.GRID,
|
|
ref_regex=r"[A-Za-z]{2}[0-9]{2}[A-Za-z]{2}",
|
|
icon="fa-square",
|
|
refs_globally_unique=False,
|
|
),
|
|
Activity(
|
|
name="WAB",
|
|
comment_names=["WAB"],
|
|
description="Worked All Britain",
|
|
sig_type=ActivityType.REGIONAL,
|
|
ref_type=ActivityRefType.GRID,
|
|
ref_regex=r"[A-Z]{1,2}[0-9]{2}",
|
|
icon="fa-table-cells-large",
|
|
region_flag="🇬🇧",
|
|
refs_globally_unique=False,
|
|
),
|
|
Activity(
|
|
name="WAI",
|
|
comment_names=["WAI"],
|
|
description="Worked All Ireland",
|
|
sig_type=ActivityType.REGIONAL,
|
|
ref_type=ActivityRefType.GRID,
|
|
ref_regex=r"[A-Z][0-9]{2}",
|
|
icon="fa-table-cells-large",
|
|
region_flag="🇮🇪",
|
|
refs_globally_unique=False,
|
|
),
|
|
Activity(
|
|
name="DMF",
|
|
comment_names=["DMF"],
|
|
description="Diplôme des Moulins de France",
|
|
sig_type=ActivityType.REGIONAL,
|
|
ref_type=ActivityRefType.MILL,
|
|
icon="fa-fan",
|
|
region_flag="🇫🇷",
|
|
refs_globally_unique=False,
|
|
),
|
|
Activity(
|
|
name="DME",
|
|
comment_names=["DME"],
|
|
description="Diploma Municipios de España",
|
|
sig_type=ActivityType.REGIONAL,
|
|
ref_type=ActivityRefType.TOWN,
|
|
ref_regex=r"DME[\- ]\d{3,5}",
|
|
icon="fa-building",
|
|
region_flag="🇪🇸",
|
|
refs_globally_unique=True,
|
|
),
|
|
Activity(
|
|
name="FEA",
|
|
comment_names=["FEA"],
|
|
description="Diploma Faros de España",
|
|
sig_type=ActivityType.REGIONAL,
|
|
ref_type=ActivityRefType.LIGHTHOUSE,
|
|
# FEA references are technically [DE]\-\d{4}(\.\d)? but spotters always seem to miss out the D- or E-
|
|
# prefix and just use FEA-1234 or FEA 1234, so allow for that. The FEA activity ref data provider adds both
|
|
# forms to the database.
|
|
ref_regex=r"([DE]|FEA)[\- ]\d{4}(\.\d)?",
|
|
icon="fa-house-flood-water",
|
|
region_flag="🇪🇸",
|
|
refs_globally_unique=True,
|
|
),
|
|
Activity(
|
|
name="DMUE",
|
|
comment_names=["DMUE"],
|
|
description="Diploma Museos de España",
|
|
sig_type=ActivityType.REGIONAL,
|
|
ref_type=ActivityRefType.BUILDING,
|
|
ref_regex=r"MUE[A-Z]{2}-\d{3}",
|
|
icon="fa-landmark",
|
|
region_flag="🇪🇸",
|
|
refs_globally_unique=True,
|
|
),
|
|
Activity(
|
|
name="DMVE",
|
|
comment_names=["DMVE"],
|
|
description="Diploma Monumentos y Vestigios de España",
|
|
sig_type=ActivityType.REGIONAL,
|
|
ref_type=ActivityRefType.BUILDING,
|
|
ref_regex=r"MV[A-Z]{1,2}-\d{4}",
|
|
icon="fa-monument",
|
|
region_flag="🇪🇸",
|
|
refs_globally_unique=True,
|
|
),
|
|
Activity(
|
|
name="DCE",
|
|
comment_names=["DCE"],
|
|
description="Diploma Castillos de España",
|
|
sig_type=ActivityType.REGIONAL,
|
|
ref_type=ActivityRefType.CASTLE,
|
|
ref_regex=r"C[A-Z]{1,2}-\d{3}",
|
|
icon="fa-chess-rook",
|
|
region_flag="🇪🇸",
|
|
refs_globally_unique=False,
|
|
),
|
|
Activity(
|
|
name="DEFE",
|
|
comment_names=["DEFE"],
|
|
description="Diploma Estaciones de Ferrocarril de España",
|
|
sig_type=ActivityType.REGIONAL,
|
|
ref_type=ActivityRefType.BUILDING,
|
|
ref_regex=r"EF[A-Z]{1,2}-\d{3}",
|
|
icon="fa-train",
|
|
region_flag="🇪🇸",
|
|
refs_globally_unique=True,
|
|
),
|
|
Activity(
|
|
name="DTMBA",
|
|
comment_names=["DTMBA"],
|
|
description="Diploma Teatri Musei e Belle Arti",
|
|
sig_type=ActivityType.REGIONAL,
|
|
ref_type=ActivityRefType.BUILDING,
|
|
ref_regex=r"I-?[0-9]{3,4}\s?[A-Z]{2}",
|
|
icon="fa-landmark",
|
|
region_flag="🇮🇹",
|
|
refs_globally_unique=True,
|
|
),
|
|
Activity(
|
|
name="BIWOTA",
|
|
comment_names=["BIWOTA"],
|
|
description="British Inland Waterways on the Air",
|
|
sig_type=ActivityType.EVENT,
|
|
ref_type=ActivityRefType.WATERWAY,
|
|
icon="fa-ship",
|
|
region_flag="🇬🇧",
|
|
refs_globally_unique=False,
|
|
),
|
|
Activity(
|
|
name="COTA",
|
|
comment_names=["COTA"],
|
|
description="Castles on the Air",
|
|
sig_type=ActivityType.REGIONAL,
|
|
ref_type=ActivityRefType.CASTLE,
|
|
ref_regex=r"[A-Z]{3}\-[0-9]{3,5}",
|
|
icon="fa-chess-rook",
|
|
region_flag="🇩🇪",
|
|
refs_globally_unique=False,
|
|
),
|
|
Activity(
|
|
name="PGA",
|
|
comment_names=["PGA"],
|
|
description="Polish Gmina Award",
|
|
sig_type=ActivityType.REGIONAL,
|
|
ref_type=ActivityRefType.REGION,
|
|
ref_regex=r"[A-Z]{2}[0-9]{2}",
|
|
icon="fa-g",
|
|
region_flag="🇵🇱",
|
|
refs_globally_unique=False,
|
|
),
|
|
Activity(
|
|
name="Toilets",
|
|
comment_names=[],
|
|
description="Toilets on the Air",
|
|
sig_type=ActivityType.EVENT,
|
|
ref_type=ActivityRefType.TOILET,
|
|
ref_regex=r"T\-[0-9]{2}",
|
|
icon="fa-toilet",
|
|
region_flag="🏴☠️",
|
|
refs_globally_unique=True,
|
|
),
|
|
]
|
|
|
|
# Band definitions
|
|
BANDS = [
|
|
Band(name="2200m", start_freq=135700, end_freq=137800),
|
|
Band(name="600m", start_freq=472000, end_freq=479000),
|
|
Band(name="160m", start_freq=1800000, end_freq=2000000, is_ham_hf=True),
|
|
Band(name="80m", start_freq=3500000, end_freq=4000000, is_ham_hf=True),
|
|
Band(name="60m", start_freq=5250000, end_freq=5410000, is_ham_hf=True),
|
|
Band(name="40m", start_freq=7000000, end_freq=7300000, is_ham_hf=True),
|
|
Band(name="30m", start_freq=10100000, end_freq=10150000, is_ham_hf=True),
|
|
Band(name="20m", start_freq=14000000, end_freq=14350000, is_ham_hf=True),
|
|
Band(name="17m", start_freq=18068000, end_freq=18168000, is_ham_hf=True),
|
|
Band(name="15m", start_freq=21000000, end_freq=21450000, is_ham_hf=True),
|
|
Band(name="12m", start_freq=24890000, end_freq=24990000, is_ham_hf=True),
|
|
Band(name="11m", start_freq=26965000, end_freq=27405000),
|
|
Band(name="10m", start_freq=28000000, end_freq=29700000, is_ham_hf=True),
|
|
Band(name="6m", start_freq=50000000, end_freq=54000000, is_ham_hf=True),
|
|
Band(name="5m", start_freq=56000000, end_freq=60500000),
|
|
Band(name="4m", start_freq=70000000, end_freq=70500000),
|
|
Band(name="2m", start_freq=144000000, end_freq=148000000),
|
|
Band(name="1.25m", start_freq=219000000, end_freq=225000000),
|
|
Band(name="70cm", start_freq=420000000, end_freq=450000000),
|
|
Band(name="23cm", start_freq=1240000000, end_freq=1325000000),
|
|
Band(name="13cm", start_freq=2300000000, end_freq=2450000000),
|
|
Band(name="5.8GHz", start_freq=5725000000, end_freq=5850000000),
|
|
Band(name="10GHz", start_freq=10000000000, end_freq=10500000000),
|
|
Band(name="24GHz", start_freq=24000000000, end_freq=24050000000),
|
|
Band(name="47GHz", start_freq=47000000000, end_freq=47200000000),
|
|
Band(name="76GHz", start_freq=75500000000, end_freq=81500000000),
|
|
]
|
|
UNKNOWN_BAND = Band(name="Unknown", start_freq=0, end_freq=0)
|
|
|
|
# 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",
|
|
"ACS": "Aircraft scatter",
|
|
"SAT": "Satellite",
|
|
}
|