-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Remove banDiscouragedCycling and banDiscouragedWalking #5341
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -2,8 +2,11 @@ | |||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
import static org.junit.jupiter.api.Assertions.assertEquals; | ||||||||||||||||||||||||||||||||||||||
import static org.junit.jupiter.api.Assertions.assertTrue; | ||||||||||||||||||||||||||||||||||||||
import static org.opentripplanner.street.model.StreetTraversalPermission.ALL; | ||||||||||||||||||||||||||||||||||||||
import static org.opentripplanner.street.model.StreetTraversalPermission.PEDESTRIAN; | ||||||||||||||||||||||||||||||||||||||
import static org.opentripplanner.street.model.StreetTraversalPermission.PEDESTRIAN_AND_BICYCLE; | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
import org.junit.jupiter.api.BeforeEach; | ||||||||||||||||||||||||||||||||||||||
import org.junit.jupiter.api.Test; | ||||||||||||||||||||||||||||||||||||||
import org.opentripplanner.openstreetmap.model.OSMWithTags; | ||||||||||||||||||||||||||||||||||||||
import org.opentripplanner.openstreetmap.wayproperty.SpeedPicker; | ||||||||||||||||||||||||||||||||||||||
|
@@ -13,12 +16,15 @@ | |||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
public class DefaultMapperTest { | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
static WayPropertySet wps = new WayPropertySet(); | ||||||||||||||||||||||||||||||||||||||
private WayPropertySet wps; | ||||||||||||||||||||||||||||||||||||||
float epsilon = 0.01f; | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
static { | ||||||||||||||||||||||||||||||||||||||
@BeforeEach | ||||||||||||||||||||||||||||||||||||||
public void setup() { | ||||||||||||||||||||||||||||||||||||||
var wps = new WayPropertySet(); | ||||||||||||||||||||||||||||||||||||||
DefaultMapper source = new DefaultMapper(); | ||||||||||||||||||||||||||||||||||||||
source.populateProperties(wps); | ||||||||||||||||||||||||||||||||||||||
this.wps = wps; | ||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||||||||
|
@@ -111,6 +117,32 @@ void stairs() { | |||||||||||||||||||||||||||||||||||||
assertEquals(PEDESTRIAN, props.getPermission()); | ||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
@Test | ||||||||||||||||||||||||||||||||||||||
void footDiscouraged() { | ||||||||||||||||||||||||||||||||||||||
var regular = WayTestData.pedestrianTunnel(); | ||||||||||||||||||||||||||||||||||||||
var props = wps.getDataForWay(regular); | ||||||||||||||||||||||||||||||||||||||
assertEquals(PEDESTRIAN_AND_BICYCLE, props.getPermission()); | ||||||||||||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It is a bit surprising that highway=footway gets BICYCLE permission by default, even when bicycle=no is set. Anyway, that issue is out of the scope of this PR. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Where do you see Lines 24 to 34 in 3d17964
However, We should indeed change it in a separate PR. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I tested adding bicycle=no myself, just for curiosity :) It did not change anything. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I believe that it's this piece of code taking care of it: OpenTripPlanner/src/main/java/org/opentripplanner/graph_builder/module/osm/OsmModule.java Lines 250 to 256 in 73d873b
I would be in favour of moving that somehow together with the other code figuring out the permissions. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I started working on that, and also fixing some known errors in traversal permission processing. |
||||||||||||||||||||||||||||||||||||||
assertEquals(1, props.getWalkSafetyFeatures().forward()); | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
var discouraged = WayTestData.pedestrianTunnel().addTag("foot", "discouraged"); | ||||||||||||||||||||||||||||||||||||||
var discouragedProps = wps.getDataForWay(discouraged); | ||||||||||||||||||||||||||||||||||||||
assertEquals(PEDESTRIAN_AND_BICYCLE, discouragedProps.getPermission()); | ||||||||||||||||||||||||||||||||||||||
assertEquals(3, discouragedProps.getWalkSafetyFeatures().forward()); | ||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
@Test | ||||||||||||||||||||||||||||||||||||||
void bicycleDiscouraged() { | ||||||||||||||||||||||||||||||||||||||
var regular = WayTestData.southeastLaBonitaWay(); | ||||||||||||||||||||||||||||||||||||||
var props = wps.getDataForWay(regular); | ||||||||||||||||||||||||||||||||||||||
assertEquals(ALL, props.getPermission()); | ||||||||||||||||||||||||||||||||||||||
assertEquals(.98, props.getBicycleSafetyFeatures().forward()); | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
var discouraged = WayTestData.southeastLaBonitaWay().addTag("bicycle", "discouraged"); | ||||||||||||||||||||||||||||||||||||||
var discouragedProps = wps.getDataForWay(discouraged); | ||||||||||||||||||||||||||||||||||||||
assertEquals(ALL, discouragedProps.getPermission()); | ||||||||||||||||||||||||||||||||||||||
assertEquals(2.94, discouragedProps.getBicycleSafetyFeatures().forward(), epsilon); | ||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||||||||
* Test that two values are within epsilon of each other. | ||||||||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||||||||
|
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 checked that this wasn't handled in the NorwayMapper either and it doesn't rely on the default mapper. I can ask if the norwegians have interest in this too.
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.
Sure, you can ask but I see very, very few instances of this tag in the Nordics: https://taginfo.openstreetmap.org/tags/bicycle=discouraged#map