-
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(autoware_mpc_lateral_controller): add timestamp and frame ID to published trajectory #8164
fix(autoware_mpc_lateral_controller): add timestamp and frame ID to published trajectory #8164
Conversation
Signed-off-by: kyoichi-sugahara <kyoichi.sugahara@tier4.jp>
Thank you for contributing to the Autoware project! 🚧 If your pull request is in progress, switch it to draft mode. Please ensure:
|
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
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #8164 +/- ##
==========================================
- Coverage 29.14% 29.14% -0.01%
==========================================
Files 1608 1608
Lines 118145 118158 +13
Branches 50854 50856 +2
==========================================
- Hits 34439 34438 -1
- Misses 74460 74473 +13
- Partials 9246 9247 +1
*This pull request uses carry forward flags. Click here to find out more. ☔ View full report in Codecov by Sentry. |
…ublished trajectory (autowarefoundation#8164) add timestamp and frame ID to published trajectory Signed-off-by: kyoichi-sugahara <kyoichi.sugahara@tier4.jp>
…ublished trajectory (autowarefoundation#8164) add timestamp and frame ID to published trajectory Signed-off-by: kyoichi-sugahara <kyoichi.sugahara@tier4.jp>
…ublished trajectory (autowarefoundation#8164) (#1452) add timestamp and frame ID to published trajectory Signed-off-by: kyoichi-sugahara <kyoichi.sugahara@tier4.jp> Co-authored-by: Kyoichi Sugahara <kyoichi.sugahara@tier4.jp>
…ublished trajectory (autowarefoundation#8164) add timestamp and frame ID to published trajectory Signed-off-by: kyoichi-sugahara <kyoichi.sugahara@tier4.jp>
Description
In this PR, predicted path calculated using the Frenet coordinate system were added for debug purpose, but they couldn't be visualized in rviz due to missing header information.
added the necessary header information with following modification to resolve this issue.
How was this PR tested?
tested in psim and confirmed visualization
![Screenshot from 2024-07-23 20-28-54](https://private-user-images.githubusercontent.com/32741405/351308116-257f9eba-3b08-446f-9df4-3cf49b202e3f.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk0MDAyOTgsIm5iZiI6MTczOTM5OTk5OCwicGF0aCI6Ii8zMjc0MTQwNS8zNTEzMDgxMTYtMjU3ZjllYmEtM2IwOC00NDZmLTlkZjQtM2NmNDliMjAyZTNmLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTIlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjEyVDIyMzk1OFomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTFiMGQ5YWFhYTc0ODgwZDA3OTAzZjJlZjI1YWZiMWU2NjE2NjkxZGFmNGMzMjQ0MWM0ZTIzOGVkNTYzNGQxYzYmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.crkzb7rqKCRDYxUphbVc5S8krhptr3EtH3qIgZ7UnkA)
Effects on system behavior
None.