mirror of
https://github.com/azaion/gps-denied-desktop.git
synced 2026-04-22 22:06:36 +00:00
abc26d5c20
docs -> _docs
15 lines
317 B
Python
15 lines
317 B
Python
from typing import Optional
|
|
from pydantic import BaseModel
|
|
from ..core.gps_point import GPSPoint
|
|
from .tile_bounds import TileBounds
|
|
|
|
|
|
class TileCandidate(BaseModel):
|
|
tile_id: str
|
|
gps_center: GPSPoint
|
|
bounds: TileBounds
|
|
similarity_score: float
|
|
rank: int
|
|
spatial_score: Optional[float] = None
|
|
|