Skip to content

Commit ed6e42c

Browse files
Ludwig Friedmannjdsika
authored andcommitted
Adding relative model path to objects fixes #285 (#284)
* Adding relative model_reference to objects
1 parent 4483943 commit ed6e42c

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

osi_object.proto

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,20 @@ message StationaryObject
2121
//
2222
optional Identifier id = 1;
2323

24-
// The base parameters of the vehicle.
24+
// The base parameters of the stationary object.
2525
//
2626
optional BaseStationary base = 2;
2727

2828
// The classification of the stationary object.
2929
//
3030
optional Classification classification = 3;
3131

32+
// Opaque reference of an associated 3D model of the stationary object.
33+
//
34+
// \note It is implementation-specific how model_references are resolved to 3d models.
35+
//
36+
optional string model_reference = 4;
37+
3238
//
3339
// \brief Classification data for a stationary object.
3440
//
@@ -308,6 +314,12 @@ message MovingObject
308314
//
309315
optional VehicleClassification vehicle_classification = 6;
310316

317+
// Opaque reference of an associated 3D model of the moving object.
318+
//
319+
// \note It is implementation-specific how model_references are resolved to 3d models.
320+
//
321+
optional string model_reference = 7;
322+
311323
// Definition of object types.
312324
//
313325
enum Type

0 commit comments

Comments
 (0)