Apollo 10.0
自动驾驶开放平台
map_yield_sign.proto
浏览该文件的文档.
1syntax = "proto2";
2
3package apollo.hdmap;
4
7
8// A yield indicates that each driver must prepare to stop if necessary to let a
9// driver on another approach proceed.
10// A driver who stops or slows down to let another vehicle through has yielded
11// the right of way to that vehicle.
12message YieldSign {
13 optional Id id = 1;
14
15 repeated Curve stop_line = 2;
16
17 repeated Id overlap_id = 3;
18}