Formula Student Autonomous Systems
The code for the main driverless system
Loading...
Searching...
No Matches
evaluator.adapter_maps Namespace Reference

Variables

dict ADAPTER_POINT_CLOUD_TOPIC_DICTIONARY
 
dict ADAPTER_POINT_CLOUD_TOPIC_QOS_DICTIONARY
 
dict ADAPTER_CONSTRUCTOR_DICTINARY
 

Variable Documentation

◆ ADAPTER_CONSTRUCTOR_DICTINARY

dict evaluator.adapter_maps.ADAPTER_CONSTRUCTOR_DICTINARY
Initial value:
1= {
2 "fsds": FSDSAdapter,
3 "pacsim": PacsimAdapter,
4 "eufs": EufsAdapter,
5 "vehicle": VehicleAdapter,
6 "onground": OnGroundAdapter,
7}

Definition at line 25 of file adapter_maps.py.

◆ ADAPTER_POINT_CLOUD_TOPIC_DICTIONARY

dict evaluator.adapter_maps.ADAPTER_POINT_CLOUD_TOPIC_DICTIONARY
Initial value:
1= {
2 "fsds": "/lidar/Lidar1",
3 "pacsim": "/no/topic",
4 "eufs": "/velodyne_points",
5 "vehicle": "/rslidar_points",
6 "onground": "/rslidar_points",
7}

Definition at line 10 of file adapter_maps.py.

◆ ADAPTER_POINT_CLOUD_TOPIC_QOS_DICTIONARY

dict evaluator.adapter_maps.ADAPTER_POINT_CLOUD_TOPIC_QOS_DICTIONARY
Initial value:
1= {
2 "fsds": rclpy.qos.QoSProfile(depth=10),
3 "pacsim": rclpy.qos.QoSProfile(depth=10),
4 "eufs": rclpy.qos.QoSProfile(
5 depth=1, reliability=rclpy.qos.ReliabilityPolicy.BEST_EFFORT
6 ),
7 "vehicle_preprocessed": rclpy.qos.QoSProfile(depth=10),
8}

Definition at line 17 of file adapter_maps.py.