-
Notifications
You must be signed in to change notification settings - Fork 691
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(control_evaluator): add lanelet info to the metrics (#7765)
* add route handler Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com> * add lanelet info to diagnostic Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com> * add const Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com> * add kinematic state info Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com> * clean Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com> * remove unusde subscriptions Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com> * clean Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com> * add shoulder lanelets Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com> * fix includes Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com> --------- Signed-off-by: Daniel Sanchez <danielsanchezaran@gmail.com>
- Loading branch information
1 parent
b1549cc
commit f6db96f
Showing
5 changed files
with
137 additions
and
7 deletions.
There are no files selected for viewing
This file contains 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
6 changes: 6 additions & 0 deletions
6
evaluator/autoware_control_evaluator/launch/control_evaluator.launch.xml
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,21 @@ | ||
<launch> | ||
<arg name="input/diagnostics" default="/diagnostics"/> | ||
<arg name="input/odometry" default="/localization/kinematic_state"/> | ||
<arg name="input/acceleration" default="/localization/acceleration"/> | ||
<arg name="input/trajectory" default="/planning/scenario_planning/trajectory"/> | ||
<arg name="map_topic_name" default="/map/vector_map"/> | ||
<arg name="route_topic_name" default="/planning/mission_planning/route"/> | ||
<!-- control evaluator --> | ||
<group> | ||
<node name="control_evaluator" exec="control_evaluator" pkg="autoware_control_evaluator"> | ||
<param from="$(find-pkg-share autoware_control_evaluator)/param/control_evaluator.defaults.yaml"/> | ||
<remap from="~/input/diagnostics" to="$(var input/diagnostics)"/> | ||
<remap from="~/input/odometry" to="$(var input/odometry)"/> | ||
<remap from="~/input/acceleration" to="$(var input/acceleration)"/> | ||
<remap from="~/input/trajectory" to="$(var input/trajectory)"/> | ||
<remap from="~/metrics" to="/diagnostic/control_evaluator/metrics"/> | ||
<remap from="~/input/vector_map" to="$(var map_topic_name)"/> | ||
<remap from="~/input/route" to="$(var route_topic_name)"/> | ||
</node> | ||
</group> | ||
</launch> |
This file contains 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
This file contains 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
This file contains 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