-
Notifications
You must be signed in to change notification settings - Fork 252
Deprecated parking #1390
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Deprecated parking #1390
Changes from 7 commits
d93e1ac
6b90e61
c22b1db
9f70d4b
6c66704
a6af08d
b4b20ce
6ce9ee2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1253,6 +1253,138 @@ | |
| "old": {"parking": "street"}, | ||
| "replace": {"parking": "lane"} | ||
| }, | ||
| { | ||
| "old": {"parking:lane:both": "yes"}, | ||
| "replace": {"parking:both": "yes"} | ||
| }, | ||
| { | ||
| "old": {"parking:lane:both": "no"}, | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| "replace": {"parking:both": "no"} | ||
| }, | ||
| { | ||
| "old": {"parking:lane:both": "no_parking"}, | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| "replace": {"parking:both": "no", "parking:both:restriction": "no_parking"} | ||
| }, | ||
| { | ||
| "old": {"parking:lane:both": "no_standing"}, | ||
| "replace": {"parking:both": "no", "parking:both:restriction": "no_standing"} | ||
| }, | ||
|
tordans marked this conversation as resolved.
Outdated
|
||
| { | ||
| "old": {"parking:lane:both": "no_stopping"}, | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| "replace": {"parking:both": "no", "parking:both:restriction": "no_stopping"} | ||
| }, | ||
| { | ||
| "old": {"parking:lane:both": "fire_lane"}, | ||
| "replace": {"parking:both": "no", "parking:both:restriction": "no_stopping", "parking:both:restriction:reason": "fire_lane"} | ||
| }, | ||
|
Comment on lines
+1268
to
+1271
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think we can keep this (even though below 1k) because the new tagging is complex. |
||
| { | ||
| "old": {"parking:lane:both": "separate"}, | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| "replace": {"parking:both": "separate"} | ||
| }, | ||
| { | ||
| "old": {"parking:lane:both": "diagonal"}, | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| "replace": {"parking:both": "yes", "parking:both:orientation": "diagonal"} | ||
| }, | ||
| { | ||
| "old": {"parking:lane:both": "parallel"}, | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| "replace": {"parking:both": "yes", "parking:both:orientation": "parallel"} | ||
| }, | ||
| { | ||
| "old": {"parking:lane:both": "perpendicular"}, | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| "replace": {"parking:both": "yes", "parking:both:orientation": "perpendicular"} | ||
| }, | ||
| { | ||
| "old": {"parking:lane:both:parallel": "on_street"}, | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| "replace": {"parking:both": "lane"} | ||
| }, | ||
| { | ||
| "old": {"parking:lane:left": "yes"}, | ||
| "replace": {"parking:left": "yes"} | ||
| }, | ||
|
tordans marked this conversation as resolved.
Outdated
|
||
| { | ||
| "old": {"parking:lane:left": "no"}, | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| "replace": {"parking:left": "no"} | ||
| }, | ||
| { | ||
| "old": {"parking:lane:left": "no_parking"}, | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| "replace": {"parking:left": "no", "parking:left:restriction": "no_parking"} | ||
| }, | ||
| { | ||
| "old": {"parking:lane:left": "no_standing"}, | ||
| "replace": {"parking:left": "no", "parking:left:restriction": "no_standing"} | ||
| }, | ||
|
tordans marked this conversation as resolved.
Outdated
|
||
| { | ||
| "old": {"parking:lane:left": "no_stopping"}, | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| "replace": {"parking:left": "no", "parking:left:restriction": "no_stopping"} | ||
| }, | ||
| { | ||
| "old": {"parking:lane:left": "fire_lane"}, | ||
| "replace": {"parking:left": "no", "parking:left:restriction": "no_stopping", "parking:left:restriction:reason": "fire_lane"} | ||
| }, | ||
|
tordans marked this conversation as resolved.
Outdated
|
||
| { | ||
| "old": {"parking:lane:left": "separate"}, | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| "replace": {"parking:left": "separate"} | ||
| }, | ||
| { | ||
| "old": {"parking:lane:left": "diagonal"}, | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| "replace": {"parking:left": "yes", "parking:left:orientation": "diagonal"} | ||
| }, | ||
| { | ||
| "old": {"parking:lane:left": "parallel"}, | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| "replace": {"parking:left": "yes", "parking:left:orientation": "parallel"} | ||
| }, | ||
| { | ||
| "old": {"parking:lane:left": "perpendicular"}, | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| "replace": {"parking:left": "yes", "parking:left:orientation": "perpendicular"} | ||
| }, | ||
| { | ||
| "old": {"parking:lane:left:parallel": "on_street"}, | ||
| "replace": {"parking:left": "lane"} | ||
| }, | ||
|
tordans marked this conversation as resolved.
Outdated
|
||
| { | ||
| "old": {"parking:lane:right": "yes"}, | ||
| "replace": {"parking:right": "yes"} | ||
| }, | ||
|
tordans marked this conversation as resolved.
Outdated
|
||
| { | ||
| "old": {"parking:lane:right": "no"}, | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| "replace": {"parking:right": "no"} | ||
| }, | ||
| { | ||
| "old": {"parking:lane:right": "no_parking"}, | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| "replace": {"parking:right": "no", "parking:right:restriction": "no_parking"} | ||
| }, | ||
| { | ||
| "old": {"parking:lane:right": "no_standing"}, | ||
| "replace": {"parking:right": "no", "parking:right:restriction": "no_standing"} | ||
| }, | ||
|
tordans marked this conversation as resolved.
Outdated
|
||
| { | ||
| "old": {"parking:lane:right": "no_stopping"}, | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| "replace": {"parking:right": "no", "parking:right:restriction": "no_stopping"} | ||
| }, | ||
| { | ||
| "old": {"parking:lane:right": "fire_lane"}, | ||
| "replace": {"parking:right": "no", "parking:right:restriction": "no_stopping", "parking:right:restriction:reason": "fire_lane"} | ||
| }, | ||
|
tordans marked this conversation as resolved.
Outdated
|
||
| { | ||
| "old": {"parking:lane:right": "separate"}, | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| "replace": {"parking:right": "separate"} | ||
| }, | ||
| { | ||
| "old": {"parking:lane:right": "diagonal"}, | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| "replace": {"parking:right": "yes", "parking:right:orientation": "diagonal"} | ||
| }, | ||
| { | ||
| "old": {"parking:lane:right": "parallel"}, | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| "replace": {"parking:right": "yes", "parking:right:orientation": "parallel"} | ||
| }, | ||
| { | ||
| "old": {"parking:lane:right": "perpendicular"}, | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| "replace": {"parking:right": "yes", "parking:right:orientation": "perpendicular"} | ||
| }, | ||
| { | ||
| "old": {"parking:lane:right:parallel": "on_street"}, | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| "replace": {"parking:right": "lane"} | ||
| }, | ||
| { | ||
| "old": {"parking:orientation": "*"}, | ||
| "replace": {"orientation": "$1"} | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.