Add types and altitudes to SIG Ref lookups

This commit is contained in:
Ian Renton
2026-08-14 14:57:48 +01:00
parent 605b629d43
commit e94d4bd927
29 changed files with 69 additions and 23 deletions
+7 -3
View File
@@ -12,13 +12,17 @@ class SIGRef:
sig: str
# Name of the reference, e.g. "Null Country Park", if known.
name: str | None = None
# Type of the reference, e.g. "Park", if known.
type: str | None = None
# URL to look up more information about the reference, if known.
url: str | None = None
# Latitude of the reference, if known.
# Latitude of the reference, in degrees, if known.
latitude: float | None = None
# Longitude of the reference, if known.
# Longitude of the reference, in degrees, if known.
longitude: float | None = None
# Maidenhead grid reference of the reference, if known.
# Altitude of the reference, in metres, if known.
altitude: float | None = None
# Maidenhead grid ref of the reference, if known.
grid: str | None = None
# Activation score. SOTA only
activation_score: int | None = None