-
Notifications
You must be signed in to change notification settings - Fork 682
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): fix lane change speed #3091
Conversation
Signed-off-by: yutaka <purewater0901@gmail.com>
Codecov ReportPatch coverage has no change and project coverage change:
Additional details and impacted files@@ Coverage Diff @@
## main #3091 +/- ##
==========================================
- Coverage 12.25% 12.13% -0.13%
==========================================
Files 1358 1358
Lines 94724 95687 +963
Branches 26887 27620 +733
==========================================
Hits 11613 11613
- Misses 70853 71756 +903
- Partials 12258 12318 +60
*This pull request uses carry forward flags. Click here to find out more.
... and 2 files with indirect coverage changes Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. ☔ View full report in Codecov by Sentry. |
} | ||
const auto dist_from_end = target_lane_length - min_total_lane_changing_distance; | ||
return std::min(dist_from_lc_start, dist_from_end); | ||
return std::min(dist_from_lc_start, target_lane_length); |
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.
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.
Isn't it too short to do the double lane change?
Signed-off-by: yutaka <purewater0901@gmail.com>
…ation/autoware.universe into feat/fix-lane-change-speed
Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp> Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>
Description
Although autoware assumes the ego vehicle runs at a constant velocity while lane change, current code does not follow this rule. It assumes that the ego vehicle decelerates while doing lane change. This makes the vehicle speed unnecessary low while lane change.
In this PR, I changed the ego vehicle speed to a constant speed.
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.