From 0ca096938ecda1d2078e73af9173657200e362d2 Mon Sep 17 00:00:00 2001 From: Peter Hanecak <115141505+phanecak-maptiler@users.noreply.github.com> Date: Tue, 11 Jul 2023 07:28:20 +0200 Subject: [PATCH] Fix for classification of CA:ON:primary (#1564) This PR changes classification of `CA:ON:primary`: "all else" should be `ca-provincial`. --- layers/transportation/update_route_member.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layers/transportation/update_route_member.sql b/layers/transportation/update_route_member.sql index 0a65e98b..88f7cefe 100644 --- a/layers/transportation/update_route_member.sql +++ b/layers/transportation/update_route_member.sql @@ -58,7 +58,7 @@ SELECT CASE CASE WHEN ref LIKE '4__' THEN 'ca-provincial-arterial'::route_network_type WHEN ref = 'QEW' THEN 'ca-provincial-arterial'::route_network_type - ELSE 'ca-provincial-arterial'::route_network_type + ELSE 'ca-provincial'::route_network_type END WHEN network = 'CA:MB:PTH' AND ref = '75' THEN 'ca-provincial-arterial'::route_network_type WHEN network = 'CA:AB:primary' AND ref IN ('2','3','4') THEN 'ca-provincial-arterial'::route_network_type