# launch_ros **Repository Path**: simonaxi/launch_ros ## Basic Information - **Project Name**: launch_ros - **Description**: Tools for launching ROS nodes and for writing tests involving ROS nodes. - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 5 - **Created**: 2022-01-24 - **Last Updated**: 2022-05-12 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # launch_ros #### 介绍 launch_ros节点 用于启动ROS节点和编写涉及ROS节点的测试的工具。 #### 软件架构 软件架构说明 https://github.com/ros2/launch_ros.git 文件内容: ``` ├── CONTRIBUTING.md ├── launch_ros │   ├── CHANGELOG.rst │   ├── examples │   │   ├── lifecycle_pub_sub_launch.py │   │   └── pub_sub_launch.py │   ├── launch_ros │   │   ├── actions │   │   ├── descriptions │   │   ├── event_handlers │   │   ├── events │   │   ├── __init__.py │   │   ├── parameters_type.py │   │   ├── remap_rule_type.py │   │   ├── ros_adapters.py │   │   ├── substitutions │   │   └── utilities │   ├── package.xml │   ├── resource │   │   └── launch_ros │   ├── setup.py │   └── test │   ├── test_copyright.py │   ├── test_flake8.py │   └── test_pep257.py ├── launch_testing_ros │   ├── CHANGELOG.rst │   ├── launch_testing_ros │   │   ├── data_republisher.py │   │   ├── __init__.py │   │   ├── message_pump.py │   │   ├── pytest │   │   ├── test_runner.py │   │   └── tools │   ├── package.xml │   ├── pytest.ini │   ├── README.md │   ├── resource │   │   └── launch_testing_ros │   ├── setup.cfg │   ├── setup.py │   └── test │   ├── examples │   ├── test_copyright.py │   ├── test_flake8.py │   └── test_pep257.py ├── LICENSE ├── ros2launch │   ├── CHANGELOG.rst │   ├── examples │   │   ├── example.launch.py │   │   └── includes_example.launch.py │   ├── package.xml │   ├── resource │   │   └── ros2launch │   ├── ros2launch │   │   ├── api │   │   ├── command │   │   └── __init__.py │   ├── setup.py │   └── test │   ├── test_copyright.py │   ├── test_flake8.py │   └── test_pep257.py └── test_launch_ros ├── CHANGELOG.rst ├── package.xml ├── setup.py └── test ├── test_copyright.py ├── test_flake8.py ├── test_launch_ros └── test_pep257.py ``` #### 安装教程 1. 下载rpm包 wget http://121.36.3.168:82/home:/davidhan:/branches:/openEuler:/21.03/standard_aarch64/aarch64/launch_ros-0.11.4-1.oe1.aarch64.rpm 2. 安装rpm包 sudo rpm -ivh launch_ros-0.11.4-1.oe1.aarch64.rpm --nodeps -force #### 使用说明 安装完成以后,在/opt/ros/foxy/目录下有如下输出,则表示安装成功 输出: ``` . ├── lib │   └── python3.6 │   └── site-packages └── share ├── ament_index │   └── resource_index ├── colcon-core │   └── packages └── launch_ros ├── hook ├── package.bash ├── package.dsv ├── package.ps1 ├── package.sh ├── package.xml └── package.zsh ``` #### 参与贡献 1. Fork 本仓库 2. 新建 Feat_xxx 分支 3. 提交代码 4. 新建 Pull Request #### 特技 1. 使用 Readme\_XXX.md 来支持不同的语言,例如 Readme\_en.md, Readme\_zh.md 2. Gitee 官方博客 [blog.gitee.com](https://blog.gitee.com) 3. 你可以 [https://gitee.com/explore](https://gitee.com/explore) 这个地址来了解 Gitee 上的优秀开源项目 4. [GVP](https://gitee.com/gvp) 全称是 Gitee 最有价值开源项目,是综合评定出的优秀开源项目 5. Gitee 官方提供的使用手册 [https://gitee.com/help](https://gitee.com/help) 6. Gitee 封面人物是一档用来展示 Gitee 会员风采的栏目 [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/)