anyway/backend/src/structs/landmarks.py
Kilian Scheidecker c58c10b057
Some checks failed
Build and push docker image / Build (pull_request) Failing after 36s
Build and release APK / Build APK (pull_request) Successful in 5m20s
Build web / Build Web (pull_request) Successful in 1m13s
fixed input as coordinates
2024-06-04 00:20:54 +02:00

23 lines
569 B
Python

from pydantic import BaseModel
from OSMPythonTools.api import Api
from .landmarktype import LandmarkType
from .preferences import Preferences
class LandmarkTest(BaseModel) :
name : str
attractiveness : int
loc : tuple
# Output to frontend
class Landmark(BaseModel) :
name : str
type: LandmarkType # De facto mapping depending on how the query was executed with overpass. Should still EXACTLY correspond to the preferences
location : tuple
osm_type : str
osm_id : int
attractiveness : int
must_do : bool
n_tags : int