ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

You can launch them in different namespaces. this will make it like name_space/topic. Following is a small example.

<launch>
  <group ns="jackal1">
    <node name="velocity_controller" pkg="my_package type="my_node"/>
  </group>
  <group ns="jackal2">
    <node name="velocity_controller" pkg="my_package" type="my_node"/>
  </group>
</launch>

Just bundle your nodes together in namespaces. Or you can use include tag to include launch files within it. Hope this answers your question.