Skip to content

Commit 988d5fd

Browse files
author
Habedank Clemens
committed
reword some sentences and conventional things
1 parent a71b8cf commit 988d5fd

File tree

1 file changed

+55
-45
lines changed

1 file changed

+55
-45
lines changed

osi_trafficcommand.proto

Lines changed: 55 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -494,37 +494,39 @@ message LongitudinalDistanceAction
494494
{
495495
// Action Header of the message
496496
//
497-
optional ActionHeader action_header = 1;
497+
optional ActionHeader action_header = 1;
498498

499-
// Unique Id of the refence traffic participant to which the distance is defined.
499+
// Unique Id of the reference traffic participant to which the distance is defined.
500500
//
501-
optional Identifier target_traffic_participant_id = 2;
501+
optional Identifier target_traffic_participant_id = 2;
502502

503503
// The distance to reach along the lane
504504
//
505505
// Unit: m
506506
//
507507
optional double distance = 3;
508508

509-
// Determine the measurement of distance between TrafficParticipant
510-
// True: Longitudinal distance is measured using the distance between closest bounding box points.
511-
// False: Longitudinal distance is mesasured using the distance between the center of each objects bounding box
509+
// Determine the measurement of longitudinal distance between the traffic
510+
// participant receiving this action and the reference traffic
511+
// participant.
512+
// True: Longitudinal distance is measured using the distance between closest bounding box points.
513+
// False: Longitudinal distance is mesasured using the distance between the center of each object's bounding box.
512514
//
513-
optional bool freespace = 4;
515+
optional bool freespace = 4;
514516

515517
// Define wheather the traffic participant should only reach the distance once
516-
// or follow.
517-
// True : the traffic particpant shall approach the reference participant
518-
// and follow with the distance specified until the action is aborted.
519-
// False : the action end as soon as the traffic participant has reached
518+
// or if it should also follow if after having reached it.
519+
// True: the traffic participant shall approach the reference participant
520+
// and follow with the distance specified until the action is aborted/ended.
521+
// False: the action ends as soon as the traffic participant has reached
520522
// the specified distance.
521523
//
522524
optional bool follow = 5;
523525

524-
// Parameter that assings either unlimited dynamics (if omitted)
526+
// Parameter that assings either unlimited dynamics (if omitted)
525527
// or limited maxAcceleration/maxDeceleration/maxSpeed to the action.
526528
//
527-
optional DynamicConstraints dynamic_constraints = 6;
529+
optional DynamicConstraints dynamic_constraints = 6;
528530
}
529531

530532

@@ -542,31 +544,36 @@ message LateralDistanceAction
542544
{
543545
// Action Header of the message
544546
//
545-
optional ActionHeader action_header = 1;
547+
optional ActionHeader action_header = 1;
546548

547549
// Id of the reference entity the lateral distance shall be kept to.
548550
//
549-
optional Identifier target_traffic_participant_id = 2;
551+
optional Identifier target_traffic_participant_id = 2;
550552

551-
// Lateral distance value. Unit: m; Range: [0...inf]
553+
// Lateral distance value.
552554
//
553-
optional double distance = 3;
555+
// Unit: m
556+
//
557+
optional double distance = 3;
554558

559+
// Determine the measurement of lateral distance between the traffic
560+
// participant receiving this action and the reference traffic
561+
// participant.
555562
// True: Lateral distance is measured using the distance between closest bounding box points.
556-
// False: Lateral distance is mesasured using the distance between the center of each objects bounding box
563+
// False: Lateral distance is mesasured using the distance between the center of each object's bounding box.
557564
//
558-
optional bool freespace = 4;
565+
optional bool freespace = 4;
559566

560-
// Define wheather the traffic participant should only reach the distance once
561-
// or follow.
562-
// True : the traffic particpant shall approach the reference participant
563-
// and follow with the distance specified until the action is aborted.
564-
// False : the action end as soon as the traffic participant has reached
565-
// the specified distance.
566-
//
567-
optional bool follow = 5;
567+
// Define wheather the traffic participant should only reach the distance once
568+
// or if it should also follow if after having reached it.
569+
// True: the traffic particpant shall approach the reference participant
570+
// and follow with the distance specified until the action is aborted/ended.
571+
// False: the action ends as soon as the traffic participant has reached
572+
// the specified distance.
573+
//
574+
optional bool follow = 5;
568575

569-
// Parameter that assings either unlimited dynamics (if omitted)
576+
// Parameter that assings either unlimited dynamics (if omitted)
570577
// or limited maxAcceleration/maxDeceleration/maxSpeed to the action.
571578
//
572579
optional DynamicConstraints dynamic_constraints = 6;
@@ -588,11 +595,11 @@ message LaneOffsetAction
588595
optional ActionHeader action_header = 1;
589596

590597
// Targeted lane offset in meters relative to the centerline of the
591-
// current lane. Positive values mean left of the centerline,
598+
// current lane. Positive values mean left of the centerline,
592599
// negative values mean right of the centerline.
593600
//
594-
// Unit: m
595-
//
601+
// Unit: m
602+
//
596603
optional double target_lane_offset = 2;
597604

598605
// Specified transition shape of reaching the lane offset.
@@ -712,22 +719,25 @@ message EndActionsAction
712719
// certain speeds/acceleration levels.
713720
//
714721

715-
message DynamicConstraints{
716-
717-
//Maximum acceleration the distance contoller is allowed to use for keeping distance.
718-
//Unit: m/s2; Range: [0..inf]
719-
//
720-
optional double max_acceleration = 1;
722+
message DynamicConstraints
723+
{
724+
// Maximum acceleration the distance contoller is allowed to use for keeping distance.
725+
//
726+
// Unit: m/s^2
727+
//
728+
optional double max_acceleration = 1;
721729

722-
//Maximum deceleration the distance contoller is allowed to use for keeping distance.
723-
//Unit: m/s2; Range: [0..inf]
724-
//
725-
optional double max_deceleration = 2;
730+
// Maximum deceleration the distance contoller is allowed to use for keeping distance.
731+
//
732+
// Unit: m/s^2
733+
//
734+
optional double max_deceleration = 2;
726735

727-
//Maximum speed the distance contoller is allowed to use for keeping distance.
728-
//Unit: m/s2; Range: [0..inf]
729-
//
730-
optional double max_speed = 3;
736+
// Maximum speed the distance contoller is allowed to use for keeping distance.
737+
//
738+
// Unit: m/s
739+
//
740+
optional double max_speed = 3;
731741
}
732742

733743
//

0 commit comments

Comments
 (0)