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.
roadway_objects_launch Namespace Reference

Functions

def generate_launch_description ()
 

Function Documentation

◆ generate_launch_description()

def roadway_objects_launch.generate_launch_description ( )

Definition at line 29 of file roadway_objects_launch.py.

30 # Declare the log_level launch argument
31 log_level = LaunchConfiguration("log_level")
32 declare_log_level_arg = DeclareLaunchArgument(
33 name="log_level", default_value="WARN"
34 )
35
36 # Launch node(s) in a carma container to allow logging to be configured
37 container = ComposableNodeContainer(
38 package="carma_ros2_utils",
39 name="roadway_objects_container",
40 namespace=GetCurrentNamespace(),
41 executable="carma_component_container_mt",
42 composable_node_descriptions=[
43 # Launch the core node(s)
44 ComposableNode(
45 package="roadway_objects",
46 plugin="roadway_objects::RoadwayObjectsNode",
47 name="roadway_objects_node",
48 extra_arguments=[
49 {"use_intra_process_comms": True},
50 {"--log-level": log_level},
51 ],
52 ),
53 ],
54 )
55
56 return LaunchDescription([declare_log_level_arg, container])