fix(minimum_rule_based_planner): always shift trajectory start to ego - #3244
Open
mraditya01 wants to merge 4 commits into
Open
fix(minimum_rule_based_planner): always shift trajectory start to ego #3244mraditya01 wants to merge 4 commits into
mraditya01 wants to merge 4 commits into
Conversation
|
@mraditya01 Thank you for contributing to TIER IV E2E branch! Edit the checklist below and check the boxes as you complete the items. Things to check before mergingPlease check the following points before merging:
After mergingPlease check the following points after merging:
|
Kotakku
reviewed
Jul 24, 2026
|
|
||
| TrajectoryShiftParams shift_params; | ||
| shift_params.minimum_shift_length = params_.path_planning.path_shift.minimum_shift_length; | ||
| shift_params.minimum_shift_yaw = params_.path_planning.path_shift.minimum_shift_yaw; |
There was a problem hiding this comment.
Could you also remove the parameter from the param, schema, and config directory as well?
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Description
Update
autoware_minimum_rule_based_plannerto always shift the generated trajectory so that it starts from the ego pose.Previously, trajectory shifting was skipped when both the lateral offset and yaw deviation were below their configured thresholds. This could leave the trajectory start slightly misaligned with the ego pose.
Key changes
Remove the trajectory-shift bypass
minimum_shift_lengthandminimum_shift_yaw.Update the unit test
Related links
None.
How was this PR tested?
Unit test.
Before
After
Notes for reviewers
None.
Interface changes
None.