-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #695 from furushchev/pr2-iai-gazebo
[jsk_pr2_startup] IAI kitchen gazebo startup launch
- Loading branch information
Showing
4 changed files
with
36 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
- git: | ||
local-name: code-iai/iai_maps | ||
uri: https://github.com/code-iai/iai_maps | ||
version: master |
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
27 changes: 27 additions & 0 deletions
27
jsk_pr2_robot/jsk_pr2_startup/sample/pr2_gazebo_iai_kitchen.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<launch> | ||
<arg name="INITIAL_POSE_X" default="0.0" /> | ||
<arg name="INITIAL_POSE_Y" default="0.0" /> | ||
<arg name="INITIAL_POSE_YAW" default="0.0" /> | ||
<include file="$(find jsk_pr2_startup)/pr2_gazebo.launch"> | ||
<arg name="launch_map" value="false" /> | ||
<arg name="INITIAL_POSE_X" value="$(arg INITIAL_POSE_X)" /> | ||
<arg name="INITIAL_POSE_Y" value="$(arg INITIAL_POSE_Y)" /> | ||
<arg name="INITIAL_POSE_YAW" value="$(arg INITIAL_POSE_YAW)" /> | ||
</include> | ||
|
||
<node name="initial_pose_publisher" output="screen" | ||
pkg="jsk_robot_startup" type="initialpose_publisher.l"> | ||
<rosparam subst_value="true"> | ||
initial_pose_frame: /eng2/7f/73B2 | ||
initial_pose_x: $(arg INITIAL_POSE_X) | ||
initial_pose_y: $(arg INITIAL_POSE_Y) | ||
initial_pose_yaw: $(arg INITIAL_POSE_YAW) | ||
</rosparam> | ||
</node> | ||
|
||
<!-- Spawn iai kitchen --> | ||
<include file="$(find iai_kitchen)/launch/gazebo_spawn_kitchen.launch"/> | ||
|
||
<!-- launch iai map --> | ||
<include file="$(find iai_maps)/launch/iai_maps.launch" /> | ||
</launch> |