This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| from ament_index_python.packages import get_package_share_directory | |
| from launch import LaunchDescription | |
| from launch.actions import ExecuteProcess, OpaqueFunction | |
| from launch_ros.actions import Node | |
| def generate_launch_description(): | |
| # Define paths | |
| bringup_dir = get_package_share_directory('nav2_bringup') | |
| world_file = os.path.join(bringup_dir, 'worlds', 'empty_ground.world') |