Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions nvdb2osm.py
Original file line number Diff line number Diff line change
Expand Up @@ -1031,9 +1031,9 @@ def tag_object (object_id, properties, tags):
elif properties['Art'] == "Elg":
tags['species:en'] = "moose"
elif properties['Art'] == "Rein":
tags['species:en'] = "raindeer"
tags['species:en'] = "reindeer"
elif properties['Art'] == "Rådyr":
tags['species:en'] = "venison"
tags['species:en'] = "roe_deer"

elif object_id == "777": # Scenic route
if properties['Status'] != "Framtidig turistveg":
Expand Down Expand Up @@ -1064,7 +1064,7 @@ def tag_object (object_id, properties, tags):
tags['name'] = properties['Navn']
if properties['Innfartsparkering'] == "Ja":
tags['park_ride'] = "yes"
if properties['Avgift'] ==" Ja":
if properties['Avgift'] == "Ja":
Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ikke testet eller sjekket om dette er riktig, så bare litt feil ut

tags['fee'] = "yes"
if properties['Bruksområde'] == "Utfart, tur":
tags['hiking'] = "yes"
Expand Down