Provincial road parsing

Signed-off-by: Ahmet <63475369+ahmetlii@users.noreply.github.com>
This commit is contained in:
Ahmet 2024-01-12 23:31:11 +03:00 committed by GitHub
parent 92ae2eec6f
commit 7d1b298dd7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -569,7 +569,6 @@ public:
};
class TurkeyRoadShieldParser : public SimpleRoadShieldParser
// TODO: Add provincial road parser, formatted as (number)-(number)
{
public:
explicit TurkeyRoadShieldParser(std::string const & baseRoadNumber)
@ -578,7 +577,10 @@ public:
{"D.", RoadShieldType::Generic_Blue}, // White font.
{"D-", RoadShieldType::Generic_Blue}, // White font.
{"D", RoadShieldType::Generic_Blue}, // White font.
{"D ", RoadShieldType::Generic_Blue}, // White font.
{"D ", RoadShieldType::Generic_Blue}}) // White font.
{
}
: NumericRoadShieldParser(baseRoadNumber, {{01, 81, RoadShieldType::Generic_White} }}) //Blue font.
{
}
};