Apollo 10.0
自动驾驶开放平台
traffic_light.proto
浏览该文件的文档.
1syntax = "proto2";
2
3package apollo.planning;
4
6// TrafficLightConfig
7
9 // Flag if processing of traffic light is enabled.
10 optional bool enabled = 1 [default = true];
11 // Safty stop distance(m) to the stop line of the traffic light.
12 optional double stop_distance = 2 [default = 1.0]; // meter
13 // If the deceleration needed for ego-vehicle to stop in front of the traffic
14 // light it too big > "max_stop_deceleration", which means it is too late to
15 // stop, the red traffic light will be ignored and ego-vehicle will move on.
16 optional double max_stop_deceleration = 3 [default = 4.0];
17}