Apollo 10.0
自动驾驶开放平台
map_stop_sign.proto
浏览该文件的文档.
1syntax = "proto2";
2
3package apollo.hdmap;
4
7
8// A stop sign is a traffic sign to notify drivers that they must stop before
9// proceeding.
10message StopSign {
11 optional Id id = 1;
12
13 repeated Curve stop_line = 2;
14
15 repeated Id overlap_id = 3;
16
17 enum StopType {
18 UNKNOWN = 0;
19 ONE_WAY = 1;
20 TWO_WAY = 2;
21 THREE_WAY = 3;
22 FOUR_WAY = 4;
23 ALL_WAY = 5;
24 };
25 optional StopType type = 4;
26}