Skip to content

Commit 29da7ee

Browse files
authored
feat(docs): linguistic review
Signed-off-by: Katrin Mehl <katrin.mehl@parson-europe.com>
1 parent 5594fe0 commit 29da7ee

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

osi_motionrequest.proto

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ package osi3;
1010
//
1111
// \brief This message is intended as an interface between a HAD (highly automated driving) function and the actuator management.
1212
// The HAD function can send either a desired future trajectory ore a desired future state.
13-
// The message to be used can be defined by a additional variable.
13+
// The message can be defined by a additional variable.
1414
//
1515
// All coordinates and orientations are relative to the global coordinate system.
1616
// The reference point of the vehicle is the center of the 3D bounding box of the vehicle.
@@ -19,7 +19,7 @@ message MotionRequest
1919
{
2020

2121
//
22-
// Define different options for had function ouput.
22+
// Define different options for HAD function ouput.
2323
// Each option is corresponds to a field in the message.
2424
//
2525
enum OutputOptions {
@@ -29,25 +29,25 @@ message MotionRequest
2929

3030
//
3131
// Define the option that is used to specify the motion request.
32-
// This must be set. Additionaly the field corresponding to the specified option must be set.
32+
// This must be set. Additionally, the field corresponding to the specified option must be set.
3333
//
3434
optional OutputOptions output_option = 1;
3535

3636
//
3737
// Defines a desired state.
38-
// If the output option is set to DESIRED_STATE this must be provided.
38+
// If the output option is set to DESIRED_STATE, this must be provided.
3939
//
4040
optional DesiredState desired_state = 2;
4141

4242
//
4343
// Defines a desired trajectory.
44-
// If the output option is set to DESIRED_TRAJECTORY this must be set.
44+
// If the output option is set to DESIRED_TRAJECTORY, this must be set.
4545
//
4646
optional Trajectory desired_trajectory = 3;
4747
}
4848

4949
//
50-
// \brief Defined the trajectory desired by the had function. This trajectory is the result of the trajctory planning step
50+
// \brief Defined the trajectory desired by the HAD function. This trajectory is the result of the trajctory planning step
5151
// in the HAD function. The task of the acutator management is to follow the trajectory as close as possible.
5252
// The timestamps inside the trajecotry must be defined in global simulation time.
5353
//
@@ -56,30 +56,30 @@ message Trajectory {
5656
}
5757

5858
//
59-
// \brief The desired state calculated by the had function as a result of the motion planning stack.
59+
// \brief The desired state calculated by the HAD function as a result of the motion planning stack.
6060
// The actuator management is supposed
6161
//
6262
message DesiredState
6363
{
6464
//
65-
// The timestamp indicates at which point in time the state needs to be reached,
65+
// The timestamp indicates the point in time the state needs to be reached,
6666
// given in global simulation time.
6767
//
6868
optional Timestamp timestamp = 1;
6969

70-
// intended position to be reached in x, y and z direction.
70+
// intended position to be reached in x, y, and z direction.
7171
//
7272
optional Vector3d position = 2;
7373

74-
// intended orientation to be reached containing roll, pitch and yaw angle
74+
// intended orientation to be reached containing roll, pitch, and yaw angle
7575
//
7676
optional Orientation3d orientation = 3;
7777

78-
// intended velocity to be reached in x, y and z direction
78+
// intended velocity to be reached in x, y, and z direction
7979
//
8080
optional Vector3d velocity = 4;
8181

82-
// intended acceleration to be reached in x, y and z direction
82+
// intended acceleration to be reached in x, y, and z direction
8383
//
8484
optional Vector3d acceleration = 5;
8585

0 commit comments

Comments
 (0)