Skip to content

Commit

Permalink
Merge pull request #260 from HSLdevcom/DT-2745
Browse files Browse the repository at this point in the history
Dt 2745
  • Loading branch information
vesameskanen authored Sep 28, 2018
2 parents d81a54b + 0bf1880 commit e7aaa3d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ public void populateProperties(WayPropertySet props) {
props.setProperties("highway=pedestrian;bicycle=designated",
StreetTraversalPermission.PEDESTRIAN_AND_BICYCLE, 0.75, 0.75);
props.setProperties("highway=cycleway;bicycle=designated",
StreetTraversalPermission.PEDESTRIAN_AND_BICYCLE, 1.1, 1.1);
StreetTraversalPermission.PEDESTRIAN_AND_BICYCLE, 0.6, 0.6);

/* sidewalk and crosswalk */
props.setProperties("footway=sidewalk;highway=footway;bicycle=yes",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,9 @@ public void populateProperties(WayPropertySet props) {
props.setCarSpeed("highway=primary", 22.22f); // 80kph "Kantatie"
props.setCarSpeed("highway=primary_link", 15); // = 54kph

// Fixes problem with missing REDI park&ride tunnel connections
props.setProperties("highway=service;tunnel=yes", StreetTraversalPermission.ALL, 1.1, 1.1);

// Remove Helsinki city center service tunnel network from graph
props.setProperties("highway=service;tunnel=yes;access=destination", StreetTraversalPermission.NONE);
props.setProperties("highway=service;access=destination", StreetTraversalPermission.ALL, 1.1, 1.1);
Expand Down

0 comments on commit e7aaa3d

Please sign in to comment.