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

Functions

def generate_launch_description ()
 

Function Documentation

◆ generate_launch_description()

def points_map_filter_launch.generate_launch_description ( )

Definition at line 31 of file points_map_filter_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('points_map_filter'), '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='points_map_filter_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='points_map_filter',
54 plugin='points_map_filter::Node',
55 name='points_map_filter_node',
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 ])