Skip to content

Commit f5953a6

Browse files
0815-codepmai
authored andcommitted
Move assigned_lane_id and assigned_lane_percentage under Classification message that is already available
Signed-off-by: Schloemicher, Thomas AVL,AT <thomas.schloemicher@avl.com>
1 parent 916e4f4 commit f5953a6

File tree

1 file changed

+16
-26
lines changed

1 file changed

+16
-26
lines changed

osi_object.proto

Lines changed: 16 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -79,32 +79,6 @@ message StationaryObject
7979
//
8080
optional ColorDescription color_description = 6;
8181

82-
// Specific information about the classification of stationary objects.
83-
//
84-
optional StationaryObjectClassification stationary_object_classification = 7;
85-
86-
//
87-
// \brief Information for the classification of stationary objects.
88-
//
89-
message StationaryObjectClassification
90-
{
91-
// The IDs of the lanes that this object is assigned to.
92-
//
93-
// \note Might be multiple if the object streches over multiple lanes.
94-
//
95-
// \note OSI uses singular instead of plural for repeated field names.
96-
//
97-
repeated Identifier assigned_lane_id = 1;
98-
99-
// Percentage value of the object width in the corresponding lane.
100-
//
101-
// \note Might be multiple if the object streches over multiple lanes.
102-
//
103-
// \note OSI uses singular instead of plural for repeated field names.
104-
//
105-
repeated double assigned_lane_percentage = 2;
106-
}
107-
10882
//
10983
// \brief Classification data for a stationary object.
11084
//
@@ -130,6 +104,22 @@ message StationaryObject
130104
//
131105
optional Color color = 4;
132106

107+
// The IDs of the lanes that the object is assigned to.
108+
//
109+
// \note Might be multiple if the object streches over multiple lanes.
110+
//
111+
// \note OSI uses singular instead of plural for repeated field names.
112+
//
113+
repeated Identifier assigned_lane_id = 5;
114+
115+
// Percentage value of the object width in the corresponding lane.
116+
//
117+
// \note Might be multiple if the object streches over multiple lanes.
118+
//
119+
// \note OSI uses singular instead of plural for repeated field names.
120+
//
121+
repeated double assigned_lane_percentage = 6;
122+
133123
// The attributes of the emitting structure if stationary object is classified as such.
134124
//
135125
optional EmittingStructureAttribute emitting_structure_attribute = 5;

0 commit comments

Comments
 (0)