Skip to content

Commit 09a58b2

Browse files
Fix bikeable service road classification (#874)
Set the functional_class of bikeable service roads to unclassified Service roads are only recognized as bikeable if they also are tagged "bicycle=yes/permissive/designated." That is correct, however they should only show up as a road, not as a bike path. This commit changes the functional_class of bikeable service roads to unclassified, which is more appropriate given that they have the following characteristics: 25mph speed limit, 1 lane, parking allowed, and 27ft roadway width. Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
1 parent dd1eda5 commit 09a58b2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

brokenspoke_analyzer/scripts/sql/features/functional_class.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ WHERE
100100
AND COALESCE(width_ft, 0) >= 8;
101101

102102
UPDATE neighborhood_ways
103-
SET functional_class = 'path'
103+
SET functional_class = 'unclassified'
104104
FROM neighborhood_osm_full_line AS osm
105105
WHERE
106106
neighborhood_ways.osm_id = osm.osm_id

0 commit comments

Comments
 (0)