Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: sync awf/autoware_launch #249

Merged
merged 23 commits into from
Oct 25, 2023
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
198f929
feat(avoidance): check if the avoidance path is in drivable area (#584)
satoshi-ota Oct 12, 2023
be56728
chore(intersection): parameterize stuck vehicle detection turn_direct…
soblin Oct 12, 2023
eeccf72
feat(ndt_scan_matcher): added a new parameter "n_startup_trials" (#602)
SakodaShintaro Oct 13, 2023
2614818
feat(autoware_launch): add yield_stuck.distance_thr in intersection (…
takayuki5168 Oct 13, 2023
5b9dfdb
feat(duplicated_node_checker): add duplicated_node_checker (#631)
Owen-Liuyuxuan Oct 14, 2023
807e5c6
feat(intersection): ignore decelerating vehicle on amber traffic ligh…
soblin Oct 15, 2023
d95d929
feat(lane_change): add rss paramas for stuck (#633)
kosuke55 Oct 15, 2023
307dc94
add tracking object merger for long range radar sensor (#627)
YoshiRi Oct 16, 2023
b811253
feat(behavior_path_planner): curvature based drivable area expansion …
maxime-clem Oct 16, 2023
434f95a
feat(lane_change): change stuck velocity to 0.5 (#636)
kosuke55 Oct 16, 2023
06cd743
fix(tier4_simulator_component): add lacked param path (#640)
satoshi-ota Oct 17, 2023
76dcd54
fix(drivable_area_expansion): disable by default (#639)
maxime-clem Oct 17, 2023
7d3f1d2
fix(intersection): lower state_transit_margi_time to 0 (#638)
soblin Oct 17, 2023
5d8a2f0
feat(avoidance): add paramenters for dynamic detection area (#634)
satoshi-ota Oct 17, 2023
681f5f7
feat(planner_manager): limit iteration number by parameter (#645)
satoshi-ota Oct 19, 2023
9e5293c
feat(map_based_prediction): enable to control lateral path convergenc…
YoshiRi Oct 20, 2023
082e862
feat(intersection): timeout static occlusion with traffic light (#646)
soblin Oct 20, 2023
90c7a6a
feat(duplicated_node_checker): disable duplicated_node_checker (#649)
kyoichi-sugahara Oct 20, 2023
13b2855
feat(intersection): use own max acc/jerk param (#650)
soblin Oct 23, 2023
5a04d1c
feat(duplicated_node_checker): add duplicated node names to msg (#651)
kyoichi-sugahara Oct 23, 2023
2ed86f2
feat(behavior_velocity_run_out): ignore momentary detection caused by…
TomohitoAndo Oct 24, 2023
c88d055
perf(elastic_band_smoother): increase lateral replan threshold (#652)
maxime-clem Oct 24, 2023
61aeb52
feat(rviz): add sensing/perception debug topics (#653)
miursh Oct 24, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat(autoware_launch): add yield_stuck.distance_thr in intersection (#…
…628)

* feat(autoware_launch): add yield_stuck.distance_thr in intersection

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* use turn_direction

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

* update param

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>

---------

Signed-off-by: Takayuki Murooka <takayuki5168@gmail.com>
  • Loading branch information
takayuki5168 authored Oct 13, 2023
commit 26148188f74271adbb0f96ceab03d91d564adb9b
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@
# assumed_front_car_decel: 1.0 # [m/ss] the expected deceleration of front car when front car as well as ego are turning
timeout_private_area: 3.0 # [s] cancel stuck vehicle stop in private area
enable_private_area_stuck_disregard: false #In the intersections which labeled as "private area", the obstacle vehicles judged as "stuck" are neglected if this param is set as true.
yield_stuck:
turn_direction:
left: true
right: false
straight: false
distance_thr: 1.0 # [m]

collision_detection:
state_transit_margin_time: 1.0
Expand Down