Merge pull request #816 from Dosenpfand/trekking-exclude-construction

Trekking: Exclude under construction roads
This commit is contained in:
afischerdev 2025-08-10 18:23:50 +02:00 committed by GitHub
commit 07320690ea
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -247,10 +247,10 @@ assign costfactor
if ( and highway= not route=ferry ) then 10000 if ( and highway= not route=ferry ) then 10000
# #
# exclude motorways and proposed roads # exclude motorways and proposed, abandoned under construction roads
# #
else if ( highway=motorway|motorway_link ) then 10000 else if ( highway=motorway|motorway_link ) then 10000
else if ( highway=proposed|abandoned ) then 10000 else if ( highway=proposed|abandoned|construction ) then 10000
# #
# all other exclusions below (access, steps, ferries,..) # all other exclusions below (access, steps, ferries,..)