Skip to content

Commit 5b34a56

Browse files
author
Andy Townsend
committed
Tiger crossings do not imply traffic signals.
1 parent 7e7619c commit 5b34a56

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ This page describes changes made in these projects: [SomeoneElse-style](https://
66
(raster, vector) Add more `crossing` values to "is it or is it not a crossing" logic.
77
(raster, vector) Changed the `shop=seafood` icon to match the `cuisine=seafood` marker used on fast food and restaurants. Previously it matched `cuisine=fish_and_chips`.
88
(raster, vector) Handle a couple more `support` values for clocks.
9+
(raster, vector) Tiger crossings do not imply traffic signals.
910

1011
## Raster as yet unreleased, vector 10/01/2026
1112
(raster, vector) Removed `amenity=funeral`; no longer in the data.

shared_lua.lua

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7920,12 +7920,10 @@ function consolidate_lua_03_t( passedt )
79207920
( passedt.crossing == "puffin" ) or
79217921
( passedt.crossing == "pegasus" ) or
79227922
( passedt.crossing == "traffic_signals;island" ) or
7923-
( passedt.crossing == "tiger" ) or
79247923
( passedt.crossing_ref == "pelican" ) or
79257924
( passedt.crossing_ref == "toucan" ) or
79267925
( passedt.crossing_ref == "puffin" ) or
79277926
( passedt.crossing_ref == "pegasus" ) or
7928-
( passedt.crossing_ref == "tiger" ) or
79297927
(( passedt["crossing:signals"] ~= nil ) and
79307928
( passedt["crossing:signals"] ~= "" ) and
79317929
( passedt["crossing:signals"] ~= "no" ) and

taginfo.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -953,11 +953,12 @@
953953
{ "key": "crossing:signals", "description": "Some crossing:signals types extracted as 'highway=traffic_signals'" },
954954
{ "key": "crossing:signals", "value": "yes", "description": "Extracted as 'highway=traffic_signals'" },
955955
{ "key": "crossing_ref", "description": "Some crossing_ref types extracted as 'highway=traffic_signals'" },
956+
{ "key": "crossing_ref", "value": "informal", "description": "Indicates no formal crossing" },
957+
{ "key": "crossing_ref", "value": "none", "description": "Indicates no formal crossing" },
956958
{ "key": "crossing_ref", "value": "pegasus", "description": "Extracted as 'highway=traffic_signals'" },
957959
{ "key": "crossing_ref", "value": "toucan", "description": "Extracted as 'highway=traffic_signals'" },
958960
{ "key": "crossing_ref", "value": "pelican", "description": "Extracted as 'highway=traffic_signals'" },
959961
{ "key": "crossing_ref", "value": "puffin", "description": "Extracted as 'highway=traffic_signals'" },
960-
{ "key": "crossing_ref", "value": "zebra", "description": "Extracted as 'highway=crossing'" },
961962
{ "key": "cuisine", "description": "Many fast food cuisines used to determine fast food or restaurant type" },
962963
{ "key": "cuisine", "value": "afghan", "description": "Treated as fast food or restaurant that serves indian or similar food" },
963964
{ "key": "cuisine", "value": "african", "description": "South African flag used as modifier to fast food that serves african or similar food", "icon_url": "https://raw.githubusercontent.com/SomeoneElseOSM/openstreetmap-carto-AJT/master/symbols/fast_food_african.png" },

0 commit comments

Comments
 (0)