10ADAPTER_POINT_CLOUD_TOPIC_DICTIONARY: dict[str, str] = {
11 "fsds":
"/lidar/Lidar1",
12 "pacsim":
"/no/topic",
13 "eufs":
"/velodyne_points",
14 "vehicle":
"/rslidar_points",
15 "onground":
"/rslidar_points",
17ADAPTER_POINT_CLOUD_TOPIC_QOS_DICTIONARY: dict[str, rclpy.qos.QoSProfile] = {
18 "fsds": rclpy.qos.QoSProfile(depth=10),
19 "pacsim": rclpy.qos.QoSProfile(depth=10),
20 "eufs": rclpy.qos.QoSProfile(
21 depth=1, reliability=rclpy.qos.ReliabilityPolicy.BEST_EFFORT
23 "vehicle_preprocessed": rclpy.qos.QoSProfile(depth=10),
25ADAPTER_CONSTRUCTOR_DICTINARY: dict[str, Adapter] = {
27 "pacsim": PacsimAdapter,
29 "vehicle": VehicleAdapter,
30 "onground": OnGroundAdapter,