Skip to content

Commit 0f72c96

Browse files
committed
Add parking=street_side
Adds a preset for street-side parking¹. 1: https://wiki.openstreetmap.org/wiki/Proposed_features/parking%3Dstreet_side
1 parent 95791d7 commit 0f72c96

File tree

4 files changed

+66
-1
lines changed

4 files changed

+66
-1
lines changed

data/fields/parking.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@
1111
"carports": "Carports",
1212
"garage_boxes": "Garage Boxes",
1313
"rooftop": "Rooftop",
14-
"sheds": "Sheds"
14+
"sheds": "Sheds",
15+
"street_side": "Street-side"
1516
}
1617
},
1718
"autoSuggestions" : false,
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"key": "parking:orientation",
3+
"type": "combo",
4+
"label": "Orientation",
5+
"strings": {
6+
"options": {
7+
"parallel": "Parallel to the Carriage Way",
8+
"diagonal": "Diagonal in Relation to the Carriage Way",
9+
"perpendicular": "Meets the Carriage Way at a Straight Angle"
10+
}
11+
}
12+
}
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"icon": "temaki-car_parked",
3+
"fields": [
4+
"{amenity/parking}",
5+
"parking/orientation"
6+
],
7+
"geometry": [
8+
"area",
9+
"point",
10+
"vertex"
11+
],
12+
"tags": {
13+
"amenity": "parking",
14+
"parking": "street_side"
15+
},
16+
"addTags": {
17+
"amenity": "parking",
18+
"parking": "street_side"
19+
},
20+
"reference": {
21+
"key": "parking",
22+
"value": "street_side"
23+
},
24+
"terms": [
25+
"automobile parking",
26+
"car parking",
27+
"vehicle parking",
28+
"street parking",
29+
"street-side parking",
30+
"streetside parking",
31+
"road-side parking",
32+
"roadside parking"
33+
],
34+
"name": "Street-side Parking"
35+
}

interim/source_strings.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1772,10 +1772,22 @@ en:
17721772
rooftop: Rooftop
17731773
# parking=sheds
17741774
sheds: Sheds
1775+
# parking=street_side
1776+
street_side: Street-side
17751777
# parking=surface
17761778
surface: Surface
17771779
# parking=underground
17781780
underground: Underground
1781+
parking/orientation:
1782+
# 'parking:orientation=*'
1783+
label: Orientation
1784+
options:
1785+
# 'parking:orientation=diagonal'
1786+
diagonal: Diagonal in Relation to the Carriage Way
1787+
# 'parking:orientation=parallel'
1788+
parallel: Parallel to the Carriage Way
1789+
# 'parking:orientation=perpendicular'
1790+
perpendicular: Meets the Carriage Way at a Straight Angle
17791791
parking_entrance:
17801792
# parking=*
17811793
label: Type
@@ -3734,6 +3746,11 @@ en:
37343746
name: Park & Ride Lot
37353747
# 'terms: commuter parking lot,incentive parking lot,metro parking lot,park and pool lot,park and ride lot,p+r,public transport parking lot,public transit parking lot,train parking lot'
37363748
terms: '<translate with synonyms or related terms for ''Park & Ride Lot'', separated by commas>'
3749+
amenity/parking/street-side:
3750+
# 'amenity=parking + parking=street_side\n\nTranslate the primary name. Optionally, add equivalent synonyms on newlines in order of preference (press the Return key).'
3751+
name: Street-side Parking
3752+
# 'terms: automobile parking,car parking,vehicle parking,street parking,street-side parking,streetside parking,road-side parking,roadside parking'
3753+
terms: '<translate with synonyms or related terms for ''Street-side Parking'', separated by commas>'
37373754
amenity/parking/underground:
37383755
# 'amenity=parking + parking=underground\n\nTranslate the primary name. Optionally, add equivalent synonyms on newlines in order of preference (press the Return key).'
37393756
name: Underground Parking

0 commit comments

Comments
 (0)