Apollo 10.0
自动驾驶开放平台
stop_sign.proto
浏览该文件的文档.
1syntax = "proto2";
2
3package apollo.planning;
4
6// StopSignConfig
7
9 // Flag if processing of stop sign is enabled.
10 optional bool enabled = 1 [default = true];
11 // Safty stop distance(m) to the stop line of the stop sign.
12 optional double stop_distance = 2 [default = 1.0]; // meter
13}
syntax