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

10 lines
183 B
Python

from pydantic import BaseModel
from ..core.gps_point import GPSPoint
class ChunkBounds(BaseModel):
estimated_center: GPSPoint
estimated_radius: float
confidence: float