mirror of
https://github.com/azaion/gps-denied-desktop.git
synced 2026-04-22 22:46:36 +00:00
abc26d5c20
docs -> _docs
10 lines
192 B
Python
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
|
|
|