Files
gps-denied-desktop/models/satellite/tile_bounds.py
T
Oleksandr Bezdieniezhnykh abc26d5c20 initial structure implemented
docs -> _docs
2025-12-01 14:20:56 +02:00

13 lines
205 B
Python

from pydantic import BaseModel
from ..core.gps_point import GPSPoint
class TileBounds(BaseModel):
nw: GPSPoint
ne: GPSPoint
sw: GPSPoint
se: GPSPoint
center: GPSPoint
gsd: float