-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added document for mapping.intersection.turn_direction_tagging
Signed-off-by: TaikiYamada4 <[email protected]>
- Loading branch information
1 parent
d3ddf0b
commit 54bc5c2
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
21 changes: 21 additions & 0 deletions
21
map/autoware_lanelet2_map_validator/docs/intersection/turn_direction_tagging.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# turn_direction_tagging | ||
|
||
## Validator name | ||
|
||
mapping.intersection.turn_direction_tagging | ||
|
||
## Feature | ||
|
||
This validator checks whether lanelets inside the `intersection_area` polygon have a `turn_direction` tag and it is set to "straight", "left", or "right". | ||
|
||
The validator will output the follwoing issues with the corresponding primitive ID. | ||
|
||
| Issue Code | Message | Severity | Primitive | Description | Approach | | ||
| ------------------------------------- | ---------------------------------------------------- | -------- | --------- | ------------------------------------------------------------------------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | ||
| Intersection.TurnDirectionTagging-001 | "This lanelet is missing a turn_direction tag." | Error | Lanelet | Lanelets at intersections must have a `turn_direction` tag but this lanelet doesn't have it. | Set a `turn_direction` tag to the lanelet with a value of `straight`, `left` or `right`. This tells the vehicle whether to use the blinkers or not at intersections. | | ||
| Intersection.TurnDirectionTagging-002 | "Invalid turn_direction tag <INVALID_TAG> is found." | Error | Lanelet | The `turn_direction` tag of this lanelet is set to <INVALID_TAG> while it has to be `straight`, `left` or `right`. | Fix the tag value to `straight`, `left` or `right`. | | ||
|
||
## Related source codes | ||
|
||
- turn_direction_tagging.cpp | ||
- turn_direction_tagging.hpp |