Skip to content

Commit e73cd47

Browse files
committed
Fix test_brief_necessity errors
Signed-off-by: Thomas Bleher <[email protected]>
1 parent d2048d8 commit e73cd47

File tree

2 files changed

+40
-40
lines changed

2 files changed

+40
-40
lines changed

osi_logicallane.proto

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,15 @@ package osi3;
4747
//
4848
message LogicalLaneBoundary
4949
{
50-
// \brief The ID of the lane boundary.
50+
// The ID of the lane boundary.
5151
//
5252
// \rules
5353
// is_globally_unique
5454
// \endrules
5555
//
5656
optional Identifier id = 1;
5757

58-
// \brief Points making up the lane boundary.
58+
// Points making up the lane boundary.
5959
//
6060
// The boundary must be defined in the same direction as the reference
6161
// line. So S positions should increase along the line. Note that S
@@ -90,7 +90,7 @@ message LogicalLaneBoundary
9090
//
9191
repeated LogicalBoundaryPoint boundary_line = 2;
9292

93-
// \brief The reference line for this boundary.
93+
// The reference line for this boundary.
9494
//
9595
// The reference line is used as a coordinate system for this boundary.
9696
// All points of this LogicalLaneBoundary must have S coordinates in the
@@ -106,8 +106,8 @@ message LogicalLaneBoundary
106106
//
107107
optional Identifier reference_line_id = 3;
108108

109-
// \brief Reference to the physical lane boundary or boundaries that make
110-
// up this logical boundary.
109+
// Reference to the physical lane boundary or boundaries that make up this
110+
// logical boundary.
111111
//
112112
// Rules and notes:
113113
// - This list is empty if there are no physical lane boundaries to delimit
@@ -147,12 +147,12 @@ message LogicalLaneBoundary
147147
//
148148
repeated Identifier physical_boundary_id = 4;
149149

150-
// \brief The passing rules, insomuch as they can be determined just from
151-
// road markings.
150+
// The passing rules, insomuch as they can be determined just from road
151+
// markings.
152152
//
153153
optional PassingRule passing_rule = 5;
154154

155-
// \brief Optional external reference to the lane boundary source.
155+
// Optional external reference to the lane boundary source.
156156
//
157157
// \note For OpenDRIVE, there is no direct possibility to reference the
158158
// RoadMark, as there is no unique identifier in this sub-object.
@@ -188,7 +188,7 @@ message LogicalLaneBoundary
188188
}
189189

190190
//
191-
// \brief Passing rule of the LogicalLaneBoundary.
191+
// Passing rule of the LogicalLaneBoundary.
192192
//
193193
// This describes how vehicles may move across the LogicalLaneBoundary. The
194194
// PassingRule is determined solely based on the road, not on any signs
@@ -317,7 +317,7 @@ message LogicalLaneBoundary
317317
//
318318
message LogicalLane
319319
{
320-
// \brief The ID of the logical lane.
320+
// The ID of the logical lane.
321321
//
322322
// \note Note ID is global unique.
323323
//
@@ -327,11 +327,11 @@ message LogicalLane
327327
//
328328
optional Identifier id = 1;
329329

330-
// \brief The type of the logical lane.
330+
// The type of the logical lane.
331331
//
332332
optional Type type = 2;
333333

334-
// \brief Optional external reference to the lane source.
334+
// Optional external reference to the lane source.
335335
//
336336
// The external reference points to the source of the lane, if it is derived
337337
// from one or more objects or external references.
@@ -355,7 +355,7 @@ message LogicalLane
355355
//
356356
repeated ExternalReference source_reference = 3;
357357

358-
// \brief Reference to the physical lanes this logical lane belongs to.
358+
// Reference to the physical lanes this logical lane belongs to.
359359
//
360360
// This makes it possible to get detailed information on the physical lane
361361
// properties, e.g. the visual colors of the boundaries, the road
@@ -399,7 +399,7 @@ message LogicalLane
399399
//
400400
repeated PhysicalLaneReference physical_lane_reference = 4;
401401

402-
// \brief The \link ReferenceLine reference line\endlink for this logical lane
402+
// The \link ReferenceLine reference line\endlink for this logical lane
403403
//
404404
// The reference line is used as a coordinate system on this lane.
405405
//
@@ -426,25 +426,25 @@ message LogicalLane
426426
//
427427
optional Identifier reference_line_id = 5;
428428

429-
// \brief Start S position of the lane.
429+
// Start S position of the lane.
430430
//
431431
// Must be in range [\c sStart,\c sEnd] of the reference line.
432432
//
433433
optional double start_s = 6;
434434

435-
// \brief End S position of the lane.
435+
// End S position of the lane.
436436
//
437437
// Must be in range [\c sStart,\c sEnd] of the reference line.
438438
//
439439
// Requirement: #end_s > #start_s
440440
//
441441
optional double end_s = 7;
442442

443-
// \brief Definition of the intended driving direction.
443+
// Definition of the intended driving direction.
444444
//
445445
optional MoveDirection move_direction = 8;
446446

447-
// \brief Lanes that are directly right of this lane, without gap or overlap.
447+
// Lanes that are directly right of this lane, without gap or overlap.
448448
//
449449
// "Right" is in definition direction (not driving direction), so right lanes
450450
// have smaller T coordinates.
@@ -461,7 +461,7 @@ message LogicalLane
461461
//
462462
repeated LaneRelation right_adjacent_lane = 9;
463463

464-
// \brief Lanes that are directly left of this lane, without gap or overlap.
464+
// Lanes that are directly left of this lane, without gap or overlap.
465465
//
466466
// "Left" is in definition direction (not driving direction), so left lanes
467467
// have larger T coordinates.
@@ -478,7 +478,7 @@ message LogicalLane
478478
//
479479
repeated LaneRelation left_adjacent_lane = 10;
480480

481-
// \brief Lanes that partially or completely overlap this lane.
481+
// Lanes that partially or completely overlap this lane.
482482
//
483483
// Only overlaps laterally larger than 5cm are considered overlaps for the
484484
// purpose of this relation.
@@ -491,7 +491,7 @@ message LogicalLane
491491
//
492492
repeated LaneRelation overlapping_lane = 11;
493493

494-
// \brief Right boundary of this lane.
494+
// Right boundary of this lane.
495495
//
496496
// References to LogicalLaneBoundary elements.
497497
// All LogicalLaneBoundary elements referenced here must refer to the same
@@ -512,7 +512,7 @@ message LogicalLane
512512
//
513513
repeated Identifier right_boundary_id = 12;
514514

515-
// \brief Left boundary of this lane.
515+
// Left boundary of this lane.
516516
//
517517
// References to LogicalLaneBoundary elements.
518518
// All LogicalLaneBoundary elements referenced here must refer to the same
@@ -533,7 +533,7 @@ message LogicalLane
533533
//
534534
repeated Identifier left_boundary_id = 13;
535535

536-
// \brief Lanes that directly are connected to this lane at the beginning.
536+
// Lanes that directly are connected to this lane at the beginning.
537537
//
538538
// "Beginning" is relative to the reference line, so connections at #start_s.
539539
//
@@ -547,7 +547,7 @@ message LogicalLane
547547
//
548548
repeated LaneConnection predecessor_lane = 14;
549549

550-
// \brief Lanes that directly are connected to this lane at the end.
550+
// Lanes that directly are connected to this lane at the end.
551551
//
552552
// "End" is relative to the reference line, so connections at #end_s.
553553
//
@@ -562,7 +562,7 @@ message LogicalLane
562562
repeated LaneConnection successor_lane = 15;
563563

564564
//
565-
// \brief Definition of available lane types.
565+
// Definition of available lane types.
566566
//
567567
// This is mostly aligned with OpenDRIVE, except that lane types modelling
568568
// access restrictions (e.g. "taxi") are not made available here. These are
@@ -676,28 +676,28 @@ message LogicalLane
676676
//
677677
message PhysicalLaneReference
678678
{
679-
// \brief Id of the physical lane referenced.
679+
// Id of the physical lane referenced.
680680
//
681681
// \rules
682682
// refers_to: Lane
683683
// \endrules
684684
//
685685
optional Identifier physical_lane_id = 1;
686686

687-
// \brief S position on the logical lane where the physical lane starts.
687+
// S position on the logical lane where the physical lane starts.
688688
//
689689
optional double start_s = 2;
690690

691-
// \brief S position on the logical lane where the physical lane ends.
691+
// S position on the logical lane where the physical lane ends.
692692
//
693693
// Requirement: #end_s > #start_s
694694
//
695695
optional double end_s = 3;
696696
}
697697

698698
//
699-
// \brief Describes in which direction moving objects may typically move
700-
// along a lane.
699+
// Describes in which direction moving objects may typically move along a
700+
// lane.
701701
//
702702
// This describes the allowed typical driving direction on a lane, or (in
703703
// the case of pedestrian) the allowed walking direction.
@@ -742,7 +742,7 @@ message LogicalLane
742742
//
743743
message LaneConnection
744744
{
745-
// \brief Id of the other logical lane that is connected.
745+
// Id of the other logical lane that is connected.
746746
//
747747
// \rules
748748
// refers_to: LogicalLane
@@ -762,32 +762,32 @@ message LogicalLane
762762
//
763763
message LaneRelation
764764
{
765-
// \brief Id of the other logical lane.
765+
// Id of the other logical lane.
766766
//
767767
// \rules
768768
// refers_to: LogicalLane
769769
// \endrules
770770
//
771771
optional Identifier other_lane_id = 1;
772772

773-
// \brief Start s position of the relation.
773+
// Start s position of the relation.
774774
//
775775
optional double start_s = 2;
776776

777-
// \brief End s position of the relation.
777+
// End s position of the relation.
778778
//
779779
// Requirement: #end_s > #start_s
780780
//
781781
optional double end_s = 3;
782782

783-
// \brief Start s position of the relation on the other lane.
783+
// Start s position of the relation on the other lane.
784784
//
785785
// This is the same place as #start_s, but measured along the reference
786786
// line of the other lane.
787787
//
788788
optional double start_s_other = 4;
789789

790-
// \brief End s position of the relation on the other lane.
790+
// End s position of the relation on the other lane.
791791
//
792792
// This is the same place as #end_s, but measured along the reference
793793
// line of the other lane.

osi_referenceline.proto

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ package osi3;
2121
//
2222
message ReferenceLine
2323
{
24-
// \brief The ID of the logical lane.
24+
// The ID of the logical lane.
2525
//
2626
// \note Note ID is global unique.
2727
//
@@ -31,7 +31,7 @@ message ReferenceLine
3131
//
3232
optional Identifier id = 1;
3333

34-
// \brief Points comprising the polyline.
34+
// Points comprising the polyline.
3535
//
3636
// At least 2 points must be given.
3737
// The polyline is defined as the lines between consecutive points.
@@ -178,11 +178,11 @@ message ReferenceLine
178178
//
179179
message ReferenceLinePoint
180180
{
181-
// \brief A world position
181+
// A world position
182182
//
183183
optional Vector3d world_position = 1;
184184

185-
// \brief S position on the reference line
185+
// S position on the reference line
186186
//
187187
optional double s_position = 2;
188188
}

0 commit comments

Comments
 (0)