-
Notifications
You must be signed in to change notification settings - Fork 668
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(autoware_test_utils): move test_map, add launcher for test_map (#…
…9045) Signed-off-by: Mamoru Sobue <[email protected]>
- Loading branch information
Showing
17 changed files
with
90,240 additions
and
30,281 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,4 +25,5 @@ ament_auto_package(INSTALL_TO_SHARE | |
config | ||
test_map | ||
test_data | ||
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
File renamed without changes
File renamed without changes
16 changes: 16 additions & 0 deletions
16
common/autoware_test_utils/launch/psim_intersection.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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<launch> | ||
<!-- Essential parameters --> | ||
<arg name="vehicle_model" default="sample_vehicle" description="vehicle model name"/> | ||
<arg name="sensor_model" default="sample_sensor_kit" description="sensor model name"/> | ||
<arg name="rviz_config" default="$(find-pkg-share autoware_launch)/rviz/autoware.rviz" description="rviz config"/> | ||
<arg name="use_sim_time" default="true"/> | ||
|
||
<include file="$(find-pkg-share autoware_launch)/launch/planning_simulator.launch.xml"> | ||
<arg name="map_path" value="$(find-pkg-share autoware_test_utils)/test_map/intersection"/> | ||
<arg name="vehicle_model" value="$(var vehicle_model)"/> | ||
<arg name="sensor_model" value="$(var sensor_model)"/> | ||
<arg name="use_sim_time" value="$(var use_sim_time)"/> | ||
<arg name="rviz_config" value="$(var rviz_config)"/> | ||
</include> | ||
</launch> |
16 changes: 16 additions & 0 deletions
16
common/autoware_test_utils/launch/psim_road_shoulder.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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<launch> | ||
<!-- Essential parameters --> | ||
<arg name="vehicle_model" default="sample_vehicle" description="vehicle model name"/> | ||
<arg name="sensor_model" default="sample_sensor_kit" description="sensor model name"/> | ||
<arg name="rviz_config" default="$(find-pkg-share autoware_launch)/rviz/autoware.rviz" description="rviz config"/> | ||
<arg name="use_sim_time" default="true"/> | ||
|
||
<include file="$(find-pkg-share autoware_launch)/launch/planning_simulator.launch.xml"> | ||
<arg name="map_path" value="$(find-pkg-share autoware_test_utils)/test_map/road_shoulder"/> | ||
<arg name="vehicle_model" value="$(var vehicle_model)"/> | ||
<arg name="sensor_model" value="$(var sensor_model)"/> | ||
<arg name="use_sim_time" value="$(var use_sim_time)"/> | ||
<arg name="rviz_config" value="$(var rviz_config)"/> | ||
</include> | ||
</launch> |
Oops, something went wrong.