-
Notifications
You must be signed in to change notification settings - Fork 34
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
feat(driving_environment_analyzer): add new package #13
feat(driving_environment_analyzer): add new package #13
Conversation
Signed-off-by: satoshi-ota <[email protected]>
Signed-off-by: satoshi-ota <[email protected]>
explicit DrivingEnvironmentAnalyzer(const rclcpp::NodeOptions & node_options); | ||
|
||
private: | ||
bool isEnoughData(const bool use_map_in_bag); |
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.
nits: hasEnoughData or isDataReady
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.
Fixed in c524799.
route_handler_.setMap(*msg); | ||
has_map_data_ = true; |
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.
nits:
route_handler_ and has_map_data_ can be converted to one variable by making route_handler_ std::optional?
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!
Signed-off-by: satoshi-ota <[email protected]>
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #13 +/- ##
======================================
Coverage 0.00% 0.00%
======================================
Files 23 24 +1
Lines 2130 2292 +162
======================================
- Misses 2130 2292 +162
*This pull request uses carry forward flags. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Description
Add
driving_environment_analyzer
tool.Related links
Related PR: autowarefoundation/autoware.universe#6496
Tests performed
Test with ROSBAG.
Notes for reviewers
Interface changes
Effects on system behavior
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.