-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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 presets for bicycle parkings... #6259
Merged
quincylvania
merged 3 commits into
openstreetmap:master
from
westnordost:presets-bicycle-parking
May 3, 2019
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
data/presets/presets/amenity/bicycle_parking/building.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"icon": "maki-bicycle", | ||
"fields": [ | ||
"{amenity/bicycle_parking}", | ||
"opening_hours" | ||
], | ||
"geometry": [ | ||
"point", | ||
"vertex", | ||
"area" | ||
], | ||
"tags": { | ||
"amenity": "bicycle_parking", | ||
"bicycle_parking": "building" | ||
}, | ||
"reference": { | ||
"key": "bicycle_parking" | ||
}, | ||
"terms": [ | ||
"Multi-Storey Bicycle Park", | ||
"Multi-Storey Bike Park", | ||
"Bike Parking Station" | ||
], | ||
"name": "Bicycle Parking Station" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"icon": "maki-bicycle", | ||
"geometry": [ | ||
"point", | ||
"vertex", | ||
"area" | ||
], | ||
"tags": { | ||
"amenity": "bicycle_parking", | ||
"bicycle_parking": "lockers" | ||
}, | ||
"reference": { | ||
"key": "bicycle_parking" | ||
}, | ||
"terms": [ | ||
"Bike Lockers" | ||
], | ||
"name": "Bicycle Lockers" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
{ | ||
"icon": "maki-bicycle", | ||
"fields": [ | ||
"{amenity/bicycle_parking}", | ||
"building_area" | ||
], | ||
"geometry": [ | ||
"point", | ||
"vertex", | ||
"area" | ||
], | ||
"tags": { | ||
"amenity": "bicycle_parking", | ||
"bicycle_parking": "shed" | ||
}, | ||
"reference": { | ||
"key": "bicycle_parking" | ||
}, | ||
"terms": [ | ||
"Bike Shed" | ||
], | ||
"name": "Bicycle Shed" | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hmm this one is weird..
Is it really
bicycle_parking=building
and notbuilding=bicycle_parking
?Can we change that before it gains traction?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These are two different things:
bicycle_parking=building
defines the type of bicycle parking: That it is in an enclosed building.building=bicycle_parking
is not defined in the wiki, but I guess it would be a building that was built for the purpose of serving as a bicycle parking station.The difference is, that the bicycle parking doesn't have to fill the whole building but may be some area or point within the building. So, much like
parking=multi-storey
vsbuilding=parking
.The
bicycle_parking=building
is already used by StreetComplete by a year or so. And much longer documented like that.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree with Bryan, this preset is confusing. I'd prefer to just use
indoor=yes
and reserve thebicycle_parking
tag for the actual method, like stands, lockers, or whatnot.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
indoor
is for indoor-mapping only butbicycle_parking=building
may and is often tagged on the whole building (but doesn't have to, as mentioned).There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On the wiki page, someone else raised a similar concern in 2017 as Bryan: https://wiki.openstreetmap.org/wiki/Talk:Key:bicycle_parking#Not_sure_if_bicycle_parking.3Dbuilding_makes_sense
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To summarize, tagging bicycle parking stations as
bicycle_parking=building
is missing an alternative because it could be tagged as an indoor-node but also the building itself. I see three options, please choose:building=bicycle_parking
insteadbicycle_parking=building
after all, leave PR as-isThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm I was assuming this preset was for bike parking inside buildings with other purposes, but I guess bike parking garages are a thing? If that's what this tag is actually for, then I'm fine with option 2 as long as we rename the preset to "Bicycle Parking Garage" or similar.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, the Netherlands are known worldwide for their advanced bicycle infrastructure. They call these apparently mostly "fietsenstalling stationsplein" (literally: bicycle storage station square).
Here is a Google StreetView of such a location (note that bicycle "street" ). The same location in OpenStreetMap is already tagged.
Though, note that with option 2, the preset would not work for cases like these because it is mapped as a node, much like a
amenity=parking_entrance
.I will probably have time to change the PR to option 2 later this evening (UTC+2) or otherwise on Saturday.