Advertisement
shankerkeshavdas

ROS-Answers/Navigation/NavLaunch2

Feb 6th, 2012
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. <launch>
  2. <!-- This file launches the navigation stack for the Pioneer Robot. -->
  3. <include file="$(find amcl)/examples/amcl_diff.launch" />
  4.  
  5. <node pkg="move_base" type="move_base" respawn="false" name="move_base" output="screen" launch-prefix="gdb -ex run --args">
  6. <param name="footprint_padding" value="0.01" />
  7. <param name="controller_frequency" value="10.0" />
  8. <param name="controller_patience" value="5.0" />
  9. <param name="oscillation_timeout" value="8.0" />
  10. <param name="oscillation_distance" value="0.5" />
  11. <param name="recovery_behavior_enabled" value="true" type="bool" />
  12. <param name="clearing_rotation_allowed" value="true" type="bool" />
  13. <param name="shutdown_costmaps" value="false" type="bool" />
  14. <rosparam file="$(find tarot_robotcontrol)/launch/nav_params/costmap_common_params_revy1.yaml" command="load" ns="global_costmap" />
  15. <rosparam file="$(find tarot_robotcontrol)/launch/nav_params/costmap_common_params_revy1.yaml" command="load" ns="local_costmap" />
  16. <rosparam file="$(find tarot_robotcontrol)/launch/nav_params/local_costmap_params_revy1_staticmap.yaml" command="load" />
  17. <rosparam file="$(find tarot_robotcontrol)/launch/nav_params/global_costmap_params_revy1_staticmap.yaml" command="load" />
  18. <rosparam file="$(find tarot_robotcontrol)/launch/nav_params/base_local_planner_params_revy1.yaml" command="load" />
  19. </node>
  20. </launch>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement