mirror of
https://github.com/azaion/gps-denied-onboard.git
synced 2026-04-22 22:06:37 +00:00
abc26d5c20
docs -> _docs
18 lines
437 B
Python
18 lines
437 B
Python
from typing import Optional
|
|
from pydantic import BaseModel
|
|
from ..core.gps_point import GPSPoint
|
|
|
|
|
|
class ChunkHandle(BaseModel):
|
|
chunk_id: str
|
|
flight_id: str
|
|
start_frame_id: int
|
|
end_frame_id: Optional[int] = None
|
|
frames: list[int] = []
|
|
is_active: bool = True
|
|
has_anchor: bool = False
|
|
anchor_frame_id: Optional[int] = None
|
|
anchor_gps: Optional[GPSPoint] = None
|
|
matching_status: str = "unanchored"
|
|
|