-
Notifications
You must be signed in to change notification settings - Fork 658
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(lane_change): remove overlapping preceding lanes #9526
base: main
Are you sure you want to change the base?
fix(lane_change): remove overlapping preceding lanes #9526
Conversation
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #9526 +/- ##
=======================================
Coverage 29.59% 29.60%
=======================================
Files 1442 1444 +2
Lines 108512 108558 +46
Branches 41409 41416 +7
=======================================
+ Hits 32119 32137 +18
- Misses 73269 73297 +28
Partials 3124 3124
*This pull request uses carry forward flags. Click here to find out more. ☔ View full report in Codecov by Sentry. |
planning/behavior_path_planner/autoware_behavior_path_lane_change_module/src/utils/utils.cpp
Outdated
Show resolved
Hide resolved
planning/behavior_path_planner/autoware_behavior_path_lane_change_module/src/utils/utils.cpp
Outdated
Show resolved
Hide resolved
d1be3e9
to
77fed5d
Compare
b9b800d
to
744e6aa
Compare
planning/behavior_path_planner/autoware_behavior_path_lane_change_module/src/utils/utils.cpp
Outdated
Show resolved
Hide resolved
Signed-off-by: Zulfaqar Azmi <[email protected]>
Signed-off-by: Zulfaqar Azmi <[email protected]>
Signed-off-by: Zulfaqar Azmi <[email protected]>
744e6aa
to
51a80c9
Compare
Signed-off-by: Zulfaqar Azmi <[email protected]>
Signed-off-by: Zulfaqar Azmi <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
Description
When the lanes are short, the preceding lane might overlap with the current lanes, as shown in the video below.
This could potentially affect the safety check results. To avoid this, we should remove the overlapping lane.
Before
Preceding lanes (Dark blue lanes) overlap current lanes.
cap-.2024-11-29-19-26-53.mp4
After
Preceding lanes no longer overlaps current lanes.
cap-.2024-11-29-19-24-40.mp4
Related links
Parent Issue:
How was this PR tested?
Notes for reviewers
None.
Interface changes
None.
Effects on system behavior
None.