forked from autowarefoundation/autoware.universe
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into refactor/start_planner_post_process
Signed-off-by: kyoichi-sugahara <[email protected]>
- Loading branch information
Showing
23 changed files
with
360 additions
and
330 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
17 changes: 5 additions & 12 deletions
17
...ist_estimator/eagleye/fix2pose.launch.xml → ...tor/eagleye/geo_pose_converter.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,30 +1,23 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<launch> | ||
<arg name="output_pose_with_cov_name" default="/localization/pose_estimator/pose_with_covariance"/> | ||
<node pkg="eagleye_fix2pose" name="fix2pose_node" exec="fix2pose"> | ||
<!-- /eagleye/fix or /GNSS/fix(GNSS pose only mode)--> | ||
<remap from="eagleye/fix" to="eagleye/fix"/> | ||
|
||
<node pkg="eagleye_geo_pose_converter" name="geo_pose_converter_node" exec="geo_pose_converter" output="screen"> | ||
<remap from="eagleye/pose_with_covariance" to="$(var output_pose_with_cov_name)"/> | ||
|
||
<!-- plane rectangular coordinate number --> | ||
<param name="plane" value="7"/> | ||
<!-- 1 : plane rectangular coordinate 2 : MGRS --> | ||
<param name="tf_num" value="2"/> | ||
<!-- 0 : No convert 1 : ellipsoid -> altitude 2 : altitude -> ellipsoid --> | ||
<param name="convert_height_num" value="0"/> | ||
<!-- 0 : EGM2008-1 1 : Japanese Geoid 2011 Ver2.1 --> | ||
<!-- cspell:ignore GSIGEO2011 --> | ||
<!-- 0 : EGM2008-1 1 : GSIGEO2011 Ver2.1 --> | ||
<param name="geoid_type" value="1"/> | ||
|
||
<param name="parent_frame_id" value="map"/> | ||
<param name="child_frame_id" value="eagleye_base_link"/> | ||
<param name="base_link_frame_id" value="base_link"/> | ||
<param name="gnss_frame_id" value="gnss_link"/> | ||
|
||
<param name="fix_only_publish" value="false"/> | ||
<!-- 0:fix.status 1:fix.position_covariance[0] (if fix_only_publish==true)--> | ||
<param name="fix_judgement_type" value="0"/> | ||
<!--Fix status(if fix_judgement_type is 0)--> | ||
<param name="fix_gnss_status" value="0"/> | ||
<!-- Minimum covariance of the pose topics to be published(if fix_judgement_type is 0)--> | ||
<param name="fix_std_pos_thres" value="0.1"/> | ||
</node> | ||
</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
160 changes: 0 additions & 160 deletions
160
launch/tier4_planning_launch/launch/scenario_planning/parking.launch.py
This file was deleted.
Oops, something went wrong.
58 changes: 32 additions & 26 deletions
58
launch/tier4_planning_launch/launch/scenario_planning/parking.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,32 +1,38 @@ | ||
<launch> | ||
<arg name="vehicle_param_file"/> | ||
|
||
<!-- parking scenario --> | ||
<group> | ||
<group if="$(var launch_parking_module)"> | ||
<push-ros-namespace namespace="parking"/> | ||
<group> | ||
<include file="$(find-pkg-share costmap_generator)/launch/costmap_generator.launch.xml"> | ||
<arg name="input_objects" value="/perception/object_recognition/objects"/> | ||
<arg name="input_points_no_ground" value="/perception/obstacle_segmentation/pointcloud"/> | ||
<arg name="input_lanelet_map" value="/map/vector_map"/> | ||
<arg name="input_scenario" value="/planning/scenario_planning/scenario"/> | ||
<arg name="output_grid_map" value="costmap_generator/grid_map"/> | ||
<arg name="output_occupancy_grid" value="costmap_generator/occupancy_grid"/> | ||
<arg name="vehicle_param_file" value="$(var vehicle_param_file)"/> | ||
</include> | ||
</group> | ||
|
||
<group> | ||
<include file="$(find-pkg-share freespace_planner)/launch/freespace_planner.launch.xml"> | ||
<arg name="input_route" value="/planning/mission_planning/route"/> | ||
<arg name="input_occupancy_grid" value="costmap_generator/occupancy_grid"/> | ||
<arg name="input_scenario" value="/planning/scenario_planning/scenario"/> | ||
<arg name="input_odometry" value="/localization/kinematic_state"/> | ||
<arg name="output_trajectory" value="/planning/scenario_planning/parking/trajectory"/> | ||
<arg name="is_completed" value="/planning/scenario_planning/parking/is_completed"/> | ||
<arg name="param_file" value="$(find-pkg-share tier4_planning_launch)/config/scenario_planning/parking/freespace_planner/freespace_planner.param.yaml"/> | ||
<arg name="vehicle_param_file" value="$(var vehicle_param_file)"/> | ||
</include> | ||
</group> | ||
<node_container pkg="rclcpp_components" exec="$(var container_type)" name="parking_container" namespace="" output="screen"> | ||
<composable_node pkg="costmap_generator" plugin="CostmapGenerator" name="costmap_generator" namespace=""> | ||
<!-- topic remap --> | ||
<remap from="~/input/objects" to="/perception/object_recognition/objects"/> | ||
<remap from="~/input/points_no_ground" to="/perception/obstacle_segmentation/pointcloud"/> | ||
<remap from="~/input/vector_map" to="/map/vector_map"/> | ||
<remap from="~/input/scenario" to="/planning/scenario_planning/scenario"/> | ||
<remap from="~/output/grid_map" to="costmap_generator/grid_map"/> | ||
<remap from="~/output/occupancy_grid" to="costmap_generator/occupancy_grid"/> | ||
<!-- params --> | ||
<param from="$(var vehicle_param_file)"/> | ||
<param from="$(var costmap_generator_param_path)"/> | ||
<extra_arg name="use_intra_process_comms" value="false"/> | ||
</composable_node> | ||
|
||
<composable_node pkg="freespace_planner" plugin="freespace_planner::FreespacePlannerNode" name="freespace_planner" namespace=""> | ||
<!-- topic remap --> | ||
<remap from="~/input/route" to="/planning/mission_planning/route"/> | ||
<remap from="~/input/scenario" to="/planning/scenario_planning/scenario"/> | ||
<remap from="~/input/occupancy_grid" to="costmap_generator/occupancy_grid"/> | ||
<remap from="~/input/odometry" to="/localization/kinematic_state"/> | ||
<remap from="~/output/trajectory" to="/planning/scenario_planning/parking/trajectory"/> | ||
<remap from="is_completed" to="/planning/scenario_planning/parking/is_completed"/> | ||
<!-- params --> | ||
<param from="$(var vehicle_param_file)"/> | ||
<param from="$(var freespace_planner_param_path)"/> | ||
<extra_arg name="use_intra_process_comms" value="false"/> | ||
</composable_node> | ||
|
||
<composable_node pkg="glog_component" plugin="GlogComponent" name="glog_component" namespace=""/> | ||
</node_container> | ||
</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
Oops, something went wrong.