Carma-platform v4.11.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 26 of file roadway_objects_launch.py.

27
28 # Launch node(s) in a carma container to allow logging to be configured
29 container = ComposableNodeContainer(
30 package="carma_ros2_utils",
31 name="roadway_objects_container",
32 namespace=GetCurrentNamespace(),
33 executable="carma_component_container_mt",
34 composable_node_descriptions=[
35 # Launch the core node(s)
36 ComposableNode(
37 package="roadway_objects",
38 plugin="roadway_objects::RoadwayObjectsNode",
39 name="roadway_objects_node",
40 extra_arguments=[
41 {"use_intra_process_comms": True},
42 ],
43 ),
44 ],
45 )
46
47 return LaunchDescription([container])