Show EOL distros:
Package Summary
Documented
Script to delay the launch of a roslaunch file
- Maintainer status: maintained
- Maintainer: Masaru Morita <p595201m AT mail.kyutech DOT jp>, Doi Yusuke <o111027y AT mail.kyutech DOT jp>
- Author: Masaru Morita <p595201m AT mail.kyutech DOT jp>
- License: BSD
- Source: git https://github.com/MoriKen254/timed_roslaunch.git (branch: indigo-devel)
Package Summary
Released
Documented
Script to delay the launch of a roslaunch file
- Maintainer status: maintained
- Maintainer: Masaru Morita <p595201m AT mail.kyutech DOT jp>, Doi Yusuke <o111027y AT mail.kyutech DOT jp>
- Author: Masaru Morita <p595201m AT mail.kyutech DOT jp>
- License: BSD
- Source: git https://github.com/MoriKen254/timed_roslaunch.git (branch: kinetic-devel)
Package Summary
Released
Documented
Script to delay the launch of a roslaunch file
- Maintainer status: maintained
- Maintainer: Masaru Morita <p595201m AT mail.kyutech DOT jp>, Doi Yusuke <o111027y AT mail.kyutech DOT jp>
- Author: Masaru Morita <p595201m AT mail.kyutech DOT jp>
- License: BSD
- Source: git https://github.com/MoriKen254/timed_roslaunch.git (branch: melodic-devel)
Package Summary
Released
Documented
Script to delay the launch of a roslaunch file
- Maintainer status: maintained
- Maintainer: Daisuke Sato <tiryoh AT gmail DOT com>
- Author: Masaru Morita <p595201m AT mail.kyutech DOT jp>, Doi Yusuke <o111027y AT mail.kyutech DOT jp>
- License: BSD
- Source: git https://github.com/Tiryoh/timed_roslaunch.git (branch: noetic-devel)
Contents
About
This script can delay the launch of a roslaunch file.
Installation
apt
To install the timed_roslaunch package via apt, type the command as follows.
1 sudo apt install ros-${ROS_DISTRO}-timed-roslaunch
source
To install the timed_roslaunch package, you can install from source with the following commands:
1 cd /(your catkin workspace)/src
2 git clone https://github.com/MoriKen254/timed_roslaunch.git
3 cd ..
4 catkin_make
Usage
This script can delay the launch of a roslaunch file. Make sure that the file is executable (chmod +x timed_roslaunch.sh)
Run it from command line
1 rosrun timed_roslaunch timed_roslaunch.sh [number of seconds to delay] [rospkg] [roslaunch file] [arguments (optional)]
Or
1 roslaunch timed_roslaunch timed_roslaunch.launch time:=[number of second to delay] pkg:=[rospkg] file:=[roslaunch file] value:=[arguments (optional)]
Example:
1 rosrun timed_roslaunch timed_roslaunch.sh 2 turtlebot_navigation amcl_demo.launch initial_pose_x:=17.0 initial_pose_y:=17.0"
$
Run it from another roslaunch file
1 <launch>
2 <include file="$(find timed_roslaunch)/launch/timed_roslaunch.launch">
3 <arg name="time" value="2" />
4 <arg name="pkg" value="turtlebot_navigation" />
5 <arg name="file" value="amcl_demo.launch" />
6 <arg name="value" value="initial_pose_x:=17.0 initial_pose_y:=17.0" />
7 <arg name="node_name" value="timed_roslaunch" /> <!-- This is optional argument -->
8 </include>
9 </launch>
Or