Skip to content

Commit

Permalink
add new categories to low_priority and blacklist
Browse files Browse the repository at this point in the history
  • Loading branch information
kruegercharles committed Jul 24, 2024
1 parent 341be44 commit d713a7d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 3 additions & 2 deletions backend/pois/management/commands/import_landmarks.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@
"Bahnübergang",
"Eisenbahnübergang",
"Gleisweiche",
"Straßenbahnübergang",
"Hydrant", # man könnte dabei eventuell noch unterscheiden nach "fire_hydrant:type",
"Randstein",
]
# Tags "Bahnübergang" und "Eisenbahnübergang" sind häufig nicht hilfreich, da man bei vielen Straßen parallel zu Bahnstrecke fährt

Expand Down Expand Up @@ -118,8 +121,6 @@ def import_from_overpass(bounding_box: str):

for category in OSM_CATEGORIES:
if category in element["tags"]:
# if translate_tag(category, element["tags"][category]) in BLACKLIST:
# continue
type = translate_tag(category, element["tags"][category])
category = translate_tag(category, "")
break
Expand Down
4 changes: 4 additions & 0 deletions backend/pois/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@
"Stolperstein",
"Mast",
"Überwachungskamera",
"Unterstand",
"Sitzbank",
"Touristen-Information",
"Oberleitungsmast",
]
# Ich sollte die vielleicht doch mit einbeziehen, weil man ja durch die Richtungseingabe schon in der Regel eindeutig sieht, wo das stehen soll.

Expand Down

0 comments on commit d713a7d

Please sign in to comment.