Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions osi_object.proto
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,22 @@ message StationaryObject
//
optional EmittingStructureAttribute emitting_structure_attribute = 5;

// The IDs of the lanes that the object is assigned to.
//
// \note Might be multiple IDs if the object stretches over multiple lanes.
//
// \note OSI uses singular instead of plural for repeated field names.
//
repeated Identifier assigned_lane_id = 6;

// Percentage values of the object width in the corresponding lane.
//
// \note Might be multiple percentages if the object stretches over multiple lanes.
//
// \note OSI uses singular instead of plural for repeated field names.
//
repeated double assigned_lane_percentage = 7;

// Definition of object types.
//
enum Type
Expand Down