default_warehouse_db.launch 680 B

123456789101112131415
  1. <launch>
  2. <arg name="reset" default="false"/>
  3. <!-- If not specified, we'll use a default database location -->
  4. <arg name="moveit_warehouse_database_path" default="$(find robot_config)/default_warehouse_mongo_db" />
  5. <!-- Launch the warehouse with the configured database location -->
  6. <include file="$(dirname)/warehouse.launch">
  7. <arg name="moveit_warehouse_database_path" value="$(arg moveit_warehouse_database_path)" />
  8. </include>
  9. <!-- If we want to reset the database, run this node -->
  10. <node if="$(arg reset)" name="$(anon moveit_default_db_reset)" type="moveit_init_demo_warehouse" pkg="moveit_ros_warehouse" respawn="false" output="screen" />
  11. </launch>