-
Notifications
You must be signed in to change notification settings - Fork 659
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
refactor(lanelet2_map_preprocessor): rework parameter #6218
refactor(lanelet2_map_preprocessor): rework parameter #6218
Conversation
30c4c85
to
1020192
Compare
1020192
to
a032de4
Compare
a032de4
to
5e6123a
Compare
WalkthroughThe changes in this pull request introduce a new directory called Changes
Uplevel your code reviews with CodeRabbit ProCodeRabbit ProIf you like this project, please support us by purchasing the Pro version. The Pro version has advanced context, superior noise reduction and several proprietary improvements compared to the open source version. Moreover, CodeRabbit Pro is free for open source projects. |
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.
Files selected (3)
- map/util/lanelet2_map_preprocessor/CMakeLists.txt (1)
- map/util/lanelet2_map_preprocessor/launch/transform_maps.launch.xml (1)
- map/util/lanelet2_map_preprocessor/src/transform_maps.cpp (1)
Files ignored due to filter (2)
- map/util/lanelet2_map_preprocessor/config/transform_maps.param.yaml
- map/util/lanelet2_map_preprocessor/schema/transform_maps.schema.json
Files skipped from review due to trivial changes (1)
- map/util/lanelet2_map_preprocessor/CMakeLists.txt
Review comments generated (2)
- Review: 1
- LGTM: 1
Tips
Chat with CodeRabbit Bot (@coderabbitai
)
- Reply on review comments left by this bot to ask follow-up questions. A review comment is a comment on a diff or a file.
- Invite the bot into a review comment chain by tagging
@coderabbitai
in a reply.
Code suggestions
- The bot may make code suggestions, but please review them carefully before committing since the line number ranges may be misaligned.
- You can edit the comment made by the bot and manually tweak the suggestion if it is slightly off.
Pausing incremental reviews
- Add
@coderabbitai: ignore
anywhere in the PR description to pause further reviews from the bot.
map/util/lanelet2_map_preprocessor/launch/transform_maps.launch.xml
Outdated
Show resolved
Hide resolved
map/util/lanelet2_map_preprocessor/launch/transform_maps.launch.xml
Outdated
Show resolved
Hide resolved
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #6218 +/- ##
=======================================
Coverage 14.84% 14.84%
=======================================
Files 1838 1838
Lines 126712 126712
Branches 37976 37976
=======================================
Hits 18816 18816
Misses 86649 86649
Partials 21247 21247
*This pull request uses carry forward flags. Click here to find out more. ☔ View full report in Codecov by Sentry. |
e36b018
to
5ba1b87
Compare
@mitsudome-r Could you review this pull-request again? |
@mitsudome-r Friendly ping. |
"transform_maps": { | ||
"type": "object", | ||
"properties": { | ||
"x": { |
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 should be schema for map paths as well:
"llt_map_path": {
"type": "string",
"description": "Path pointing to the input lanelet2 file",
"default": ""
},
"pcd_map_path": {
"type": "string",
"description": "Path pointing to the input point cloud file",
"default": ""
},
"llt_output_path": {
"type": "string",
"description": "Path pointing to the output lanelet2 file",
"default": ""
},
"pcd_output_path": {
"type": "string",
"description": "Path pointing to the output point cloud file",
"default": ""
},
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.
I've modified it as you said. Thank you.
…launch.xml Signed-off-by: Motsu-san <[email protected]>
Signed-off-by: Motsu-san <[email protected]>
Signed-off-by: Motsu-san <[email protected]>
…pcd.launch.xml Signed-off-by: Motsu-san <[email protected]>
5ba1b87
to
fbef4e1
Compare
@mitsudome-r I've modified it to be reviewed. Could you review this pull-request again? |
…tion#6218) * refactor: Create .yaml file for default parameters of transform_maps.launch.xml Signed-off-by: Motsu-san <[email protected]> * refactor: Create JSON Schema file of transform_maps Signed-off-by: Motsu-san <[email protected]> * style(pre-commit): autofix --------- Signed-off-by: Motsu-san <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
* refactor: Create .yaml file for default parameters of transform_maps.launch.xml Signed-off-by: Motsu-san <[email protected]> * refactor: Create JSON Schema file of transform_maps Signed-off-by: Motsu-san <[email protected]> * style(pre-commit): autofix --------- Signed-off-by: Motsu-san <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Signed-off-by: Kotaro Yoshimoto <[email protected]>
…tion#6218) * refactor: Create .yaml file for default parameters of transform_maps.launch.xml Signed-off-by: Motsu-san <[email protected]> * refactor: Create JSON Schema file of transform_maps Signed-off-by: Motsu-san <[email protected]> * style(pre-commit): autofix --------- Signed-off-by: Motsu-san <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Description
Implement the ROS Node configuration layout described in https://github.com/orgs/autowarefoundation/discussions/3371.
and the autoware_launch repository.Parameters
chapter in the readme file.Tests performed
Check if the parameters set
Check if json schema works
result
Effects on system behavior
Not applicable.
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.
Summary by CodeRabbit