@@ -54,11 +54,7 @@ message Lane
54
54
55
55
// The lane's center line (as a list of segments).
56
56
//
57
- // This is the line, that a typical vehicle is supposed to follow. Thus,
58
- // if the road narrows (e.g. at a construction site) this line is
59
- // supposed to describe the trajectory that the vehicle should follow.
60
- // The intended direction of travel on the lane is given by the
61
- // direction defined by the sequence of points forming the center line.
57
+ // The center line describes the middle of the lane.
62
58
//
63
59
// \image html highway_exit.png "Center lines as yellow dotted lines."
64
60
//
@@ -71,9 +67,19 @@ message Lane
71
67
// \image html line_approximation_error.png "Approximation error as
72
68
// green line."
73
69
//
70
+ // \note The center line is the line that a typical vehicle follows more
71
+ // or less (depending on the situation, a little more to the left or
72
+ // right of the center line). The intended direction of travel on the
73
+ // lane is given by the direction defined by the sequence of points
74
+ // forming the \c #centerline w.r.t. \c #centerline_is_driving_direction.
75
+ //
74
76
// \note The \c #centerline is defined only for \c #type =
75
77
// \c #TYPE_DRIVING and one \c #lane_pairing pair.
76
78
//
79
+ // \note Intersections and non-driving lanes do not have a center line.
80
+ // A vehicle must calculate this individually and depending on the
81
+ // situation.
82
+ //
77
83
repeated Vector3d centerline = 3 ;
78
84
79
85
// Definition of the intended driving direction.
0 commit comments