Skip to content

Commit

Permalink
feat(static_obstacle_avoidance): change policy for ambiguous avoidanc…
Browse files Browse the repository at this point in the history
…e situation (autowarefoundation#1113) (#541)

* feat(static_obstacle_avoidance): change policy for ambiguous avoidance situation



* fix(static_obstacle_avoidance): tune ambiguous vehicle ignore area



---------

Signed-off-by: satoshi-ota <[email protected]>
  • Loading branch information
satoshi-ota authored Aug 29, 2024
1 parent 2e315b9 commit 554a2c1
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -150,16 +150,16 @@
# "auto" : generate candidate path. if RTC is running as AUTO mode, the ego avoids it automatically.
# "manual" : generate candidate path and wait operator approval even if RTC is running as AUTO mode.
# "ignore" : never avoid it.
policy: "auto" # [-]
policy: "manual" # [-]
condition:
th_stopped_time: 3.0 # [s]
th_moving_distance: 1.0 # [m]
ignore_area:
traffic_light:
front_distance: 100.0 # [m]
front_distance: 20.0 # [m]
crosswalk:
front_distance: 30.0 # [m]
behind_distance: 30.0 # [m]
front_distance: 20.0 # [m]
behind_distance: 0.0 # [m]
wait_and_see:
target_behaviors: ["MERGING", "DEVIATING"] # [-]
th_closest_distance: 10.0 # [m]
Expand Down

0 comments on commit 554a2c1

Please sign in to comment.