forked from AutomotiveAIChallenge/aichallenge-2024
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(mission_planning): add pit-in control (rebased) (#52)
* pit in path * chore: Update goal_pose_setter configuration to enable pit and adjust threshold * ignore result json * add pit in speed control * add spell * fixed bug * add mission planner param * mission planner param 調整 * pitin ok * param fileをbooars_launchに移行 * fix typo * parameter tuning * parameter update * add .gitignore for .vscode Signed-off-by: Autumn60 <[email protected]> --------- Signed-off-by: Autumn60 <[email protected]> Co-authored-by: hrjp <[email protected]> Co-authored-by: tamago117 <[email protected]>
- Loading branch information
1 parent
46a34c0
commit ac046e7
Showing
21 changed files
with
6,815 additions
and
1,725 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -137,6 +137,7 @@ | |
"tempature", | ||
"rsample", | ||
"coeffs", | ||
"softplus" | ||
"softplus", | ||
"mpss" | ||
] | ||
} |
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 @@ | ||
.vscode |
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,2 @@ | ||
capture | ||
result-details.json |
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 |
---|---|---|
|
@@ -3,4 +3,5 @@ | |
/log | ||
|
||
.vscode | ||
*.code-workspace | ||
*.code-workspace | ||
result-details.json |
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
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
32 changes: 32 additions & 0 deletions
32
...lenge/workspace/src/aichallenge_submit/booars_launch/config/planning/goal_pose.param.yaml
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,32 @@ | ||
/**: | ||
ros__parameters: | ||
goal.position.x: 89653.7 | ||
goal.position.y: 43122.5 | ||
goal.position.z: 0.0 | ||
goal.orientation.x: 0.0 | ||
goal.orientation.y: 0.0 | ||
goal.orientation.z: -0.971732 | ||
goal.orientation.w: 0.236088 | ||
|
||
half_goal.position.x: 89657.0 | ||
half_goal.position.y: 43175.0 | ||
half_goal.position.z: -28.0 | ||
half_goal.orientation.x: 0.0 | ||
half_goal.orientation.y: 0.0 | ||
half_goal.orientation.z: -0.9 | ||
half_goal.orientation.w: 0.25 | ||
|
||
pit_goal.position.x: 89626.3671875 | ||
pit_goal.position.y: 43134.921875 | ||
pit_goal.position.z: 42.10000228881836 | ||
pit_goal.orientation.x: 0.0 | ||
pit_goal.orientation.y: 0.0 | ||
pit_goal.orientation.z: -0.8788172006607056 | ||
pit_goal.orientation.w: -0.47715866565704346 | ||
# ゴールまでの距離がこの値以下になると次のゴールを配信する | ||
goal_range: 10.0 | ||
# ピットインを有効化するか | ||
enable_pit: true | ||
# このしきい値以下になるとピットイン | ||
# pit_in_threshold: 100 | ||
pit_in_threshold: 700 |
13 changes: 13 additions & 0 deletions
13
...workspace/src/aichallenge_submit/booars_launch/config/planning/mission_planner.param.yaml
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,13 @@ | ||
/**: | ||
ros__parameters: | ||
map_frame: map | ||
arrival_check_angle_deg: 180.0 | ||
arrival_check_distance: 30.0 | ||
arrival_check_duration: 1.0 | ||
goal_angle_threshold_deg: 90.0 | ||
enable_correct_goal_pose: false | ||
reroute_time_threshold: 10.0 | ||
minimum_reroute_length: 30.0 | ||
consider_no_drivable_lanes: false # This flag is for considering no_drivable_lanes in planning or not. | ||
check_footprint_inside_lanes: false | ||
allow_reroute_in_autonomous_mode: true |
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
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
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
Oops, something went wrong.