Skip to content

Commit

Permalink
fix for highway=path
Browse files Browse the repository at this point in the history
  • Loading branch information
imagico committed May 10, 2024
1 parent b2a7a5f commit b063e6a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions functions.sql
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ SELECT
ELSE "access" END)
WHEN 'pedestrian' THEN carto_int_access('pedestrian', CASE WHEN foot IS NOT NULL THEN foot ELSE "access" END)
WHEN 'footway' THEN carto_int_access('footway', CASE WHEN foot IS NOT NULL THEN foot ELSE "access" END)
WHEN 'path' THEN carto_int_access('path', CASE WHEN foot IS NOT NULL THEN foot ELSE "access" END)
WHEN 'cycleway' THEN carto_int_access('cycleway', CASE WHEN bicycle IS NOT NULL THEN bicycle ELSE "access" END)
WHEN 'bridleway' THEN carto_int_access('bridleway', CASE WHEN horse IS NOT NULL THEN horse ELSE "access" END)
ELSE carto_int_access(NULL, "access")
Expand Down

0 comments on commit b063e6a

Please sign in to comment.