Skip to content

Commit 6e459dd

Browse files
authored
Merge pull request #491 from OpenSimulationInterface/feature/tp/add_static_object_lane_association_#490
add StationaryObjectClassification including assigned_lane_id and ass…
2 parents e14578f + cd1fa51 commit 6e459dd

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
@@ -108,6 +108,22 @@ message StationaryObject
108108
//
109109
optional EmittingStructureAttribute emitting_structure_attribute = 5;
110110

111+
// The IDs of the lanes that the object is assigned to.
112+
//
113+
// \note Might be multiple IDs if the object stretches over multiple lanes.
114+
//
115+
// \note OSI uses singular instead of plural for repeated field names.
116+
//
117+
repeated Identifier assigned_lane_id = 6;
118+
119+
// Percentage values of the object width in the corresponding lane.
120+
//
121+
// \note Might be multiple percentages if the object stretches over multiple lanes.
122+
//
123+
// \note OSI uses singular instead of plural for repeated field names.
124+
//
125+
repeated double assigned_lane_percentage = 7;
126+
111127
// Definition of object types.
112128
//
113129
enum Type

0 commit comments

Comments
 (0)