diff --git a/docs/osm/Germany.md b/docs/osm/Germany.md index 922aa3af836..becb8b4f15a 100644 --- a/docs/osm/Germany.md +++ b/docs/osm/Germany.md @@ -28,6 +28,7 @@ Lower safety values make an OSM way more desirable and higher values less desira | `highway=track; present(surface)` | `PEDESTRIAN_AND_BICYCLE` | | | | `highway=residential; junction=roundabout` | `ALL` | 0.98 | | | `present(highway); junction=roundabout` | `BICYCLE_AND_CAR` | | | +| `highway=living_street; present(cycleway)` | `ALL` | 0.85 | | | `highway=pedestrian` | `PEDESTRIAN` | | | | `highway=residential; maxspeed=30` | `ALL` | 0.9 | | | `highway=footway; bicycle=yes` | `PEDESTRIAN_AND_BICYCLE` | 0.8 | | diff --git a/src/main/java/org/opentripplanner/openstreetmap/tagmapping/GermanyMapper.java b/src/main/java/org/opentripplanner/openstreetmap/tagmapping/GermanyMapper.java index 100259ee7e3..579a8522f84 100644 --- a/src/main/java/org/opentripplanner/openstreetmap/tagmapping/GermanyMapper.java +++ b/src/main/java/org/opentripplanner/openstreetmap/tagmapping/GermanyMapper.java @@ -52,10 +52,7 @@ public void populateProperties(WayPropertySet props) { // Living streets with cycleways are usually accessible for all modes // https://overpass-turbo.eu/s/1OPP - props.setProperties( - "highway=living_street;cycleway=*", - withModes(ALL).bicycleSafety(0.85) - ); + props.setProperties("highway=living_street;cycleway=*", withModes(ALL).bicycleSafety(0.85)); // Pedestrian zones in Germany are forbidden for bicycles by default props.setProperties("highway=pedestrian", withModes(PEDESTRIAN));