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