Skip to content

Commit 740fe46

Browse files
Added HostVehicleData
Added HostVehicleData Signed-off-by: Thomas Nader <Thomas.Nader@bmw.de>
1 parent 5017c3f commit 740fe46

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

osi_streaming.proto

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ message Streaming
4747
// The list of stationary objects (excluding traffic signs and traffic
4848
// lights).
4949
//
50-
repeated StationaryObject stationary_object_update = 3;
50+
repeated StationaryObject stationary_object_update = 4;
5151

5252
// Updated traffic participant data
5353
//
@@ -60,28 +60,33 @@ message Streaming
6060
// a vehicle, see MovingObject::VehicleClassification::has_trailer and
6161
// MovingObject::VehicleClassification::trailer_id.
6262
//
63-
repeated MovingObject moving_object_update = 4;
63+
repeated MovingObject moving_object_update = 5;
6464

6565
// To discuss: Are they needed?
6666
// The list of traffic signs.
6767
//
68-
repeated TrafficSign traffic_sign = 5;
68+
repeated TrafficSign traffic_sign = 6;
6969

7070
// The list of traffic lights.
7171
//
72-
repeated TrafficLight traffic_light_update = 6;
72+
repeated TrafficLight traffic_light_update = 7;
7373

74-
// To discuss: Here or from osi_ground_truth if sended in a lower cycle time?
7574
// Conditions of the environment.
7675
//
77-
optional EnvironmentalConditions environmental_conditions = 7;
76+
optional EnvironmentalConditions environmental_conditions = 12;
7877

79-
// To discuss: What about HostVehicleData?
78+
// Host vehicle data.
79+
//
80+
// Host vehicle data is data that the host vehicle knows about itself,
81+
// e.g. from location sensors, internal sensors and ECU bus data, etc.,
82+
// that is made available to sensors as input.
83+
//
84+
optional HostVehicleData host_vehicle_data = 29;
8085

8186
// Entities that will no longer be updated, because they are considered
8287
// obsolete by the sender.
8388
//
8489
// Note: IDs are globally unique.
8590
//
86-
repeated Identifier obsolete_id = 8;
91+
repeated Identifier obsolete_id = 30;
8792
}

0 commit comments

Comments
 (0)