Skip to content

Commit

Permalink
astar params: add more comments and tune for speed
Browse files Browse the repository at this point in the history
  • Loading branch information
jlblancoc committed Sep 26, 2024
1 parent 58fe36f commit 695dda9
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions mrpt_tps_astar_planner/configs/params/planner-params.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,23 @@
# It is safe to use coarse lattice values, since a post-processing path
# refining stage will normally improve the result, with a very reduced overall
# time cost:
grid_resolution_xy: 0.15 # [meters]
grid_resolution_yaw: 15.0 # [deg]
grid_resolution_xy: 0.20 # [meters]
grid_resolution_yaw: 10.0 # [deg]

# find_feasible_paths_to_neighbors() params:
# Note: path refining will always use *all* PTG trajectories, despite this value
max_ptg_trajectories_to_explore: 41
max_ptg_trajectories_to_explore: 51
max_ptg_speeds_to_explore: 1
ptg_sample_timestamps: [0.5, 1.0] # seconds
ptg_sample_timestamps: [1.0, 2.0] # seconds

# Weight of heading towards the target:
# the larger, the most favorable to move "looking at" the target direction.
heuristic_heading_weight: 0.25
SE2_metricAngleWeight: 1.0
pathInterpolatedSegments: 5

maximumComputationTime: 90.0 # [seconds]
SE2_metricAngleWeight: 2.0
pathInterpolatedSegments: 3

maximumComputationTime: 10.0 # [seconds]

#saveDebugVisualizationDecimation: 1
debugVisualizationShowEdgeCosts: true

0 comments on commit 695dda9

Please sign in to comment.