Refactor of caching & data storage part 10 #118

This commit is contained in:
Ian Renton
2026-08-02 10:31:31 +01:00
parent 2157bf114e
commit 11a236e668
15 changed files with 452 additions and 170 deletions
+5 -5
View File
@@ -26,13 +26,13 @@ class Callsign:
# the centre of the country they're operating in if no other data is available.
longitude : float | None = None
# Country in which the callsign indicates they are operating
dx_country: str | None = None
country: str | None = None
# Continent in which the callsign indicates they are operating
dx_continent: str | None = None
continent: str | None = None
# DXCC ID in which the callsign indicates they are operating
dx_dxcc_id: int | None = None
dxcc_id: int | None = None
# CQ zone in which the callsign indicates they are operating
dx_cq_zone: int | None = None
cq_zone: int | None = None
# ITU zone in which the callsign indicates they are operating
dx_itu_zone: int | None = None
itu_zone: int | None = None