Hi,
I am new to OSM and started mapping in my home town. So I get two thing, where I coundn’t find an appropriate tag in the Wiki:
pedestrian zone which delivery allowed at certain time (e.g. 7-11 o’clock).
I found:
highway=pedestrian
access=delivery
But how tag delivery from 7am to 11am only?
Road with different maxspeed for each direction:
Road with incline of 12%. So downhill is maxspeed=60, uphill maxspeed=80.
How to tag this?
chris66
February 12, 2010, 7:17pm
#2
For time dependant access rules you can use hour_on / hour_off:
http://wiki.openstreetmap.org/wiki/Key:access
HGSandhagen:
Road with different maxspeed for each direction:
Road with incline of 12%. So downhill is maxspeed=60, uphill maxspeed=80.
You could use maxspeed:forward=60 and maxspeed:backward=80
but there is no application which evaluates this. So it’s an experimental feature.
Chris
Tordanik
(Tobias Knerr)
February 12, 2010, 10:20pm
#3
Extended conditions for access tags would cover both of your requirements:
highway=pedestrian
vehicle:(07:00-11:00)=delivery
and -as already suggested by chris66 -
incline=12%
maxspeed:forward=80
maxspeed:backward=60
I’m biased, though, because I created that proposal. And don’t expect these to be implemented in current applications yet.
I consider hour_on/off mostly useless, because you cannot specify which rule is being switched on/off.
Thank you for fast answer.
You are right, it is possible to find this answers in the Wiki too, but for a beginner like me it is very difficult to find the right information there.