From fed0f06864efcb7357eb57e9b7ce84489197320f Mon Sep 17 00:00:00 2001 From: Jeroen Hoek Date: Fri, 3 Sep 2021 10:49:45 +0200 Subject: [PATCH] Treat highway=busway as no-access by default `highway=busway` is documented as having `access=no` and `bus=designated` by default in the abscense of any overriding access-tags. In the main road query `access` is set to `no` when the road is a busway, and access is either unset or contains `no` or `private`. --- project.mml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/project.mml b/project.mml index 65b59e7d02..0945a8f3e6 100644 --- a/project.mml +++ b/project.mml @@ -723,6 +723,8 @@ Layer: END AS int_surface, CASE WHEN access IN ('destination') THEN 'destination'::text WHEN access IN ('no', 'private') THEN 'no'::text + -- highway=busway is access=no/bus=designated by default. + WHEN highway IN ('busway') AND access IS NULL THEN 'no'::text END AS access, construction, CASE