Skip to content

Commit d25e1eb

Browse files
Position Information is now on a postprocessed level.
Signed-off-by: Nader Thomas <a442105@europe.bmw.corp>
1 parent 9fff53e commit d25e1eb

File tree

1 file changed

+11
-19
lines changed

1 file changed

+11
-19
lines changed

osi_hostvehicledata.proto

Lines changed: 11 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -51,37 +51,29 @@ message HostVehicleData
5151
//
5252
optional BaseMoving location_rmse = 2;
5353

54-
// The ID of the object. Can be discussed.
55-
//
56-
// \rules
57-
// is_globally_unique
58-
// \endrules
59-
//
60-
optional Identifier id = 3;
61-
6254
// The basic parameters of the vehicle.
6355
//
64-
optional VehicleBasics vehicle_basics = 4;
56+
optional VehicleBasics vehicle_basics = 3;
6557

6658
// Interface regarding the powermanagement.
6759
//
68-
optional VehiclePowermanagement vehicle_powermanagement = 5;
60+
optional VehiclePowermanagement vehicle_powermanagement = 4;
6961

7062
// Interface regarding the powertrain.
7163
//
72-
optional VehiclePowertrain vehicle_powertrain = 6;
64+
optional VehiclePowertrain vehicle_powertrain = 5;
7365

7466
// Interface regarding the steering wheel.
7567
//
76-
optional VehicleSteeringWheel vehicle_steering_wheel = 7;
68+
optional VehicleSteeringWheel vehicle_steering_wheel = 6;
7769

7870
// Interface regarding the wheels.
7971
//
80-
optional VehicleWheels vehicle_wheels = 8;
72+
optional VehicleWheels vehicle_wheels = 7;
8173

8274
// Interface regarding the navigation.
8375
//
84-
optional VehiclePositionAndKinematics vehicle_position_and_kinematics = 9;
76+
optional VehiclePositionAndKinematics vehicle_position_and_kinematics = 8;
8577

8678
//
8779
// \brief The absolute base parameters of the vehicle.
@@ -300,30 +292,30 @@ message HostVehicleData
300292
}
301293

302294
//
303-
// \brief This message contains all the information the vehicle knows about its kinematic states.
295+
// \brief This message contains all the information the vehicle knows about its positioning and kinematics.
304296
//
305297
message VehiclePositionAndKinematics
306298
{
307299
//
308-
// \brief Current kinematic data based on the output of the Intertial Measurement Unit (IMU).
300+
// \brief Current calculated and estimated kinematic data.
309301
//
310302
message CartesianInformation
311303
{
312-
// Current kinematic data based on the output of the Intertial Measurement Unit (IMU).
304+
// Current calculated and estimated kinematic data.
313305
//
314306
// \note Note that dimension and base_polygon need not be set.
315307
//
316308
optional BaseMoving cartesian_data = 1;
317309

318-
// Current kinematic data error based on the output of the Intertial Measurement Unit (IMU).
310+
// Current calculated and estimated kinematic data error.
319311
//
320312
// \note Note that dimension and base_polygon need not be set.
321313
//
322314
optional BaseMoving cartesian_data_rmse = 2;
323315
}
324316

325317
//
326-
// \brief Current estimated location based on the output of the GPS-Unit.
318+
// \brief Current calculated and estimated geodetic location.
327319
//
328320
message GeoreferencedInformation
329321
{

0 commit comments

Comments
 (0)