From 7f1be3b492bc8aa35e3a6701e6785edcec622702 Mon Sep 17 00:00:00 2001 From: Jan Piskvor Martinec Date: Tue, 25 Nov 2025 11:27:48 +0100 Subject: [PATCH] Update speed limit for cz:trunk to 110 Maxspeed at highway=trunk in Czechia is 110, minspeed is 80. Fixed from previous 130 (which has been wrong for years now, and keeps flagging correctly tagged ways). See also https://wiki.openstreetmap.org/wiki/Default_speed_limits#cite_ref-:41_158-0 --- plugins/TagFix_Maxspeed.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/TagFix_Maxspeed.py b/plugins/TagFix_Maxspeed.py index 521aae70a..4126ff104 100644 --- a/plugins/TagFix_Maxspeed.py +++ b/plugins/TagFix_Maxspeed.py @@ -49,7 +49,7 @@ class TagFix_Maxspeed(Plugin): 'ch:rural': ['80'], 'ch:trunk': ['100'], 'ch:motorway': ['120'], - 'cz:trunk': ['80', '130'], + 'cz:trunk': ['80', '110'], 'cz:motorway': ['80', '130'], 'de:living_street': ['walk'], 'de:rural': ['100'],