-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathosi_hostvehicledata.proto
More file actions
32 lines (27 loc) · 823 Bytes
/
osi_hostvehicledata.proto
File metadata and controls
32 lines (27 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
syntax = "proto2";
option optimize_for = SPEED;
import "osi_common.proto";
package osi3;
//
// \brief Interface for host vehicle data that is available to sensors and
// other functions due to host vehicle's internal communication.
//
// \image html OSI_HostVehicle.svg
//
// All coordinates and orientations are relative to the global ground truth
// coordinate system.
//
message HostVehicleData
{
// Current estimated location based on GPS- and related navigation sensors.
//
// \note Note that dimension and base_polygon need not be set.
//
optional BaseMoving location = 1;
// Current estimated location error based on GPS- and related navigation
// sensors.
//
// \note Note that dimension and base_polygon need not be set.
//
optional BaseMoving location_rmse = 2;
}