Apollo
11.0
自动驾驶开放平台
dbmap.proto
浏览该文件的文档.
1
syntax
=
"proto2"
;
2
3
package
apollo.dbmap;
4
5
message
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
13
message
DBLine
{
14
repeated
DBPoint
point = 1;
15
}
16
17
message
DBNeighbourSegment
{
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
25
message
DBNeighbourPath
{
26
repeated
DBNeighbourSegment
segment = 1;
27
}
28
29
message
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
39
message
DBMap
{
40
repeated
DBPath
paths = 1;
41
}
syntax
syntax
Definition
dbmap.proto:1
apollo::dbmap::DBLine
Definition
dbmap.proto:13
apollo::dbmap::DBMap
Definition
dbmap.proto:39
apollo::dbmap::DBNeighbourPath
Definition
dbmap.proto:25
apollo::dbmap::DBNeighbourSegment
Definition
dbmap.proto:17
apollo::dbmap::DBPath
Definition
dbmap.proto:29
apollo::dbmap::DBPoint
Definition
dbmap.proto:5
modules
tools
navigator
dbmap
proto
dbmap.proto