Skip to content

Commit 7e2c84c

Browse files
ThomasNaderBMWpmai
authored andcommitted
Added wheel radius to wheel data
Signed-off-by: Pierre R. Mai <pmai@pmsf.de>
1 parent d93cada commit 7e2c84c

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

osi_object.proto

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -408,6 +408,7 @@ message MovingObject
408408
//
409409
optional Identifier driver_id = 1;
410410

411+
// Deprecated: Will be removed in next major release. Moved to WheelData.
411412
// Median radius of the wheels measured from a center of the wheel
412413
// including tire.
413414
//
@@ -480,19 +481,25 @@ message MovingObject
480481
//
481482
optional Vector3d position = 3;
482483

484+
// Radius of the wheels measured from the center to the outer part of the tire.
485+
//
486+
// Unit: m
487+
//
488+
optional double radius = 4;
489+
483490
// Orientation of the wheel.
484491
// The reference system is the vehicle frame (center of bounding box).
485492
// Right-handed, x-axis shows into driving direction "forward".
486493
// Rough Approximation: The yaw-value shows the steering angle.
487494
//
488-
optional Orientation3d orientation = 4;
495+
optional Orientation3d orientation = 5;
489496

490497
// Rotation of the wheel around the axle.
491498
//
492499
// Unit: Rad/s.
493500
// Positive means, that the vehicle moves forward.
494501
//
495-
optional double rotation_rate = 5;
502+
optional double rotation_rate = 6;
496503
}
497504
}
498505

0 commit comments

Comments
 (0)