From cf1432cbf74a773466276453eb66deae7a50e4c2 Mon Sep 17 00:00:00 2001 From: Yannik Bloscheck Date: Sat, 18 Oct 2025 23:16:42 +0200 Subject: [PATCH] Remove speed cameras in Germany Signed-off-by: Yannik Bloscheck --- libs/routing/speed_camera_prohibition.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/routing/speed_camera_prohibition.cpp b/libs/routing/speed_camera_prohibition.cpp index b5c8f7465..dddde8aa7 100644 --- a/libs/routing/speed_camera_prohibition.cpp +++ b/libs/routing/speed_camera_prohibition.cpp @@ -9,6 +9,7 @@ namespace { // List of country names where mwm should be generated without speed cameras. std::vector kSpeedCamerasProhibitedCountries = { + "Germany", "Macedonia", "Switzerland", "Turkey", @@ -17,7 +18,6 @@ std::vector kSpeedCamerasProhibitedCountries = { // List of country names where an end user should be warned about speed cameras. std::vector kSpeedCamerasPartlyProhibitedCountries = { "France", - "Germany", }; bool IsMwmContained(platform::CountryFile const & mwm, std::vector const & countryList)