Skip to content

Commit

Permalink
param fileをbooars_launchに移行
Browse files Browse the repository at this point in the history
  • Loading branch information
hrjp committed Sep 18, 2024
1 parent 5f6f968 commit 233f48a
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@

<!-- place a goal pose anywhere you like-->
<node pkg="goal_pose_setter" exec="goal_pose_setter_node" name="goal_pose_setter" output="screen">
<param from="$(find-pkg-share goal_pose_setter)/config/default_goal_pose.param.yaml" />
<param from="$(find-pkg-share booars_launch)/config/planning/goal_pose.param.yaml" />
</node>
</launch>
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
/**:
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: 1000
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,13 @@
<node pkg="path_to_trajectory" exec="path_to_trajectory_node" name="path_to_trajectory" output="screen">
<remap from="input" to="/planning/scenario_planning/lane_driving/behavior_planning/path_with_lane_id"/>
<remap from="output" to="/planning/scenario_planning/trajectory"/>
<!-- 減速度 -->
<param name="deceleration" value="-10.0"/>
<!-- ピットの何メートル前で速度を0にするか -->
<param name="stop_offset" value="3.0"/>
<!-- 最高速度 -->
<param name="max_speed" value="30.0"/>
<!-- trajecotryの点の間隔 -->

Check warning on line 106 in aichallenge/workspace/src/aichallenge_submit/booars_launch/launch/components/planning.launch.xml

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (trajecotry)
<param name="traj_width" value="1.0"/>
</node>

Expand Down

0 comments on commit 233f48a

Please sign in to comment.