No version for distro humble showing melodic. Known supported distros are highlighted in the buttons above.
Package symbol

launchfile_switcher package from launchfile_switcher repo

launchfile_switcher

ROS Distro
melodic

Package Summary

Tags No category tags.
Version 0.1.0
License MIT
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/rb-sapiens/launchfile_switcher.git
VCS Type git
VCS Version melodic-devel
Last Updated 2021-05-10
Dev Status MAINTAINED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

The launchfile_switcher package

Additional Links

No additional links.

Maintainers

  • Shun Nagao

Authors

No additional authors.

launchfile_switcher

ROS package for management launch files. This package provides features that easily switch launch files.

Building

Build as standard catkin packages. There are no special dependencies needed.

ROS API

launchfile_switcher

Subscribed Topics

  • /mode (std_msgs/String)
    This topic indicates the next mode name. Modes can be defined in a yaml file (an example is below).

config file example

  • mode_list.yaml
mode_list:
    normal:
        launch:
            - pkg: your_robot_package
              file: /launch/your_robot_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: is_device
                  value: false
            - pkg: your_navigation_package
              file: /launch/your_navigation_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: explore
                  value: false
        keeping_node_patterns:
            - \/?explore.*
    make_map:
        launch:
            - pkg: your_robot_package
              file: /launch/your_robot_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: is_device
                  value: false
            - pkg: your_navigation_package
              file: /launch/your_navigation_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: explore
                  value: true

The example yaml config file above has two modes which equal to:

normal

  <include file="$(find your_robot_package)/launch/your_robot_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="is_device" value="false"/>
  </include>
  <include file="$(find your_navigation_package)/launch/your_navigation_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="explore" value="false"/>
  </include>

make_map

  <include file="$(find your_robot_package)/launch/your_robot_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="is_device" value="false"/>
  </include>
  <include file="$(find your_navigation_package)/launch/your_navigation_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="explore" value="true"/>
  </include>

launch

An array of launchfiles to launch. It consists of pkg, file, args.

  • pkg: The package name that contains the file to start
  • file: Relative path of the launch file to start
  • args: Arrays of arguments of the launch file to start

keeping_node_patterns

An array of node name regular expressions to keep when switching launchfiles.

Default keeping node patterns
  • \/?rosout
  • \/?rviz.*
  • \/?robomaker\/srv
  • \/?gazebo

Switch launch files

You can switch launchfile sending mode name topic.

```

File truncated at 100 lines see the full file

CHANGELOG

Changelog for package launchfile_switcher

0.1.0 (2021-03-21)

  • Initial commit
  • Added keeping_node_patterns
  • Contributors: Shun Nagao

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged launchfile_switcher at Robotics Stack Exchange

No version for distro jazzy showing melodic. Known supported distros are highlighted in the buttons above.
Package symbol

launchfile_switcher package from launchfile_switcher repo

launchfile_switcher

ROS Distro
melodic

Package Summary

Tags No category tags.
Version 0.1.0
License MIT
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/rb-sapiens/launchfile_switcher.git
VCS Type git
VCS Version melodic-devel
Last Updated 2021-05-10
Dev Status MAINTAINED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

The launchfile_switcher package

Additional Links

No additional links.

Maintainers

  • Shun Nagao

Authors

No additional authors.

launchfile_switcher

ROS package for management launch files. This package provides features that easily switch launch files.

Building

Build as standard catkin packages. There are no special dependencies needed.

ROS API

launchfile_switcher

Subscribed Topics

  • /mode (std_msgs/String)
    This topic indicates the next mode name. Modes can be defined in a yaml file (an example is below).

config file example

  • mode_list.yaml
mode_list:
    normal:
        launch:
            - pkg: your_robot_package
              file: /launch/your_robot_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: is_device
                  value: false
            - pkg: your_navigation_package
              file: /launch/your_navigation_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: explore
                  value: false
        keeping_node_patterns:
            - \/?explore.*
    make_map:
        launch:
            - pkg: your_robot_package
              file: /launch/your_robot_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: is_device
                  value: false
            - pkg: your_navigation_package
              file: /launch/your_navigation_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: explore
                  value: true

The example yaml config file above has two modes which equal to:

normal

  <include file="$(find your_robot_package)/launch/your_robot_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="is_device" value="false"/>
  </include>
  <include file="$(find your_navigation_package)/launch/your_navigation_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="explore" value="false"/>
  </include>

make_map

  <include file="$(find your_robot_package)/launch/your_robot_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="is_device" value="false"/>
  </include>
  <include file="$(find your_navigation_package)/launch/your_navigation_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="explore" value="true"/>
  </include>

launch

An array of launchfiles to launch. It consists of pkg, file, args.

  • pkg: The package name that contains the file to start
  • file: Relative path of the launch file to start
  • args: Arrays of arguments of the launch file to start

keeping_node_patterns

An array of node name regular expressions to keep when switching launchfiles.

Default keeping node patterns
  • \/?rosout
  • \/?rviz.*
  • \/?robomaker\/srv
  • \/?gazebo

Switch launch files

You can switch launchfile sending mode name topic.

```

File truncated at 100 lines see the full file

CHANGELOG

Changelog for package launchfile_switcher

0.1.0 (2021-03-21)

  • Initial commit
  • Added keeping_node_patterns
  • Contributors: Shun Nagao

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged launchfile_switcher at Robotics Stack Exchange

No version for distro kilted showing melodic. Known supported distros are highlighted in the buttons above.
Package symbol

launchfile_switcher package from launchfile_switcher repo

launchfile_switcher

ROS Distro
melodic

Package Summary

Tags No category tags.
Version 0.1.0
License MIT
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/rb-sapiens/launchfile_switcher.git
VCS Type git
VCS Version melodic-devel
Last Updated 2021-05-10
Dev Status MAINTAINED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

The launchfile_switcher package

Additional Links

No additional links.

Maintainers

  • Shun Nagao

Authors

No additional authors.

launchfile_switcher

ROS package for management launch files. This package provides features that easily switch launch files.

Building

Build as standard catkin packages. There are no special dependencies needed.

ROS API

launchfile_switcher

Subscribed Topics

  • /mode (std_msgs/String)
    This topic indicates the next mode name. Modes can be defined in a yaml file (an example is below).

config file example

  • mode_list.yaml
mode_list:
    normal:
        launch:
            - pkg: your_robot_package
              file: /launch/your_robot_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: is_device
                  value: false
            - pkg: your_navigation_package
              file: /launch/your_navigation_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: explore
                  value: false
        keeping_node_patterns:
            - \/?explore.*
    make_map:
        launch:
            - pkg: your_robot_package
              file: /launch/your_robot_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: is_device
                  value: false
            - pkg: your_navigation_package
              file: /launch/your_navigation_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: explore
                  value: true

The example yaml config file above has two modes which equal to:

normal

  <include file="$(find your_robot_package)/launch/your_robot_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="is_device" value="false"/>
  </include>
  <include file="$(find your_navigation_package)/launch/your_navigation_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="explore" value="false"/>
  </include>

make_map

  <include file="$(find your_robot_package)/launch/your_robot_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="is_device" value="false"/>
  </include>
  <include file="$(find your_navigation_package)/launch/your_navigation_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="explore" value="true"/>
  </include>

launch

An array of launchfiles to launch. It consists of pkg, file, args.

  • pkg: The package name that contains the file to start
  • file: Relative path of the launch file to start
  • args: Arrays of arguments of the launch file to start

keeping_node_patterns

An array of node name regular expressions to keep when switching launchfiles.

Default keeping node patterns
  • \/?rosout
  • \/?rviz.*
  • \/?robomaker\/srv
  • \/?gazebo

Switch launch files

You can switch launchfile sending mode name topic.

```

File truncated at 100 lines see the full file

CHANGELOG

Changelog for package launchfile_switcher

0.1.0 (2021-03-21)

  • Initial commit
  • Added keeping_node_patterns
  • Contributors: Shun Nagao

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged launchfile_switcher at Robotics Stack Exchange

No version for distro rolling showing melodic. Known supported distros are highlighted in the buttons above.
Package symbol

launchfile_switcher package from launchfile_switcher repo

launchfile_switcher

ROS Distro
melodic

Package Summary

Tags No category tags.
Version 0.1.0
License MIT
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/rb-sapiens/launchfile_switcher.git
VCS Type git
VCS Version melodic-devel
Last Updated 2021-05-10
Dev Status MAINTAINED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

The launchfile_switcher package

Additional Links

No additional links.

Maintainers

  • Shun Nagao

Authors

No additional authors.

launchfile_switcher

ROS package for management launch files. This package provides features that easily switch launch files.

Building

Build as standard catkin packages. There are no special dependencies needed.

ROS API

launchfile_switcher

Subscribed Topics

  • /mode (std_msgs/String)
    This topic indicates the next mode name. Modes can be defined in a yaml file (an example is below).

config file example

  • mode_list.yaml
mode_list:
    normal:
        launch:
            - pkg: your_robot_package
              file: /launch/your_robot_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: is_device
                  value: false
            - pkg: your_navigation_package
              file: /launch/your_navigation_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: explore
                  value: false
        keeping_node_patterns:
            - \/?explore.*
    make_map:
        launch:
            - pkg: your_robot_package
              file: /launch/your_robot_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: is_device
                  value: false
            - pkg: your_navigation_package
              file: /launch/your_navigation_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: explore
                  value: true

The example yaml config file above has two modes which equal to:

normal

  <include file="$(find your_robot_package)/launch/your_robot_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="is_device" value="false"/>
  </include>
  <include file="$(find your_navigation_package)/launch/your_navigation_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="explore" value="false"/>
  </include>

make_map

  <include file="$(find your_robot_package)/launch/your_robot_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="is_device" value="false"/>
  </include>
  <include file="$(find your_navigation_package)/launch/your_navigation_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="explore" value="true"/>
  </include>

launch

An array of launchfiles to launch. It consists of pkg, file, args.

  • pkg: The package name that contains the file to start
  • file: Relative path of the launch file to start
  • args: Arrays of arguments of the launch file to start

keeping_node_patterns

An array of node name regular expressions to keep when switching launchfiles.

Default keeping node patterns
  • \/?rosout
  • \/?rviz.*
  • \/?robomaker\/srv
  • \/?gazebo

Switch launch files

You can switch launchfile sending mode name topic.

```

File truncated at 100 lines see the full file

CHANGELOG

Changelog for package launchfile_switcher

0.1.0 (2021-03-21)

  • Initial commit
  • Added keeping_node_patterns
  • Contributors: Shun Nagao

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged launchfile_switcher at Robotics Stack Exchange

No version for distro ardent showing melodic. Known supported distros are highlighted in the buttons above.
Package symbol

launchfile_switcher package from launchfile_switcher repo

launchfile_switcher

ROS Distro
melodic

Package Summary

Tags No category tags.
Version 0.1.0
License MIT
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/rb-sapiens/launchfile_switcher.git
VCS Type git
VCS Version melodic-devel
Last Updated 2021-05-10
Dev Status MAINTAINED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

The launchfile_switcher package

Additional Links

No additional links.

Maintainers

  • Shun Nagao

Authors

No additional authors.

launchfile_switcher

ROS package for management launch files. This package provides features that easily switch launch files.

Building

Build as standard catkin packages. There are no special dependencies needed.

ROS API

launchfile_switcher

Subscribed Topics

  • /mode (std_msgs/String)
    This topic indicates the next mode name. Modes can be defined in a yaml file (an example is below).

config file example

  • mode_list.yaml
mode_list:
    normal:
        launch:
            - pkg: your_robot_package
              file: /launch/your_robot_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: is_device
                  value: false
            - pkg: your_navigation_package
              file: /launch/your_navigation_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: explore
                  value: false
        keeping_node_patterns:
            - \/?explore.*
    make_map:
        launch:
            - pkg: your_robot_package
              file: /launch/your_robot_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: is_device
                  value: false
            - pkg: your_navigation_package
              file: /launch/your_navigation_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: explore
                  value: true

The example yaml config file above has two modes which equal to:

normal

  <include file="$(find your_robot_package)/launch/your_robot_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="is_device" value="false"/>
  </include>
  <include file="$(find your_navigation_package)/launch/your_navigation_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="explore" value="false"/>
  </include>

make_map

  <include file="$(find your_robot_package)/launch/your_robot_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="is_device" value="false"/>
  </include>
  <include file="$(find your_navigation_package)/launch/your_navigation_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="explore" value="true"/>
  </include>

launch

An array of launchfiles to launch. It consists of pkg, file, args.

  • pkg: The package name that contains the file to start
  • file: Relative path of the launch file to start
  • args: Arrays of arguments of the launch file to start

keeping_node_patterns

An array of node name regular expressions to keep when switching launchfiles.

Default keeping node patterns
  • \/?rosout
  • \/?rviz.*
  • \/?robomaker\/srv
  • \/?gazebo

Switch launch files

You can switch launchfile sending mode name topic.

```

File truncated at 100 lines see the full file

CHANGELOG

Changelog for package launchfile_switcher

0.1.0 (2021-03-21)

  • Initial commit
  • Added keeping_node_patterns
  • Contributors: Shun Nagao

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged launchfile_switcher at Robotics Stack Exchange

No version for distro bouncy showing melodic. Known supported distros are highlighted in the buttons above.
Package symbol

launchfile_switcher package from launchfile_switcher repo

launchfile_switcher

ROS Distro
melodic

Package Summary

Tags No category tags.
Version 0.1.0
License MIT
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/rb-sapiens/launchfile_switcher.git
VCS Type git
VCS Version melodic-devel
Last Updated 2021-05-10
Dev Status MAINTAINED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

The launchfile_switcher package

Additional Links

No additional links.

Maintainers

  • Shun Nagao

Authors

No additional authors.

launchfile_switcher

ROS package for management launch files. This package provides features that easily switch launch files.

Building

Build as standard catkin packages. There are no special dependencies needed.

ROS API

launchfile_switcher

Subscribed Topics

  • /mode (std_msgs/String)
    This topic indicates the next mode name. Modes can be defined in a yaml file (an example is below).

config file example

  • mode_list.yaml
mode_list:
    normal:
        launch:
            - pkg: your_robot_package
              file: /launch/your_robot_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: is_device
                  value: false
            - pkg: your_navigation_package
              file: /launch/your_navigation_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: explore
                  value: false
        keeping_node_patterns:
            - \/?explore.*
    make_map:
        launch:
            - pkg: your_robot_package
              file: /launch/your_robot_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: is_device
                  value: false
            - pkg: your_navigation_package
              file: /launch/your_navigation_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: explore
                  value: true

The example yaml config file above has two modes which equal to:

normal

  <include file="$(find your_robot_package)/launch/your_robot_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="is_device" value="false"/>
  </include>
  <include file="$(find your_navigation_package)/launch/your_navigation_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="explore" value="false"/>
  </include>

make_map

  <include file="$(find your_robot_package)/launch/your_robot_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="is_device" value="false"/>
  </include>
  <include file="$(find your_navigation_package)/launch/your_navigation_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="explore" value="true"/>
  </include>

launch

An array of launchfiles to launch. It consists of pkg, file, args.

  • pkg: The package name that contains the file to start
  • file: Relative path of the launch file to start
  • args: Arrays of arguments of the launch file to start

keeping_node_patterns

An array of node name regular expressions to keep when switching launchfiles.

Default keeping node patterns
  • \/?rosout
  • \/?rviz.*
  • \/?robomaker\/srv
  • \/?gazebo

Switch launch files

You can switch launchfile sending mode name topic.

```

File truncated at 100 lines see the full file

CHANGELOG

Changelog for package launchfile_switcher

0.1.0 (2021-03-21)

  • Initial commit
  • Added keeping_node_patterns
  • Contributors: Shun Nagao

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged launchfile_switcher at Robotics Stack Exchange

No version for distro crystal showing melodic. Known supported distros are highlighted in the buttons above.
Package symbol

launchfile_switcher package from launchfile_switcher repo

launchfile_switcher

ROS Distro
melodic

Package Summary

Tags No category tags.
Version 0.1.0
License MIT
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/rb-sapiens/launchfile_switcher.git
VCS Type git
VCS Version melodic-devel
Last Updated 2021-05-10
Dev Status MAINTAINED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

The launchfile_switcher package

Additional Links

No additional links.

Maintainers

  • Shun Nagao

Authors

No additional authors.

launchfile_switcher

ROS package for management launch files. This package provides features that easily switch launch files.

Building

Build as standard catkin packages. There are no special dependencies needed.

ROS API

launchfile_switcher

Subscribed Topics

  • /mode (std_msgs/String)
    This topic indicates the next mode name. Modes can be defined in a yaml file (an example is below).

config file example

  • mode_list.yaml
mode_list:
    normal:
        launch:
            - pkg: your_robot_package
              file: /launch/your_robot_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: is_device
                  value: false
            - pkg: your_navigation_package
              file: /launch/your_navigation_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: explore
                  value: false
        keeping_node_patterns:
            - \/?explore.*
    make_map:
        launch:
            - pkg: your_robot_package
              file: /launch/your_robot_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: is_device
                  value: false
            - pkg: your_navigation_package
              file: /launch/your_navigation_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: explore
                  value: true

The example yaml config file above has two modes which equal to:

normal

  <include file="$(find your_robot_package)/launch/your_robot_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="is_device" value="false"/>
  </include>
  <include file="$(find your_navigation_package)/launch/your_navigation_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="explore" value="false"/>
  </include>

make_map

  <include file="$(find your_robot_package)/launch/your_robot_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="is_device" value="false"/>
  </include>
  <include file="$(find your_navigation_package)/launch/your_navigation_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="explore" value="true"/>
  </include>

launch

An array of launchfiles to launch. It consists of pkg, file, args.

  • pkg: The package name that contains the file to start
  • file: Relative path of the launch file to start
  • args: Arrays of arguments of the launch file to start

keeping_node_patterns

An array of node name regular expressions to keep when switching launchfiles.

Default keeping node patterns
  • \/?rosout
  • \/?rviz.*
  • \/?robomaker\/srv
  • \/?gazebo

Switch launch files

You can switch launchfile sending mode name topic.

```

File truncated at 100 lines see the full file

CHANGELOG

Changelog for package launchfile_switcher

0.1.0 (2021-03-21)

  • Initial commit
  • Added keeping_node_patterns
  • Contributors: Shun Nagao

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged launchfile_switcher at Robotics Stack Exchange

No version for distro eloquent showing melodic. Known supported distros are highlighted in the buttons above.
Package symbol

launchfile_switcher package from launchfile_switcher repo

launchfile_switcher

ROS Distro
melodic

Package Summary

Tags No category tags.
Version 0.1.0
License MIT
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/rb-sapiens/launchfile_switcher.git
VCS Type git
VCS Version melodic-devel
Last Updated 2021-05-10
Dev Status MAINTAINED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

The launchfile_switcher package

Additional Links

No additional links.

Maintainers

  • Shun Nagao

Authors

No additional authors.

launchfile_switcher

ROS package for management launch files. This package provides features that easily switch launch files.

Building

Build as standard catkin packages. There are no special dependencies needed.

ROS API

launchfile_switcher

Subscribed Topics

  • /mode (std_msgs/String)
    This topic indicates the next mode name. Modes can be defined in a yaml file (an example is below).

config file example

  • mode_list.yaml
mode_list:
    normal:
        launch:
            - pkg: your_robot_package
              file: /launch/your_robot_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: is_device
                  value: false
            - pkg: your_navigation_package
              file: /launch/your_navigation_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: explore
                  value: false
        keeping_node_patterns:
            - \/?explore.*
    make_map:
        launch:
            - pkg: your_robot_package
              file: /launch/your_robot_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: is_device
                  value: false
            - pkg: your_navigation_package
              file: /launch/your_navigation_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: explore
                  value: true

The example yaml config file above has two modes which equal to:

normal

  <include file="$(find your_robot_package)/launch/your_robot_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="is_device" value="false"/>
  </include>
  <include file="$(find your_navigation_package)/launch/your_navigation_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="explore" value="false"/>
  </include>

make_map

  <include file="$(find your_robot_package)/launch/your_robot_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="is_device" value="false"/>
  </include>
  <include file="$(find your_navigation_package)/launch/your_navigation_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="explore" value="true"/>
  </include>

launch

An array of launchfiles to launch. It consists of pkg, file, args.

  • pkg: The package name that contains the file to start
  • file: Relative path of the launch file to start
  • args: Arrays of arguments of the launch file to start

keeping_node_patterns

An array of node name regular expressions to keep when switching launchfiles.

Default keeping node patterns
  • \/?rosout
  • \/?rviz.*
  • \/?robomaker\/srv
  • \/?gazebo

Switch launch files

You can switch launchfile sending mode name topic.

```

File truncated at 100 lines see the full file

CHANGELOG

Changelog for package launchfile_switcher

0.1.0 (2021-03-21)

  • Initial commit
  • Added keeping_node_patterns
  • Contributors: Shun Nagao

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged launchfile_switcher at Robotics Stack Exchange

No version for distro dashing showing melodic. Known supported distros are highlighted in the buttons above.
Package symbol

launchfile_switcher package from launchfile_switcher repo

launchfile_switcher

ROS Distro
melodic

Package Summary

Tags No category tags.
Version 0.1.0
License MIT
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/rb-sapiens/launchfile_switcher.git
VCS Type git
VCS Version melodic-devel
Last Updated 2021-05-10
Dev Status MAINTAINED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

The launchfile_switcher package

Additional Links

No additional links.

Maintainers

  • Shun Nagao

Authors

No additional authors.

launchfile_switcher

ROS package for management launch files. This package provides features that easily switch launch files.

Building

Build as standard catkin packages. There are no special dependencies needed.

ROS API

launchfile_switcher

Subscribed Topics

  • /mode (std_msgs/String)
    This topic indicates the next mode name. Modes can be defined in a yaml file (an example is below).

config file example

  • mode_list.yaml
mode_list:
    normal:
        launch:
            - pkg: your_robot_package
              file: /launch/your_robot_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: is_device
                  value: false
            - pkg: your_navigation_package
              file: /launch/your_navigation_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: explore
                  value: false
        keeping_node_patterns:
            - \/?explore.*
    make_map:
        launch:
            - pkg: your_robot_package
              file: /launch/your_robot_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: is_device
                  value: false
            - pkg: your_navigation_package
              file: /launch/your_navigation_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: explore
                  value: true

The example yaml config file above has two modes which equal to:

normal

  <include file="$(find your_robot_package)/launch/your_robot_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="is_device" value="false"/>
  </include>
  <include file="$(find your_navigation_package)/launch/your_navigation_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="explore" value="false"/>
  </include>

make_map

  <include file="$(find your_robot_package)/launch/your_robot_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="is_device" value="false"/>
  </include>
  <include file="$(find your_navigation_package)/launch/your_navigation_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="explore" value="true"/>
  </include>

launch

An array of launchfiles to launch. It consists of pkg, file, args.

  • pkg: The package name that contains the file to start
  • file: Relative path of the launch file to start
  • args: Arrays of arguments of the launch file to start

keeping_node_patterns

An array of node name regular expressions to keep when switching launchfiles.

Default keeping node patterns
  • \/?rosout
  • \/?rviz.*
  • \/?robomaker\/srv
  • \/?gazebo

Switch launch files

You can switch launchfile sending mode name topic.

```

File truncated at 100 lines see the full file

CHANGELOG

Changelog for package launchfile_switcher

0.1.0 (2021-03-21)

  • Initial commit
  • Added keeping_node_patterns
  • Contributors: Shun Nagao

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged launchfile_switcher at Robotics Stack Exchange

No version for distro galactic showing melodic. Known supported distros are highlighted in the buttons above.
Package symbol

launchfile_switcher package from launchfile_switcher repo

launchfile_switcher

ROS Distro
melodic

Package Summary

Tags No category tags.
Version 0.1.0
License MIT
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/rb-sapiens/launchfile_switcher.git
VCS Type git
VCS Version melodic-devel
Last Updated 2021-05-10
Dev Status MAINTAINED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

The launchfile_switcher package

Additional Links

No additional links.

Maintainers

  • Shun Nagao

Authors

No additional authors.

launchfile_switcher

ROS package for management launch files. This package provides features that easily switch launch files.

Building

Build as standard catkin packages. There are no special dependencies needed.

ROS API

launchfile_switcher

Subscribed Topics

  • /mode (std_msgs/String)
    This topic indicates the next mode name. Modes can be defined in a yaml file (an example is below).

config file example

  • mode_list.yaml
mode_list:
    normal:
        launch:
            - pkg: your_robot_package
              file: /launch/your_robot_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: is_device
                  value: false
            - pkg: your_navigation_package
              file: /launch/your_navigation_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: explore
                  value: false
        keeping_node_patterns:
            - \/?explore.*
    make_map:
        launch:
            - pkg: your_robot_package
              file: /launch/your_robot_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: is_device
                  value: false
            - pkg: your_navigation_package
              file: /launch/your_navigation_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: explore
                  value: true

The example yaml config file above has two modes which equal to:

normal

  <include file="$(find your_robot_package)/launch/your_robot_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="is_device" value="false"/>
  </include>
  <include file="$(find your_navigation_package)/launch/your_navigation_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="explore" value="false"/>
  </include>

make_map

  <include file="$(find your_robot_package)/launch/your_robot_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="is_device" value="false"/>
  </include>
  <include file="$(find your_navigation_package)/launch/your_navigation_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="explore" value="true"/>
  </include>

launch

An array of launchfiles to launch. It consists of pkg, file, args.

  • pkg: The package name that contains the file to start
  • file: Relative path of the launch file to start
  • args: Arrays of arguments of the launch file to start

keeping_node_patterns

An array of node name regular expressions to keep when switching launchfiles.

Default keeping node patterns
  • \/?rosout
  • \/?rviz.*
  • \/?robomaker\/srv
  • \/?gazebo

Switch launch files

You can switch launchfile sending mode name topic.

```

File truncated at 100 lines see the full file

CHANGELOG

Changelog for package launchfile_switcher

0.1.0 (2021-03-21)

  • Initial commit
  • Added keeping_node_patterns
  • Contributors: Shun Nagao

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged launchfile_switcher at Robotics Stack Exchange

No version for distro foxy showing melodic. Known supported distros are highlighted in the buttons above.
Package symbol

launchfile_switcher package from launchfile_switcher repo

launchfile_switcher

ROS Distro
melodic

Package Summary

Tags No category tags.
Version 0.1.0
License MIT
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/rb-sapiens/launchfile_switcher.git
VCS Type git
VCS Version melodic-devel
Last Updated 2021-05-10
Dev Status MAINTAINED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

The launchfile_switcher package

Additional Links

No additional links.

Maintainers

  • Shun Nagao

Authors

No additional authors.

launchfile_switcher

ROS package for management launch files. This package provides features that easily switch launch files.

Building

Build as standard catkin packages. There are no special dependencies needed.

ROS API

launchfile_switcher

Subscribed Topics

  • /mode (std_msgs/String)
    This topic indicates the next mode name. Modes can be defined in a yaml file (an example is below).

config file example

  • mode_list.yaml
mode_list:
    normal:
        launch:
            - pkg: your_robot_package
              file: /launch/your_robot_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: is_device
                  value: false
            - pkg: your_navigation_package
              file: /launch/your_navigation_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: explore
                  value: false
        keeping_node_patterns:
            - \/?explore.*
    make_map:
        launch:
            - pkg: your_robot_package
              file: /launch/your_robot_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: is_device
                  value: false
            - pkg: your_navigation_package
              file: /launch/your_navigation_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: explore
                  value: true

The example yaml config file above has two modes which equal to:

normal

  <include file="$(find your_robot_package)/launch/your_robot_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="is_device" value="false"/>
  </include>
  <include file="$(find your_navigation_package)/launch/your_navigation_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="explore" value="false"/>
  </include>

make_map

  <include file="$(find your_robot_package)/launch/your_robot_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="is_device" value="false"/>
  </include>
  <include file="$(find your_navigation_package)/launch/your_navigation_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="explore" value="true"/>
  </include>

launch

An array of launchfiles to launch. It consists of pkg, file, args.

  • pkg: The package name that contains the file to start
  • file: Relative path of the launch file to start
  • args: Arrays of arguments of the launch file to start

keeping_node_patterns

An array of node name regular expressions to keep when switching launchfiles.

Default keeping node patterns
  • \/?rosout
  • \/?rviz.*
  • \/?robomaker\/srv
  • \/?gazebo

Switch launch files

You can switch launchfile sending mode name topic.

```

File truncated at 100 lines see the full file

CHANGELOG

Changelog for package launchfile_switcher

0.1.0 (2021-03-21)

  • Initial commit
  • Added keeping_node_patterns
  • Contributors: Shun Nagao

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged launchfile_switcher at Robotics Stack Exchange

No version for distro iron showing melodic. Known supported distros are highlighted in the buttons above.
Package symbol

launchfile_switcher package from launchfile_switcher repo

launchfile_switcher

ROS Distro
melodic

Package Summary

Tags No category tags.
Version 0.1.0
License MIT
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/rb-sapiens/launchfile_switcher.git
VCS Type git
VCS Version melodic-devel
Last Updated 2021-05-10
Dev Status MAINTAINED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

The launchfile_switcher package

Additional Links

No additional links.

Maintainers

  • Shun Nagao

Authors

No additional authors.

launchfile_switcher

ROS package for management launch files. This package provides features that easily switch launch files.

Building

Build as standard catkin packages. There are no special dependencies needed.

ROS API

launchfile_switcher

Subscribed Topics

  • /mode (std_msgs/String)
    This topic indicates the next mode name. Modes can be defined in a yaml file (an example is below).

config file example

  • mode_list.yaml
mode_list:
    normal:
        launch:
            - pkg: your_robot_package
              file: /launch/your_robot_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: is_device
                  value: false
            - pkg: your_navigation_package
              file: /launch/your_navigation_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: explore
                  value: false
        keeping_node_patterns:
            - \/?explore.*
    make_map:
        launch:
            - pkg: your_robot_package
              file: /launch/your_robot_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: is_device
                  value: false
            - pkg: your_navigation_package
              file: /launch/your_navigation_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: explore
                  value: true

The example yaml config file above has two modes which equal to:

normal

  <include file="$(find your_robot_package)/launch/your_robot_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="is_device" value="false"/>
  </include>
  <include file="$(find your_navigation_package)/launch/your_navigation_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="explore" value="false"/>
  </include>

make_map

  <include file="$(find your_robot_package)/launch/your_robot_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="is_device" value="false"/>
  </include>
  <include file="$(find your_navigation_package)/launch/your_navigation_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="explore" value="true"/>
  </include>

launch

An array of launchfiles to launch. It consists of pkg, file, args.

  • pkg: The package name that contains the file to start
  • file: Relative path of the launch file to start
  • args: Arrays of arguments of the launch file to start

keeping_node_patterns

An array of node name regular expressions to keep when switching launchfiles.

Default keeping node patterns
  • \/?rosout
  • \/?rviz.*
  • \/?robomaker\/srv
  • \/?gazebo

Switch launch files

You can switch launchfile sending mode name topic.

```

File truncated at 100 lines see the full file

CHANGELOG

Changelog for package launchfile_switcher

0.1.0 (2021-03-21)

  • Initial commit
  • Added keeping_node_patterns
  • Contributors: Shun Nagao

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged launchfile_switcher at Robotics Stack Exchange

No version for distro lunar showing melodic. Known supported distros are highlighted in the buttons above.
Package symbol

launchfile_switcher package from launchfile_switcher repo

launchfile_switcher

ROS Distro
melodic

Package Summary

Tags No category tags.
Version 0.1.0
License MIT
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/rb-sapiens/launchfile_switcher.git
VCS Type git
VCS Version melodic-devel
Last Updated 2021-05-10
Dev Status MAINTAINED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

The launchfile_switcher package

Additional Links

No additional links.

Maintainers

  • Shun Nagao

Authors

No additional authors.

launchfile_switcher

ROS package for management launch files. This package provides features that easily switch launch files.

Building

Build as standard catkin packages. There are no special dependencies needed.

ROS API

launchfile_switcher

Subscribed Topics

  • /mode (std_msgs/String)
    This topic indicates the next mode name. Modes can be defined in a yaml file (an example is below).

config file example

  • mode_list.yaml
mode_list:
    normal:
        launch:
            - pkg: your_robot_package
              file: /launch/your_robot_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: is_device
                  value: false
            - pkg: your_navigation_package
              file: /launch/your_navigation_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: explore
                  value: false
        keeping_node_patterns:
            - \/?explore.*
    make_map:
        launch:
            - pkg: your_robot_package
              file: /launch/your_robot_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: is_device
                  value: false
            - pkg: your_navigation_package
              file: /launch/your_navigation_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: explore
                  value: true

The example yaml config file above has two modes which equal to:

normal

  <include file="$(find your_robot_package)/launch/your_robot_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="is_device" value="false"/>
  </include>
  <include file="$(find your_navigation_package)/launch/your_navigation_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="explore" value="false"/>
  </include>

make_map

  <include file="$(find your_robot_package)/launch/your_robot_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="is_device" value="false"/>
  </include>
  <include file="$(find your_navigation_package)/launch/your_navigation_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="explore" value="true"/>
  </include>

launch

An array of launchfiles to launch. It consists of pkg, file, args.

  • pkg: The package name that contains the file to start
  • file: Relative path of the launch file to start
  • args: Arrays of arguments of the launch file to start

keeping_node_patterns

An array of node name regular expressions to keep when switching launchfiles.

Default keeping node patterns
  • \/?rosout
  • \/?rviz.*
  • \/?robomaker\/srv
  • \/?gazebo

Switch launch files

You can switch launchfile sending mode name topic.

```

File truncated at 100 lines see the full file

CHANGELOG

Changelog for package launchfile_switcher

0.1.0 (2021-03-21)

  • Initial commit
  • Added keeping_node_patterns
  • Contributors: Shun Nagao

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged launchfile_switcher at Robotics Stack Exchange

No version for distro jade showing melodic. Known supported distros are highlighted in the buttons above.
Package symbol

launchfile_switcher package from launchfile_switcher repo

launchfile_switcher

ROS Distro
melodic

Package Summary

Tags No category tags.
Version 0.1.0
License MIT
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/rb-sapiens/launchfile_switcher.git
VCS Type git
VCS Version melodic-devel
Last Updated 2021-05-10
Dev Status MAINTAINED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

The launchfile_switcher package

Additional Links

No additional links.

Maintainers

  • Shun Nagao

Authors

No additional authors.

launchfile_switcher

ROS package for management launch files. This package provides features that easily switch launch files.

Building

Build as standard catkin packages. There are no special dependencies needed.

ROS API

launchfile_switcher

Subscribed Topics

  • /mode (std_msgs/String)
    This topic indicates the next mode name. Modes can be defined in a yaml file (an example is below).

config file example

  • mode_list.yaml
mode_list:
    normal:
        launch:
            - pkg: your_robot_package
              file: /launch/your_robot_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: is_device
                  value: false
            - pkg: your_navigation_package
              file: /launch/your_navigation_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: explore
                  value: false
        keeping_node_patterns:
            - \/?explore.*
    make_map:
        launch:
            - pkg: your_robot_package
              file: /launch/your_robot_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: is_device
                  value: false
            - pkg: your_navigation_package
              file: /launch/your_navigation_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: explore
                  value: true

The example yaml config file above has two modes which equal to:

normal

  <include file="$(find your_robot_package)/launch/your_robot_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="is_device" value="false"/>
  </include>
  <include file="$(find your_navigation_package)/launch/your_navigation_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="explore" value="false"/>
  </include>

make_map

  <include file="$(find your_robot_package)/launch/your_robot_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="is_device" value="false"/>
  </include>
  <include file="$(find your_navigation_package)/launch/your_navigation_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="explore" value="true"/>
  </include>

launch

An array of launchfiles to launch. It consists of pkg, file, args.

  • pkg: The package name that contains the file to start
  • file: Relative path of the launch file to start
  • args: Arrays of arguments of the launch file to start

keeping_node_patterns

An array of node name regular expressions to keep when switching launchfiles.

Default keeping node patterns
  • \/?rosout
  • \/?rviz.*
  • \/?robomaker\/srv
  • \/?gazebo

Switch launch files

You can switch launchfile sending mode name topic.

```

File truncated at 100 lines see the full file

CHANGELOG

Changelog for package launchfile_switcher

0.1.0 (2021-03-21)

  • Initial commit
  • Added keeping_node_patterns
  • Contributors: Shun Nagao

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged launchfile_switcher at Robotics Stack Exchange

No version for distro indigo showing melodic. Known supported distros are highlighted in the buttons above.
Package symbol

launchfile_switcher package from launchfile_switcher repo

launchfile_switcher

ROS Distro
melodic

Package Summary

Tags No category tags.
Version 0.1.0
License MIT
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/rb-sapiens/launchfile_switcher.git
VCS Type git
VCS Version melodic-devel
Last Updated 2021-05-10
Dev Status MAINTAINED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

The launchfile_switcher package

Additional Links

No additional links.

Maintainers

  • Shun Nagao

Authors

No additional authors.

launchfile_switcher

ROS package for management launch files. This package provides features that easily switch launch files.

Building

Build as standard catkin packages. There are no special dependencies needed.

ROS API

launchfile_switcher

Subscribed Topics

  • /mode (std_msgs/String)
    This topic indicates the next mode name. Modes can be defined in a yaml file (an example is below).

config file example

  • mode_list.yaml
mode_list:
    normal:
        launch:
            - pkg: your_robot_package
              file: /launch/your_robot_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: is_device
                  value: false
            - pkg: your_navigation_package
              file: /launch/your_navigation_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: explore
                  value: false
        keeping_node_patterns:
            - \/?explore.*
    make_map:
        launch:
            - pkg: your_robot_package
              file: /launch/your_robot_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: is_device
                  value: false
            - pkg: your_navigation_package
              file: /launch/your_navigation_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: explore
                  value: true

The example yaml config file above has two modes which equal to:

normal

  <include file="$(find your_robot_package)/launch/your_robot_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="is_device" value="false"/>
  </include>
  <include file="$(find your_navigation_package)/launch/your_navigation_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="explore" value="false"/>
  </include>

make_map

  <include file="$(find your_robot_package)/launch/your_robot_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="is_device" value="false"/>
  </include>
  <include file="$(find your_navigation_package)/launch/your_navigation_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="explore" value="true"/>
  </include>

launch

An array of launchfiles to launch. It consists of pkg, file, args.

  • pkg: The package name that contains the file to start
  • file: Relative path of the launch file to start
  • args: Arrays of arguments of the launch file to start

keeping_node_patterns

An array of node name regular expressions to keep when switching launchfiles.

Default keeping node patterns
  • \/?rosout
  • \/?rviz.*
  • \/?robomaker\/srv
  • \/?gazebo

Switch launch files

You can switch launchfile sending mode name topic.

```

File truncated at 100 lines see the full file

CHANGELOG

Changelog for package launchfile_switcher

0.1.0 (2021-03-21)

  • Initial commit
  • Added keeping_node_patterns
  • Contributors: Shun Nagao

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged launchfile_switcher at Robotics Stack Exchange

No version for distro hydro showing melodic. Known supported distros are highlighted in the buttons above.
Package symbol

launchfile_switcher package from launchfile_switcher repo

launchfile_switcher

ROS Distro
melodic

Package Summary

Tags No category tags.
Version 0.1.0
License MIT
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/rb-sapiens/launchfile_switcher.git
VCS Type git
VCS Version melodic-devel
Last Updated 2021-05-10
Dev Status MAINTAINED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

The launchfile_switcher package

Additional Links

No additional links.

Maintainers

  • Shun Nagao

Authors

No additional authors.

launchfile_switcher

ROS package for management launch files. This package provides features that easily switch launch files.

Building

Build as standard catkin packages. There are no special dependencies needed.

ROS API

launchfile_switcher

Subscribed Topics

  • /mode (std_msgs/String)
    This topic indicates the next mode name. Modes can be defined in a yaml file (an example is below).

config file example

  • mode_list.yaml
mode_list:
    normal:
        launch:
            - pkg: your_robot_package
              file: /launch/your_robot_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: is_device
                  value: false
            - pkg: your_navigation_package
              file: /launch/your_navigation_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: explore
                  value: false
        keeping_node_patterns:
            - \/?explore.*
    make_map:
        launch:
            - pkg: your_robot_package
              file: /launch/your_robot_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: is_device
                  value: false
            - pkg: your_navigation_package
              file: /launch/your_navigation_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: explore
                  value: true

The example yaml config file above has two modes which equal to:

normal

  <include file="$(find your_robot_package)/launch/your_robot_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="is_device" value="false"/>
  </include>
  <include file="$(find your_navigation_package)/launch/your_navigation_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="explore" value="false"/>
  </include>

make_map

  <include file="$(find your_robot_package)/launch/your_robot_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="is_device" value="false"/>
  </include>
  <include file="$(find your_navigation_package)/launch/your_navigation_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="explore" value="true"/>
  </include>

launch

An array of launchfiles to launch. It consists of pkg, file, args.

  • pkg: The package name that contains the file to start
  • file: Relative path of the launch file to start
  • args: Arrays of arguments of the launch file to start

keeping_node_patterns

An array of node name regular expressions to keep when switching launchfiles.

Default keeping node patterns
  • \/?rosout
  • \/?rviz.*
  • \/?robomaker\/srv
  • \/?gazebo

Switch launch files

You can switch launchfile sending mode name topic.

```

File truncated at 100 lines see the full file

CHANGELOG

Changelog for package launchfile_switcher

0.1.0 (2021-03-21)

  • Initial commit
  • Added keeping_node_patterns
  • Contributors: Shun Nagao

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged launchfile_switcher at Robotics Stack Exchange

No version for distro kinetic showing melodic. Known supported distros are highlighted in the buttons above.
Package symbol

launchfile_switcher package from launchfile_switcher repo

launchfile_switcher

ROS Distro
melodic

Package Summary

Tags No category tags.
Version 0.1.0
License MIT
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/rb-sapiens/launchfile_switcher.git
VCS Type git
VCS Version melodic-devel
Last Updated 2021-05-10
Dev Status MAINTAINED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

The launchfile_switcher package

Additional Links

No additional links.

Maintainers

  • Shun Nagao

Authors

No additional authors.

launchfile_switcher

ROS package for management launch files. This package provides features that easily switch launch files.

Building

Build as standard catkin packages. There are no special dependencies needed.

ROS API

launchfile_switcher

Subscribed Topics

  • /mode (std_msgs/String)
    This topic indicates the next mode name. Modes can be defined in a yaml file (an example is below).

config file example

  • mode_list.yaml
mode_list:
    normal:
        launch:
            - pkg: your_robot_package
              file: /launch/your_robot_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: is_device
                  value: false
            - pkg: your_navigation_package
              file: /launch/your_navigation_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: explore
                  value: false
        keeping_node_patterns:
            - \/?explore.*
    make_map:
        launch:
            - pkg: your_robot_package
              file: /launch/your_robot_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: is_device
                  value: false
            - pkg: your_navigation_package
              file: /launch/your_navigation_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: explore
                  value: true

The example yaml config file above has two modes which equal to:

normal

  <include file="$(find your_robot_package)/launch/your_robot_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="is_device" value="false"/>
  </include>
  <include file="$(find your_navigation_package)/launch/your_navigation_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="explore" value="false"/>
  </include>

make_map

  <include file="$(find your_robot_package)/launch/your_robot_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="is_device" value="false"/>
  </include>
  <include file="$(find your_navigation_package)/launch/your_navigation_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="explore" value="true"/>
  </include>

launch

An array of launchfiles to launch. It consists of pkg, file, args.

  • pkg: The package name that contains the file to start
  • file: Relative path of the launch file to start
  • args: Arrays of arguments of the launch file to start

keeping_node_patterns

An array of node name regular expressions to keep when switching launchfiles.

Default keeping node patterns
  • \/?rosout
  • \/?rviz.*
  • \/?robomaker\/srv
  • \/?gazebo

Switch launch files

You can switch launchfile sending mode name topic.

```

File truncated at 100 lines see the full file

CHANGELOG

Changelog for package launchfile_switcher

0.1.0 (2021-03-21)

  • Initial commit
  • Added keeping_node_patterns
  • Contributors: Shun Nagao

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged launchfile_switcher at Robotics Stack Exchange

Package symbol

launchfile_switcher package from launchfile_switcher repo

launchfile_switcher

ROS Distro
melodic

Package Summary

Tags No category tags.
Version 0.1.0
License MIT
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/rb-sapiens/launchfile_switcher.git
VCS Type git
VCS Version melodic-devel
Last Updated 2021-05-10
Dev Status MAINTAINED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

The launchfile_switcher package

Additional Links

No additional links.

Maintainers

  • Shun Nagao

Authors

No additional authors.

launchfile_switcher

ROS package for management launch files. This package provides features that easily switch launch files.

Building

Build as standard catkin packages. There are no special dependencies needed.

ROS API

launchfile_switcher

Subscribed Topics

  • /mode (std_msgs/String)
    This topic indicates the next mode name. Modes can be defined in a yaml file (an example is below).

config file example

  • mode_list.yaml
mode_list:
    normal:
        launch:
            - pkg: your_robot_package
              file: /launch/your_robot_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: is_device
                  value: false
            - pkg: your_navigation_package
              file: /launch/your_navigation_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: explore
                  value: false
        keeping_node_patterns:
            - \/?explore.*
    make_map:
        launch:
            - pkg: your_robot_package
              file: /launch/your_robot_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: is_device
                  value: false
            - pkg: your_navigation_package
              file: /launch/your_navigation_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: explore
                  value: true

The example yaml config file above has two modes which equal to:

normal

  <include file="$(find your_robot_package)/launch/your_robot_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="is_device" value="false"/>
  </include>
  <include file="$(find your_navigation_package)/launch/your_navigation_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="explore" value="false"/>
  </include>

make_map

  <include file="$(find your_robot_package)/launch/your_robot_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="is_device" value="false"/>
  </include>
  <include file="$(find your_navigation_package)/launch/your_navigation_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="explore" value="true"/>
  </include>

launch

An array of launchfiles to launch. It consists of pkg, file, args.

  • pkg: The package name that contains the file to start
  • file: Relative path of the launch file to start
  • args: Arrays of arguments of the launch file to start

keeping_node_patterns

An array of node name regular expressions to keep when switching launchfiles.

Default keeping node patterns
  • \/?rosout
  • \/?rviz.*
  • \/?robomaker\/srv
  • \/?gazebo

Switch launch files

You can switch launchfile sending mode name topic.

```

File truncated at 100 lines see the full file

CHANGELOG

Changelog for package launchfile_switcher

0.1.0 (2021-03-21)

  • Initial commit
  • Added keeping_node_patterns
  • Contributors: Shun Nagao

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged launchfile_switcher at Robotics Stack Exchange

No version for distro noetic showing melodic. Known supported distros are highlighted in the buttons above.
Package symbol

launchfile_switcher package from launchfile_switcher repo

launchfile_switcher

ROS Distro
melodic

Package Summary

Tags No category tags.
Version 0.1.0
License MIT
Build type CATKIN
Use RECOMMENDED

Repository Summary

Checkout URI https://github.com/rb-sapiens/launchfile_switcher.git
VCS Type git
VCS Version melodic-devel
Last Updated 2021-05-10
Dev Status MAINTAINED
Released RELEASED
Tags No category tags.
Contributing Help Wanted (-)
Good First Issues (-)
Pull Requests to Review (-)

Package Description

The launchfile_switcher package

Additional Links

No additional links.

Maintainers

  • Shun Nagao

Authors

No additional authors.

launchfile_switcher

ROS package for management launch files. This package provides features that easily switch launch files.

Building

Build as standard catkin packages. There are no special dependencies needed.

ROS API

launchfile_switcher

Subscribed Topics

  • /mode (std_msgs/String)
    This topic indicates the next mode name. Modes can be defined in a yaml file (an example is below).

config file example

  • mode_list.yaml
mode_list:
    normal:
        launch:
            - pkg: your_robot_package
              file: /launch/your_robot_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: is_device
                  value: false
            - pkg: your_navigation_package
              file: /launch/your_navigation_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: explore
                  value: false
        keeping_node_patterns:
            - \/?explore.*
    make_map:
        launch:
            - pkg: your_robot_package
              file: /launch/your_robot_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: is_device
                  value: false
            - pkg: your_navigation_package
              file: /launch/your_navigation_start.launch
              args:
                - name: mode
                  value: single_camera
                - name: explore
                  value: true

The example yaml config file above has two modes which equal to:

normal

  <include file="$(find your_robot_package)/launch/your_robot_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="is_device" value="false"/>
  </include>
  <include file="$(find your_navigation_package)/launch/your_navigation_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="explore" value="false"/>
  </include>

make_map

  <include file="$(find your_robot_package)/launch/your_robot_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="is_device" value="false"/>
  </include>
  <include file="$(find your_navigation_package)/launch/your_navigation_start.launch">
    <arg name="mode" value="single_camera"/>
    <arg name="explore" value="true"/>
  </include>

launch

An array of launchfiles to launch. It consists of pkg, file, args.

  • pkg: The package name that contains the file to start
  • file: Relative path of the launch file to start
  • args: Arrays of arguments of the launch file to start

keeping_node_patterns

An array of node name regular expressions to keep when switching launchfiles.

Default keeping node patterns
  • \/?rosout
  • \/?rviz.*
  • \/?robomaker\/srv
  • \/?gazebo

Switch launch files

You can switch launchfile sending mode name topic.

```

File truncated at 100 lines see the full file

CHANGELOG

Changelog for package launchfile_switcher

0.1.0 (2021-03-21)

  • Initial commit
  • Added keeping_node_patterns
  • Contributors: Shun Nagao

Wiki Tutorials

This package does not provide any links to tutorials in it's rosindex metadata. You can check on the ROS Wiki Tutorials page for the package.

Package Dependencies

System Dependencies

No direct system dependencies.

Dependant Packages

No known dependants.

Launch files

No launch files found

Messages

No message files found.

Services

No service files found

Plugins

No plugins found.

Recent questions tagged launchfile_switcher at Robotics Stack Exchange