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

15 lines
297 B
Python

from pydantic import BaseModel
from ..core.gps_point import GPSPoint
class SearchSession(BaseModel):
session_id: str
flight_id: str
frame_id: int
center_gps: GPSPoint
current_grid_size: int = 1
max_grid_size: int = 25
found: bool = False
exhausted: bool = False