Carma-platform v4.2.0
CARMA Platform is built on robot operating system (ROS) and utilizes open source software (OSS) that enables Cooperative Driving Automation (CDA) features to allow Automated Driving Systems to interact and cooperate with infrastructure and other vehicles through communication.
light_controlled_intersection_tactical_plugin_launch Namespace Reference

Functions

def generate_launch_description ()
 

Function Documentation

◆ generate_launch_description()

def light_controlled_intersection_tactical_plugin_launch.generate_launch_description ( )

Definition at line 31 of file light_controlled_intersection_tactical_plugin_launch.py.

32
33 # Declare the log_level launch argument
34 log_level = LaunchConfiguration('log_level')
35 declare_log_level_arg = DeclareLaunchArgument(
36 name ='log_level', default_value='WARN')
37
38 # Get parameter file path
39 param_file_path = os.path.join(
40 get_package_share_directory('light_controlled_intersection_tactical_plugin'), 'config/parameters.yaml')
41
42
43 # Launch node(s) in a carma container to allow logging to be configured
44 container = ComposableNodeContainer(
45 package='carma_ros2_utils',
46 name='light_controlled_intersection_tactical_plugin_container',
47 namespace=GetCurrentNamespace(),
48 executable='carma_component_container_mt',
49 composable_node_descriptions=[
50
51 # Launch the core node(s)
52 ComposableNode(
53 package='light_controlled_intersection_tactical_plugin',
54 plugin='light_controlled_intersection_tactical_plugin::LightControlledIntersectionTransitPluginNode',
55 name='light_controlled_intersection_tactical_plugin',
56 extra_arguments=[
57 {'use_intra_process_comms': True},
58 {'--log-level' : log_level }
59 ],
60 parameters=[ param_file_path ]
61 ),
62 ]
63 )
64
65 return LaunchDescription([
66 declare_log_level_arg,
67 container
68 ])