Skip to content

Commit d5ddf41

Browse files
committed
Merge branch 'improvement/harmonize-detectedobjects' of https://github.com/OpenSimulationInterface/open-simulation-interface into improvement/harmonize-detectedobjects
2 parents 649c049 + af9af95 commit d5ddf41

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

osi_common.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ message BaseStationary
297297
}
298298

299299
//
300-
// \brief The base attributes of each object that is moving.
300+
// \brief The base attributes of an object that is moving.
301301
//
302302
// This includes the \c MovingObject messages.
303303
//

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)