Skip to content

Commit

Permalink
fix(intersection): prevent unnecessary stop inside intersection witho…
Browse files Browse the repository at this point in the history
…ut traffic light when occlusion feature is off

Signed-off-by: Mamoru Sobue <[email protected]>
  • Loading branch information
soblin committed Oct 15, 2023
1 parent 807e5c6 commit 9b5559d
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@
not_prioritized:
collision_start_margin_time: 4.0 # [s] this + state_transit_margin_time should be higher to account for collision with fast/accelerating object
collision_end_margin_time: 6.0 # [s] this + state_transit_margin_time should be higher to account for collision with slow/decelerating object
keep_detection_vel_thr: 0.833 # == 3.0km/h. keep detection if ego is ego.vel < keep_detection_vel_thr
pass_judge:
judge_before_default_stop_line: false
keep_detection_vel_thr: 0.833 # == 3.0km/h. keep detection if ego is ego.vel < keep_detection_vel_thr
use_upstream_velocity: true # flag to use the planned velocity profile from the upstream module
minimum_upstream_velocity: 0.01 # [m/s] minimum velocity to avoid null division for the stop line from the upstream velocity
yield_on_green_traffic_light:
Expand Down

0 comments on commit 9b5559d

Please sign in to comment.