Skip to content

Commit 18e3922

Browse files
committed
add StationaryObjectClassification including assigned_lane_id and assigned_lane_percentage
Signed-off-by: Schloemicher, Thomas AVL,AT <thomas.schloemicher@avl.com>
1 parent a9e6a71 commit 18e3922

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

osi_object.proto

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,32 @@ message StationaryObject
4040
//
4141
optional string model_reference = 4;
4242

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+
4369
//
4470
// \brief Classification data for a stationary object.
4571
//

0 commit comments

Comments
 (0)