Skip to content

Commit e9fe665

Browse files
authored
feat(intersection): add test map for intersection (#8455)
Signed-off-by: Mamoru Sobue <mamoru.sobue@tier4.jp>
1 parent 2719e23 commit e9fe665

File tree

6 files changed

+28
-1
lines changed

6 files changed

+28
-1
lines changed

planning/behavior_velocity_planner/autoware_behavior_velocity_intersection_module/README.md

+12
Original file line numberDiff line numberDiff line change
@@ -647,3 +647,15 @@ This module is activated when the following conditions are met:
647647
### Known Issue
648648

649649
If ego go over the stop line for a certain distance, then it will not transit from STOP.
650+
651+
## Test Maps
652+
653+
The intersections lanelet map consist of a variety of intersections including:
654+
655+
- 4-way crossing with traffic light
656+
- 4-way crossing without traffic light
657+
- T-shape crossing without traffic light
658+
- intersection with a loop
659+
- complicated intersection
660+
661+
![intersection_test](./docs/intersection_test_map.png)

planning/behavior_velocity_planner/autoware_behavior_velocity_intersection_module/package.xml

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
<maintainer email="tomoya.kimura@tier4.jp">Tomoya Kimura</maintainer>
1111
<maintainer email="shumpei.wakabayashi@tier4.jp">Shumpei Wakabayashi</maintainer>
1212
<maintainer email="kyoichi.sugahara@tier4.jp">Kyoichi Sugahara</maintainer>
13+
<maintainer email="yukinari.hisaki.2@tier4.jp">Yukinari Hisaki</maintainer>
1314

1415
<license>Apache License 2.0</license>
1516

planning/behavior_velocity_planner/autoware_behavior_velocity_planner_common/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ if(BUILD_TESTING)
2626
)
2727
endif()
2828

29-
ament_auto_package()
29+
ament_auto_package(INSTALL_TO_SHARE test_map)
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
11
# Behavior Velocity Planner Common
22

33
This package provides common functions as a library, which are used in the `behavior_velocity_planner` node and modules.
4+
5+
## Test map
6+
7+
### intersection
8+
9+
The intersections lanelet map consist of a variety of intersections including:
10+
11+
- 4-way crossing with traffic light
12+
- 4-way crossing without traffic light
13+
- T-shape crossing without traffic light
14+
- intersection with a loop
15+
- complicated intersection
16+
17+
![intersection_test](./docs/intersection_test_map.png)

0 commit comments

Comments
 (0)