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