-
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
Advisory speed limit added #4870
Conversation
@@ -5,6 +5,7 @@ | |||
"ref_road_number", | |||
"oneway_yes", | |||
"maxspeed", | |||
"maxspeed_advisory", |
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.
Normally advisory speed limits appear on motorway_link
and other *_link
roads. It can happen on non-link
s too, but typically only at curves.
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.
Ok so i have to add this field to all *link roads or something else that i should do.
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, it would make sense to add this field to all the *_link
presets. Maybe even remove maxspeed
in favor of maxspeed_advisory
on those presets.
The non-link
presets should be consistent with each other. So if motorway
has it, then the other highway
presets like residential
and tertiary
should too. For these presets, an extra “Advisory Speed Limit” field could be confusing if it appears by default, since most roads don’t have advisory speed limits. I wonder if we should leave it off of these non-link
presets until #4871 is implemented.
This is a great start @umarpreet1 - some quick feedback:
|
The key maxspeed:advisory is a rarely used key (12500 uses) and seems to be applicable mainly in the US and a few European countries only: https://taginfo.openstreetmap.org/keys/maxspeed%3Aadvisory#map |
To be sure, I wasn’t suggesting that
Specifically in the U.S., where legal speed limits are virtually never posted on freeway ramps:
One reason I opened #4522 is that mappers unaware of the In any case, I don’t want to derail this PR with this relatively minor question. @bhousel’s suggestions in #4870 (comment) would leave |
i have changed the following in as mentioned by you:- |
Removing maxspeed from link presets would generate the inverse problem in other countries. |
I agree with @slhh |
As with anything in the U.S., the answer varies by state. In some states, no legal speed limit applies to on- and off-ramps. In others, the freeway’s legal speed limit technically applies. But either way, driving over the advisory speed limit could subject the driver to a citation for dangerous driving according to the basic rule, which makes the legal speed limit a moot point. (Since legal speed limits aren’t signposted on ramps in the U.S., one could argue that they aren’t verifiable on the ground and therefore should be left off of
Agreed. It was just a suggestion, and it’s clear from this discussion that (Thanks for putting up with this back-and-forth, @umarpreet1!) |
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.
see comments
@@ -4,7 +4,7 @@ | |||
"name", | |||
"ref_road_number", | |||
"oneway", | |||
"maxspeed", | |||
"maxspeed/advisory", |
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.
maxspeed=*
is a valid tag on higway=motorway_link
in some countries and should not be removed.
@@ -3,7 +3,7 @@ | |||
"fields": [ | |||
"name", | |||
"oneway", | |||
"maxspeed", | |||
"maxspeed/advisory", |
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.
maxspeed=* is a valid tag on higway=primary_link in some countries and should not be removed.
@@ -3,7 +3,7 @@ | |||
"fields": [ | |||
"name", | |||
"oneway", | |||
"maxspeed", | |||
"maxspeed/advisory", |
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.
maxspeed=* is a valid tag on higway=secondary_link in some countries and should not be removed. highway=secondary_link
in settlements where the normal urban speed limit (e.g. 50 kph in many European countries) applies should get maxspeed=50
or maxspeed=<country_code>:urban
.
@@ -3,7 +3,7 @@ | |||
"fields": [ | |||
"name", | |||
"oneway", | |||
"maxspeed", | |||
"maxspeed/advisory", |
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.
maxspeed=* is a valid tag on higway=tertiary_link in some countries and should not be removed. highway=secondary_link
in settlements where the normal urban speed limit (e.g. 50 kph in many European countries) applies should get maxspeed=50
or maxspeed=<country_code>:urban
.
@@ -4,7 +4,7 @@ | |||
"name", | |||
"ref_road_number", | |||
"oneway", | |||
"maxspeed", | |||
"maxspeed/advisory", |
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.
maxspeed=* is a valid tag on higway=trunk_link in some countries and should not be removed.
Just catching up on the thread... I'm apologize - what I wrote above in my previous comment was confusing. I meant to say that link roads should continue to have the I'll cleanup and merge - thanks for your review @Nakaner @slhh @althio & @1ec5 |
i created advisory speed limit field and added it to preset highway=road and highway=motorway #4522