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

10 lines
192 B
Python

from pydantic import BaseModel
from ..core.gps_point import GPSPoint
class UserAnchor(BaseModel):
uav_pixel: tuple[float, float]
satellite_gps: GPSPoint
confidence: float = 1.0