Apollo 11.0
自动驾驶开放平台
dbmap.proto
浏览该文件的文档.
1syntax = "proto2";
2
3package apollo.dbmap;
4
5message DBPoint {
6 optional double x = 1;
7 optional double y = 2;
8 optional double z = 3;
9 optional double s = 4;
10 optional double heading = 5;
11}
12
13message DBLine {
14 repeated DBPoint point = 1;
15}
16
18 optional double start_s = 1;
19 optional double end_s = 2;
20 optional string path_id = 3;
21 optional double path_start_s = 4;
22 optional double path_end_s = 5;
23}
24
26 repeated DBNeighbourSegment segment = 1;
27}
28
29message DBPath {
30 optional string id = 1;
31 repeated DBLine path = 2;
32 repeated DBLine left_bounday = 3;
33 repeated DBLine right_bounday = 4;
34 repeated DBNeighbourPath left_path = 5;
35 repeated DBNeighbourPath right_path = 6;
36 repeated DBNeighbourPath duplicate_path = 7;
37}
38
39message DBMap {
40 repeated DBPath paths = 1;
41}
syntax
Definition dbmap.proto:1