Repository Summary
Checkout URI | https://github.com/pal-robotics/launch_pal.git |
VCS Type | git |
VCS Version | master |
Last Updated | 2023-11-29 |
Dev Status | MAINTAINED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Packages
Name | Version |
---|---|
launch_pal | 0.0.13 |
README
launch_pal
Utilities for simplifying some common ROS2 launch operations.
robot_config
Contains utilities to read launch argument settings directly from a YAML file, grouped per robot type. Used to to automate argument declaration for the robots by
launch_arg_factory
.
arg_utils
Contains utilities for declaring launch arguments and removing boiler plate.
launch_arg_factory
: Combines an existing LaunchArgumentsBase
dataclass with robot specific launch arguments. These robot specific arguments are directly loaded from a yaml file.
An example of the use can be found in the launch_tutorial package that compares the standard boilerplate with the an updated version of the launch file. This updated version also provides a structured architecture that seperates launch arguments from other launch actions.
LaunchArgumentsBase
: A dataclass that contains only DeclareLaunchArgument
objects. The class is used to ease the process of adding launch arguments to the launch description.
read_launch_argument
: Used in Opaque functions to read the value of a launch argument and substitute it to text.
param_utils
Contains utilities for merging yaml parameter files or replace parametric variables in a param file.
parse_parametric_yaml
: Checks yaml files for variables of layout ${VAR_NAME}
and parses them. Parsing is done by giving a dictionary as input:
parse_dict = { VAR_NAME_1: value_1,
VAR_NAME_2: value_2}
merge_param_files
: Merges multiple yaml files into one single file to be loaded by a node.
include_utils
Contains utilities to reduce the boilerplate necessary for including files.
include_launch_py_description
: Include a python launch file.
include_scoped_launch_py_description
: Include a python launch file but avoid all launch arguments to be passed on by default. Any required launch arguments have to explicitly passed on to the launch file.
NOTE: This mimics the behavior of including launch files in ROS 1. Helpful in large launch files structures to avoid launch arguments to be overwritten by accident.
robot_utils (DEPRECATED)
Declare a single launch argument given by the robot name.
Example:
robot_name = 'tiago'
laser_model_arg = get_laser_model(robot_name)
CONTRIBUTING
Contributing Guidelines
Thank you for your interest in contributing to this project Whether it's a bug report, new feature, correction, or additional documentation, we greatly value feedback and contributions from our community.
Please read through this document before submitting any issues or pull requests to ensure we have all the necessary information to effectively respond to your bug report or contribution.
Reporting Bugs/Feature Requests
We welcome you to use the GitHub issue tracker to report bugs or suggest features.
When filing an issue, please check existing open issues, or recently closed, issues to make sure somebody else hasn't already reported the issue. Please try to include as much information as you can. Details like these are incredibly useful:
- A reproducible test case or series of steps
- The version of our code being used
- Any modifications you've made relevant to the bug
- Anything unusual about your environment or deployment
Contributing via Pull Requests
Contributions via pull requests are much appreciated. Before sending us a pull request, please ensure that:
- You are working against the latest source on the master branch.
- You check existing open, and recently merged, pull requests to make sure someone else hasn't addressed the problem already.
- You open an issue to discuss any significant work - we would hate for your time to be wasted.
To send us a pull request, please:
- Fork the repository.
- Modify the source; please focus on the specific change you are contributing. If you also reformat all the code, it will be hard for us to focus on your change.
- Ensure local tests pass. (
colcon test
) - Commit to your fork using clear commit messages.
- Send a pull request, answering any default questions in the pull request interface.
- Pay attention to any automated CI failures reported in the pull request, and stay involved in the conversation.
GitHub provides additional documentation on forking a repository and creating a pull request.
Licensing
Any contribution that you make to this repository will be under the Apache 2 License, as dictated by that license:
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
Repository Summary
Checkout URI | https://github.com/pal-robotics/launch_pal.git |
VCS Type | git |
VCS Version | foxy-devel |
Last Updated | 2021-03-15 |
Dev Status | MAINTAINED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Packages
Name | Version |
---|---|
launch_pal | 0.0.2 |
README
launch_pal
Utilities for simplifying some common ROS2 launch operations.
CONTRIBUTING
Contributing Guidelines
Thank you for your interest in contributing to this project Whether it's a bug report, new feature, correction, or additional documentation, we greatly value feedback and contributions from our community.
Please read through this document before submitting any issues or pull requests to ensure we have all the necessary information to effectively respond to your bug report or contribution.
Reporting Bugs/Feature Requests
We welcome you to use the GitHub issue tracker to report bugs or suggest features.
When filing an issue, please check existing open issues, or recently closed, issues to make sure somebody else hasn't already reported the issue. Please try to include as much information as you can. Details like these are incredibly useful:
- A reproducible test case or series of steps
- The version of our code being used
- Any modifications you've made relevant to the bug
- Anything unusual about your environment or deployment
Contributing via Pull Requests
Contributions via pull requests are much appreciated. Before sending us a pull request, please ensure that:
- You are working against the latest source on the master branch.
- You check existing open, and recently merged, pull requests to make sure someone else hasn't addressed the problem already.
- You open an issue to discuss any significant work - we would hate for your time to be wasted.
To send us a pull request, please:
- Fork the repository.
- Modify the source; please focus on the specific change you are contributing. If you also reformat all the code, it will be hard for us to focus on your change.
- Ensure local tests pass. (
colcon test
) - Commit to your fork using clear commit messages.
- Send a pull request, answering any default questions in the pull request interface.
- Pay attention to any automated CI failures reported in the pull request, and stay involved in the conversation.
GitHub provides additional documentation on forking a repository and creating a pull request.
Licensing
Any contribution that you make to this repository will be under the Apache 2 License, as dictated by that license:
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.