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

Revision history [back]

AFAIK, there is none. You would need to write this planner yourself. As this planner, however, will need to run once providing paths for all robots at the same time, this will probably need to be some kind of multi-master system. move_base is intended for single robots. So I'd follow those steps:

  1. setup multi robot system
  2. write standalone global planner providing the paths for all robots
  3. write global planner plugin for move_base that takes as input directly the plan for this specific robot from the above global planner. You can use whatever mechanism you want, Topic, Service, Action, ...