mirror of
https://github.com/azaion/gps-denied-onboard.git
synced 2026-06-21 19:01:14 +00:00
0c8f186598
docs -> _docs
10 lines
183 B
Python
10 lines
183 B
Python
from pydantic import BaseModel
|
|
from ..core.gps_point import GPSPoint
|
|
|
|
|
|
class ChunkBounds(BaseModel):
|
|
estimated_center: GPSPoint
|
|
estimated_radius: float
|
|
confidence: float
|
|
|