Skip to content
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

Add descriptions to parking values and reorder them #1402

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 52 additions & 13 deletions data/fields/parking.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,58 @@
"label": "Type",
"strings": {
"options": {
"surface": "Surface",
"underground": "Underground",
"multi-storey": "Multilevel",
"street_side": "Street-Side",
"lane": "Roadside Lane",
"carports": "Carports",
"garage_boxes": "Garage Boxes",
"rooftop": "Rooftop",
"sheds": "Sheds",
"layby": "Turnout / Lay-By",
"on_kerb": "On Kerb",
"half_on_kerb": "Half On Kerb",
"shoulder": "Shoulder"
"surface": {
"title": "Surface",
"description": "One level of parking on the ground."
},
"street_side": {
"title": "Street-Side",
"description": "Parking directly adjacent to the street (but not on it)."
},
"lane": {
"title": "Roadside Lane",
"description": "Parking on the street (which could be easily converted to a travel lane)."
},
"underground": {
"title": "Underground",
"description": "Underground parking."
},
"multi-storey": {
"title": "Multilevel",
"description": "Two or more levels of parking decks in a building structure."
},
"rooftop": {
"title": "Rooftop",
"description": "One level of a parking deck on top of a building."
},
"carports": {
"title": "Carports",
"description": "Structure used to offer limited protection to vehicles, typically without walls."
},
"garage_boxes": {
"title": "Garage Boxes",
"description": "Private garage with multiple individual boxes for one car each."
},
"sheds": {
"title": "Sheds",
"description": "Private hangars for vehicles."
},
"layby": {
"title": "Turnout / Lay-By",
"description": "Parking at a rest area, alongside a road."
},
"on_kerb": {
"title": "On Kerb",
"description": "Parking on the sidewalk."
},
"half_on_kerb": {
"title": "Half On Kerb",
"description": "Parking partially on the sidewalk."
},
"shoulder": {
"title": "Shoulder",
"description": "Parking on the shoulder."
}
}
},
"autoSuggestions": false,
Expand Down
Loading