-
Notifications
You must be signed in to change notification settings - Fork 683
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(behavior_path_planner): lane change intersection stop #1480
fix(behavior_path_planner): lane change intersection stop #1480
Conversation
fixing lane change stopping before lane change prohibited area. currently the stop function is not working so properly. Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
Codecov Report
@@ Coverage Diff @@
## main #1480 +/- ##
==========================================
+ Coverage 10.18% 10.31% +0.13%
==========================================
Files 1135 1135
Lines 78538 74956 -3582
Branches 17891 17726 -165
==========================================
- Hits 7998 7731 -267
+ Misses 62922 59863 -3059
+ Partials 7618 7362 -256
*This pull request uses carry forward flags. Click here to find out more.
Continue to review full report at Codecov.
|
planning/behavior_path_planner/include/behavior_path_planner/utilities.hpp
Outdated
Show resolved
Hide resolved
move output to the last parameter Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
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
* fix(behavior_path_planner): lane change intersection stop fixing lane change stopping before lane change prohibited area. currently the stop function is not working so properly. Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp> * fix: change order of parameter move output to the last parameter Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
* fix(behavior_path_planner): lane change intersection stop fixing lane change stopping before lane change prohibited area. currently the stop function is not working so properly. Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp> * fix: change order of parameter move output to the last parameter Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
* fix(behavior_path_planner): lane change intersection stop fixing lane change stopping before lane change prohibited area. currently the stop function is not working so properly. Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp> * fix: change order of parameter move output to the last parameter Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
* fix(behavior_path_planner): lane change intersection stop fixing lane change stopping before lane change prohibited area. currently the stop function is not working so properly. Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp> * fix: change order of parameter move output to the last parameter Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
…undation#1480) * fix(behavior_path_planner): lane change intersection stop fixing lane change stopping before lane change prohibited area. currently the stop function is not working so properly. Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp> * fix: change order of parameter move output to the last parameter Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
* fix(behavior_path_planner): lane change intersection stop fixing lane change stopping before lane change prohibited area. currently the stop function is not working so properly. Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp> * fix: change order of parameter move output to the last parameter Signed-off-by: Muhammad Zulfaqar Azmi <zulfaqar.azmi@tier4.jp>
fixing lane change stopping before lane change prohibited area.
currently the stop function is not working so properly.
Signed-off-by: Muhammad Zulfaqar Azmi zulfaqar.azmi@tier4.jp
Description
In current lane change module, if the goal pose is slightly after intersection, and the minimum distance to perform lane change is insufficient, ego vehicle should stop before the intersection.
However, at the present module, ego stop before intersection, but the distance is not enough to perform lane change. example is as follows
![Before](https://user-images.githubusercontent.com/93502286/182097101-2556c72f-fb82-450c-a235-de235b2415f6.png)
This pr aims to solve this issue by fixing the bug. In addition to the intersection length, we should also consider the stopping distance. the result is as follows.
![After](https://user-images.githubusercontent.com/93502286/182097092-d64b678e-77b6-41e4-a3b2-ecfde035e2a7.png)
Related links
Tests performed
Using psim and test lane change scenario.
Notes for reviewers
Pre-review checklist for the PR author
The PR author must check the checkboxes below when creating the PR.
In-review checklist for the PR reviewers
The PR reviewers must check the checkboxes below before approval.
Post-review checklist for the PR author
The PR author must check the checkboxes below before merging.
After all checkboxes are checked, anyone who has write access can merge the PR.