diff --git a/CHANGELOG.md b/CHANGELOG.md index f17bf4ab8c..f472078272 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,7 @@ - CHANGED: Upgrade Cucumber-js to v12 [#7221](https://github.com/Project-OSRM/osrm-backend/pull/7221) - CHANGED: Add libcap-setcap to alpine dockerfile [#7241](https://github.com/Project-OSRM/osrm-backend/issues/7241) - FIXED: Minor misspellings found in source code, comments and documents [#7215](https://github.com/Project-OSRM/osrm-backend/pull/7215) + - FIXED: Give correct urban/rural speed limits for Argentina [#7286](https://github.com/Project-OSRM/osrm-backend/pull/7286) - Profiles: - FIXED: Bicycle and foot profiles now don't route on motor roads [#6697](https://github.com/Project-OSRM/osrm-backend/pull/6697) - FIXED: Use `cycleway:both` if available. [#6179](https://github.com/Project-OSRM/osrm-backend/issues/6179) diff --git a/profiles/car.lua b/profiles/car.lua index 5638cb276c..2af586d06f 100644 --- a/profiles/car.lua +++ b/profiles/car.lua @@ -269,6 +269,8 @@ function setup() maxspeed_table = { ["at:rural"] = 100, ["at:trunk"] = 100, + ["ar:urban"]: 40, + ["ar:rural"]: 110, ["be:motorway"] = 120, ["be-bru:rural"] = 70, ["be-bru:urban"] = 30, diff --git a/taginfo.json b/taginfo.json index 4a24269400..4bfa8f18c9 100644 --- a/taginfo.json +++ b/taginfo.json @@ -159,6 +159,8 @@ {"key": "maxspeed", "value": "rural"}, {"key": "maxspeed", "value": "trunk"}, {"key": "maxspeed", "value": "motorway"}, + {"key": "maxspeed", "value": "AR:urban"}, + {"key": "maxspeed", "value": "AR:rural"}, {"key": "maxspeed", "value": "AT:rural"}, {"key": "maxspeed", "value": "AT:trunk"}, {"key": "maxspeed", "value": "BE:motorway"},