Skip to content

Commit 6fc328d

Browse files
committed
add assigned_lane_id and assigned_lane_percentage to stationary objects especially true in the case of speed bumps
Signed-off-by: Schloemicher, Thomas AVL,AT <thomas.schloemicher@avl.com>
1 parent d8b558e commit 6fc328d

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

osi_object.proto

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,22 @@ message StationaryObject
6161
//
6262
optional Color color = 4;
6363

64+
// The IDs of the lanes that the stationary object is assigned to.
65+
//
66+
// \note Might be multiple if the stationary object is streching over multiple lanes.
67+
//
68+
// \note OSI uses singular instead of plural for repeated field names.
69+
//
70+
repeated Identifier assigned_lane_id = 5;
71+
72+
// Percentage value of the total stationary object residing within a corresponding lane.
73+
//
74+
// \note Might be multiple if the stationary object is streching over multiple lanes.
75+
//
76+
// \note OSI uses singular instead of plural for repeated field names.
77+
//
78+
repeated double assigned_lane_percentage = 6;
79+
6480
// Definition of object types.
6581
//
6682
enum Type

0 commit comments

Comments
 (0)