mirror of
https://github.com/azaion/gps-denied-onboard.git
synced 2026-06-21 20:41:13 +00:00
0c8f186598
docs -> _docs
13 lines
205 B
Python
13 lines
205 B
Python
from pydantic import BaseModel
|
|
from ..core.gps_point import GPSPoint
|
|
|
|
|
|
class TileBounds(BaseModel):
|
|
nw: GPSPoint
|
|
ne: GPSPoint
|
|
sw: GPSPoint
|
|
se: GPSPoint
|
|
center: GPSPoint
|
|
gsd: float
|
|
|