Skip to content

Commit a1e5061

Browse files
Zverikdanpat
authored andcommitted
Decrease default car weight to 2 tons (#5371)
* Decrease default car weight to 2 tons * Add a link to PR to the change log
1 parent 2c7c18f commit a1e5061

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
- ADDED: new API parameter - `snapping=any|default` to allow snapping to previously unsnappable edges [#5361](https://github.com/Project-OSRM/osrm-backend/pull/5361)
99
- Routing:
1010
- CHANGED: allow routing past `barrier=arch` [#5352](https://github.com/Project-OSRM/osrm-backend/pull/5352)
11+
- CHANGED: default car weight was reduced to 2000 kg. [#5371](https://github.com/Project-OSRM/osrm-backend/pull/5371)
1112

1213
# 5.21.0
1314
- Changes from 5.20.0

features/car/physical_limitation.feature

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ Feature: Car - Handle physical limitation
6262
| highway | maxweight | bothw |
6363
| primary | | x |
6464
| primary | 1 | |
65+
| primary | 2 | x |
6566
| primary | 3.5 | x |
6667
| primary | 35000 kg | x |
6768
| primary | 8.9t | x |

profiles/car.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ function setup()
4444

4545
-- Size of the vehicle, to be limited mostly by legal restriction of the way
4646
vehicle_length = 4.8, -- in meters, 4.8m is the length of large or familly car
47-
vehicle_weight = 3500, -- in kilograms
47+
vehicle_weight = 2000, -- in kilograms
4848

4949
-- a list of suffixes to suppress in name change instructions. The suffixes also include common substrings of each other
5050
suffix_list = {

0 commit comments

Comments
 (0)