File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,32 @@ message StationaryObject
40
40
//
41
41
optional string model_reference = 4 ;
42
42
43
+ // Specific information about the classification of stationary objects.
44
+ //
45
+ optional StationaryObjectClassification stationary_object_classification = 5 ;
46
+
47
+ //
48
+ // \brief Information for the classification of stationary objects.
49
+ //
50
+ message StationaryObjectClassification
51
+ {
52
+ // The IDs of the lanes that this object is assigned to.
53
+ //
54
+ // \note Might be multiple if the object streches over multiple lanes.
55
+ //
56
+ // \note OSI uses singular instead of plural for repeated field names.
57
+ //
58
+ repeated Identifier assigned_lane_id = 1 ;
59
+
60
+ // Percentage value of the object width in the corresponding lane.
61
+ //
62
+ // \note Might be multiple if the object streches over multiple lanes.
63
+ //
64
+ // \note OSI uses singular instead of plural for repeated field names.
65
+ //
66
+ repeated double assigned_lane_percentage = 2 ;
67
+ }
68
+
43
69
//
44
70
// \brief Classification data for a stationary object.
45
71
//
You can’t perform that action at this time.
0 commit comments