forked from autowarefoundation/autoware.universe
-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2fe736c
commit fa35b8c
Showing
6 changed files
with
34 additions
and
40 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
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
11 changes: 5 additions & 6 deletions
11
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,20 +1,19 @@ | ||
<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"/> | ||
<arg name="input/vector_map" default="/map/vector_map"/> | ||
<arg name="input/route" 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="~/input/vector_map" to="$(var map_topic_name)"/> | ||
<remap from="~/input/route" to="$(var route_topic_name)"/> | ||
<remap from="~/input/vector_map" to="$(var input/vector_map)"/> | ||
<remap from="~/input/route" to="$(var input/route)"/> | ||
</node> | ||
</group> | ||
</launch> |
2 changes: 1 addition & 1 deletion
2
evaluator/autoware_control_evaluator/param/control_evaluator.defaults.yaml
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,3 +1,3 @@ | ||
/**: | ||
ros__parameters: | ||
output_metrics: false # if true, metrics are written to `<ros2_logging_directory>/autoware_metrics/<node_name>-<time_stamp>.json`. | ||
output_metrics: false # if true, metrics are written to `<ros2_logging_directory>/autoware_metrics/<node_name>-<time_stamp>.json`. |
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