Merge pull request #5389 from gojuno/max_height_decrease

Decrease max height to 2 meters
This commit is contained in:
Lev Dragunov 2019-05-27 14:57:19 +03:00 committed by GitHub
commit 501e866992
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 2 deletions

View File

@ -9,6 +9,7 @@
- Routing: - Routing:
- CHANGED: allow routing past `barrier=arch` [#5352](https://github.com/Project-OSRM/osrm-backend/pull/5352) - CHANGED: allow routing past `barrier=arch` [#5352](https://github.com/Project-OSRM/osrm-backend/pull/5352)
- CHANGED: default car weight was reduced to 2000 kg. [#5371](https://github.com/Project-OSRM/osrm-backend/pull/5371) - CHANGED: default car weight was reduced to 2000 kg. [#5371](https://github.com/Project-OSRM/osrm-backend/pull/5371)
- CHANGED: default car height was reduced to 2 meters. [#5389](https://github.com/Project-OSRM/osrm-backend/pull/5389)
# 5.21.0 # 5.21.0
- Changes from 5.20.0 - Changes from 5.20.0

View File

@ -43,6 +43,7 @@ Feature: Car - Handle physical limitation
| primary | 1 | | | | primary | 1 | | |
| primary | 3 | | x | | primary | 3 | | x |
| primary | | 1 | | | primary | | 1 | |
| primary | | 8' | x |
| primary | | 3 | x | | primary | | 3 | x |
| primary | | default | x | | primary | | default | x |
| primary | | none | x | | primary | | none | x |

View File

@ -39,11 +39,11 @@ function setup()
cardinal_directions = false, cardinal_directions = false,
-- Size of the vehicle, to be limited by physical restriction of the way -- Size of the vehicle, to be limited by physical restriction of the way
vehicle_height = 2.5, -- in meters, 2.5m is the height of van vehicle_height = 2.0, -- in meters, 2.0m is the height slightly above biggest SUVs
vehicle_width = 1.9, -- in meters, ways with narrow tag are considered narrower than 2.2m vehicle_width = 1.9, -- in meters, ways with narrow tag are considered narrower than 2.2m
-- Size of the vehicle, to be limited mostly by legal restriction of the way -- Size of the vehicle, to be limited mostly by legal restriction of the way
vehicle_length = 4.8, -- in meters, 4.8m is the length of large or familly car vehicle_length = 4.8, -- in meters, 4.8m is the length of large or family car
vehicle_weight = 2000, -- in kilograms vehicle_weight = 2000, -- in kilograms
-- a list of suffixes to suppress in name change instructions. The suffixes also include common substrings of each other -- a list of suffixes to suppress in name change instructions. The suffixes also include common substrings of each other