Skip to Content
ROS Programming: Building Powerful Robots
book

ROS Programming: Building Powerful Robots

by Anil Mahtani, Luis Sanchez, Enrique Fernandez, Aaron Martinez, Lentin Joseph
March 2018
Intermediate to advanced content levelIntermediate to advanced
1396 pages
42h 14m
English
Packt Publishing
Content preview from ROS Programming: Building Powerful Robots

Loading the map using map_server

When you want to use the map built with your robot, it is necessary to load it with the map_server package. The following command will load the map:

    $ rosrun map_server map_server map.yaml
  

But to make it easy, create another .launch file in chapter5_tutorials/launch with the name gazebo_map_robot.launch, and put in the following code:

<?xml version="1.0"?> 
<launch> 
  <param name="/use_sim_time" value="true" /> 
  <!-- start up wg world --> 
  <include file="$(find    gazebo_ros)/launch/willowgarage_world.launch"/> 
  <arg name="model" /> 
  <param name="robot_description" command="$(find xacro)/xacro.py    $(arg model)" />  <node name="joint_state_publisher" pkg="joint_state_publisher"  type="joint_state_publisher" ></node> ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Programming Robots with ROS

Programming Robots with ROS

Morgan Quigley, Brian Gerkey, William D. Smart
Machine Learning Design Patterns

Machine Learning Design Patterns

Valliappa Lakshmanan, Sara Robinson, Michael Munn

Publisher Resources

ISBN: 9781788627436Supplemental Content