I’d like to apply some custom weighting to car and I’m curios if road_class = MOTORWAY covers/includes highway=motorway_link. I mean if I have such custom model:
{
"speed": [
{
"if": "road_class == MOTORWAY",
"limit_to": 50
}
]
}
I apply 50 km/h to both highway=motorway
and highway=motorway_link
? Or I should add another statement?
{
"if": "road_class == MOTORWAY && road_class_link",
"limit_to": 50
}