Skip to content
Prev Previous commit
Next Next commit
feat: increase speed on living streets such that it matches the speed…
… used by vehicle profiles

The original "walking speed" of 6 km/h was unrealistically low for a road bike.
  • Loading branch information
aoles committed Aug 1, 2025
commit 69e9f99c564d118923fb40899229e99fea3782fa
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ public RoadBikeFlagEncoder(int speedBits, double speedFactor, int maxTurnCosts,
setSurfaceSpeed("wood", PUSHING_SECTION_SPEED / 2);

setHighwaySpeed(KEY_CYCLEWAY, 18);
setHighwaySpeed("living_street", 10);
setHighwaySpeed("path", 8);
setHighwaySpeed("footway", 6);
setHighwaySpeed("pedestrian", 6);
Expand Down