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