Apollo 11.0
自动驾驶开放平台
emergency_pull_over.proto
浏览该文件的文档.
1syntax = "proto2";
2
3package apollo.planning;
4
6 // Maximum stop deceleration at slow down stage
7 optional double max_stop_deceleration = 1 [default = 3.0];
8 // Expected slow down time at slow down stage
9 optional double slow_down_deceleration_time = 2 [default = 3.0]; // second
10 // Expected slow down speed at slow down stage
11 optional double target_slow_down_speed = 3 [default = 2.5]; // m/s
12 // Distance of stopping point to the pull over point
13 optional double stop_distance = 4 [default = 1.5]; // meter
14}