Ignore intersections for lane crossing
This commit is contained in:
parent
33ca4dbf0a
commit
31f311c6f5
|
@ -47,6 +47,9 @@ namespace element {
|
|||
/// @todo This case should also be handled.
|
||||
return {};
|
||||
}
|
||||
if (w0.IsIntersection() || w1.IsIntersection()) {
|
||||
return {};
|
||||
}
|
||||
return CrossingAtSameSection(
|
||||
w0.GetLaneId(),
|
||||
w1.GetLaneId(),
|
||||
|
|
Loading…
Reference in New Issue