from __future__ import annotations from dataclasses import dataclass @dataclass(frozen=True) class Coordinates: """A WGS84 point for a Property — longitude/latitude in decimal degrees. Resolved from the Ordnance Survey Open-UPRN reference data and fed to the Google Solar fetcher by the Ingestion orchestrator. """ longitude: float latitude: float