mirror of
https://github.com/azaion/gps-denied-desktop.git
synced 2026-04-22 22:56:35 +00:00
abc26d5c20
docs -> _docs
12 lines
238 B
Python
12 lines
238 B
Python
from typing import Optional
|
|
from pydantic import BaseModel
|
|
from ..core.gps_point import GPSPoint
|
|
|
|
|
|
class RefinedFrameResult(BaseModel):
|
|
frame_id: int
|
|
gps_center: GPSPoint
|
|
confidence: float
|
|
heading: Optional[float] = None
|
|
|