-
Notifications
You must be signed in to change notification settings - Fork 0
/
launch.hailbopp_sensor_collection.py
45 lines (36 loc) · 1.27 KB
/
launch.hailbopp_sensor_collection.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
from os import name, path, environ
import sys
from launch.launch_description_sources import PythonLaunchDescriptionSource
from launch.actions import IncludeLaunchDescription
from launch import LaunchDescription
from launch.actions import DeclareLaunchArgument
from launch.actions import ExecuteProcess
from launch.conditions import IfCondition
from launch.substitutions import LaunchConfiguration
from launch_ros.actions import Node
from ament_index_python import get_package_share_directory
sys.path.append(path.abspath('/vehicle_interface/'))
from launch_node_definitions import *
def generate_launch_description():
return LaunchDescription([
launch.actions.DeclareLaunchArgument(
"log_level",
default_value=["debug"],
description="Logging level",
),
clock,
hailbopp_urdf_publisher,
# SENSOR INTERFACE
#camera,
gnss,
lidar_ouster_driver,
sensor_configure_event,
sensor_activate_event,
sensor_finalized_event,
lidar_ouster_processor,
#lidar_velodyne_driver_left, lidar_velodyne_pointcloud_left,
#lidar_velodyne_driver_right, lidar_velodyne_pointcloud_right,
#lidar_velodyne_processor,
#radar_processor,
rviz,
])