Skip to content

Commit af9af95

Browse files
Add ID to host vehicle
Add an ID for the host vehicle.
1 parent 36deb75 commit af9af95

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

osi_hostvehicledata.proto

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,20 @@ package osi3;
1515
//
1616
message HostVehicleData
1717
{
18+
// The ID of the host vehicle object.
19+
//
20+
optional Identifier id = 1;
21+
1822
// Current estimated location based on GPS- and related navigation sensors.
1923
//
2024
// \note Note that dimension and base_polygon need not be set.
2125
//
22-
optional BaseMoving location = 1;
26+
optional BaseMoving location = 2;
2327

2428
// Current estimated location error based on GPS- and related navigation
2529
// sensors.
2630
//
2731
// \note Note that dimension and base_polygon need not be set.
2832
//
29-
optional BaseMoving location_rmse = 2;
33+
optional BaseMoving location_rmse = 3;
3034
}

0 commit comments

Comments
 (0)