Deprecate various erroneous direction values

This commit is contained in:
Quincy Morgan
2019-09-17 16:50:00 -04:00
parent c80c72ca78
commit fcb4a5fa11
2 changed files with 30 additions and 0 deletions
+24
View File
@@ -288,6 +288,30 @@
"old": {"diaper": "yes"},
"replace": {"changing_table": "yes"}
},
{
"old": {"direction": "all"},
"replace": {"direction": "both"}
},
{
"old": {"direction": "East"},
"replace": {"direction": "E"}
},
{
"old": {"direction": "forward;backward"},
"replace": {"direction": "both"}
},
{
"old": {"direction": "North"},
"replace": {"direction": "N"}
},
{
"old": {"direction": "South"},
"replace": {"direction": "S"}
},
{
"old": {"direction": "West"},
"replace": {"direction": "W"}
},
{
"old": {"drinkable": "*"},
"replace": {"drinking_water": "$1"}
+6
View File
@@ -1902,6 +1902,12 @@
{"key": "diaper", "value": "no", "description": "🄳 ➜ changing_table=no"},
{"key": "diaper", "value": "room", "description": "🄳 ➜ changing_table=yes + changing_table:location=room"},
{"key": "diaper", "value": "yes", "description": "🄳 ➜ changing_table=yes"},
{"key": "direction", "value": "all", "description": "🄳 ➜ direction=both"},
{"key": "direction", "value": "East", "description": "🄳 ➜ direction=E"},
{"key": "direction", "value": "forward;backward", "description": "🄳 ➜ direction=both"},
{"key": "direction", "value": "North", "description": "🄳 ➜ direction=N"},
{"key": "direction", "value": "South", "description": "🄳 ➜ direction=S"},
{"key": "direction", "value": "West", "description": "🄳 ➜ direction=W"},
{"key": "drinkable", "description": "🄳 ➜ drinking_water=*"},
{"key": "dropped_kerb", "description": "🄳 ➜ kerb=lowered"},
{"key": "escalator", "description": "🄳 ➜ highway=steps + conveying=*"},