Apollo 11.0
自动驾驶开放平台
park_and_go.proto
浏览该文件的文档.
1syntax = "proto2";
2
3package apollo.planning;
4
6 // Obstacle distance buffer to check if vehicle is blocked by obstacle
7 optional double front_obstacle_buffer = 1 [default = 4.0]; // meter
8 // Heading buffer to check if the heading of vehicle is aligned
9 // to reference line
10 optional double heading_buffer = 2 [default = 0.5]; // rad
11 // If the distance of vehicle and destination < "min_dist_to_dest", the
12 // vehicle can be considered as reaching the end
13 optional double min_dist_to_dest = 3 [default = 25.0]; // meter
14 // Only when steering of vehicle is smaller than this value, the vehicle
15 // can start to cruise.
16 optional double max_steering_percentage_when_cruise = 4 [default = 90.0];
17}
syntax