Skip to content

Commit ef7950a

Browse files
committed
Revert "Move assigned_lane_id in osi_object.proto to VehicleClassification"
This reverts commit 666ed62.
1 parent 1dbb48b commit ef7950a

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

osi_object.proto

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -291,27 +291,36 @@ message MovingObject
291291
//
292292
optional Type type = 3;
293293

294+
// The IDs of the lanes that this object is assigned to.
295+
//
296+
// \note Might be multiple if the object is switching lanes or moving from
297+
// one lane into another following lane.
298+
//
299+
// \note OSI uses singular instead of plural for repeated field names.
300+
//
301+
repeated Identifier assigned_lane_id = 4;
302+
294303
// Specific information about the vehicle.
295304
//
296305
// \note This field is mandatory if the \c #type is
297306
// #TYPE_VEHICLE .
298307
//
299-
optional VehicleAttributes vehicle_attributes = 4;
308+
optional VehicleAttributes vehicle_attributes = 5;
300309

301310
// Specific information about the classification of the vehicle.
302311
//
303312
//
304313
// \note This field is mandatory if the \c #type is
305314
// #TYPE_VEHICLE .
306315
//
307-
optional VehicleClassification vehicle_classification = 5;
316+
optional VehicleClassification vehicle_classification = 6;
308317

309318
// Opaque reference of an associated 3D model of the moving object.
310319
//
311320
// \note It is implementation-specific how model_references are resolved to
312321
// 3d models.
313322
//
314-
optional string model_reference = 6;
323+
optional string model_reference = 7;
315324

316325
// Definition of object types.
317326
//

0 commit comments

Comments
 (0)