From 2bbb347f572ba2778d5ed87d628e20936b6aa44e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Rodrigo?= Date: Sun, 6 Nov 2022 21:27:03 +0100 Subject: [PATCH] Car profile, add new specific country speed limit at:urban, ca-on:rural and es:trunk (#6443) --- profiles/car.lua | 3 +++ taginfo.json | 3 +++ 2 files changed, 6 insertions(+) diff --git a/profiles/car.lua b/profiles/car.lua index 770805962..c832ffdb2 100644 --- a/profiles/car.lua +++ b/profiles/car.lua @@ -268,6 +268,7 @@ function setup() -- List only exceptions maxspeed_table = { + ["at:urban"] = 40, ["at:rural"] = 100, ["at:trunk"] = 100, ["be:motorway"] = 120, @@ -276,6 +277,7 @@ function setup() ["be-vlg:rural"] = 70, ["by:urban"] = 60, ["by:motorway"] = 110, + ["ca-on:rural"] = 80, ["ch:rural"] = 80, ["ch:trunk"] = 100, ["ch:motorway"] = 120, @@ -285,6 +287,7 @@ function setup() ["de:rural"] = 100, ["de:motorway"] = 0, ["dk:rural"] = 80, + ["es:trunk"] = 90, ["fr:rural"] = 80, ["gb:nsl_single"] = (60*1609)/1000, ["gb:nsl_dual"] = (70*1609)/1000, diff --git a/taginfo.json b/taginfo.json index 358845d80..27e911dbd 100644 --- a/taginfo.json +++ b/taginfo.json @@ -146,12 +146,14 @@ {"key": "maxspeed", "value": "rural"}, {"key": "maxspeed", "value": "trunk"}, {"key": "maxspeed", "value": "motorway"}, + {"key": "maxspeed", "value": "AT:urban"}, {"key": "maxspeed", "value": "AT:rural"}, {"key": "maxspeed", "value": "AT:trunk"}, {"key": "maxspeed", "value": "BE:motorway"}, {"key": "maxspeed", "value": "BE-VLG:rural"}, {"key": "maxspeed", "value": "BY:urban"}, {"key": "maxspeed", "value": "BY:motorway"}, + {"key": "maxspeed", "value": "CA-ON:rural"}, {"key": "maxspeed", "value": "CH:rural"}, {"key": "maxspeed", "value": "CH:trunk"}, {"key": "maxspeed", "value": "CH:motorway"}, @@ -161,6 +163,7 @@ {"key": "maxspeed", "value": "DE:rural"}, {"key": "maxspeed", "value": "DE:motorway"}, {"key": "maxspeed", "value": "DK:rural"}, + {"key": "maxspeed", "value": "ES:trunk"}, {"key": "maxspeed", "value": "FR:rural"}, {"key": "maxspeed", "value": "GB:nsl_single"}, {"key": "maxspeed", "value": "GB:nsl_dual"},