Skip to content

Commit

Permalink
feat(planning_error_monitor): read params from yaml (#294)
Browse files Browse the repository at this point in the history
* feat(planning_error_monitor): read params from yaml

* fix(planning_error_monitor): fix the parameter to paramter in universe.

* fix: add units of some parameters in yaml
  • Loading branch information
kazuki527 committed Apr 25, 2022
1 parent 02e5e34 commit d7ed10b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/**:
ros__parameters:
# trajectory check
error_interval: 100.0 # error interval distance threshold [m]
error_curvature: 2.0 # error curvature threshold [rad/m]
error_sharp_angle: 0.785398 # error sharp angle threshold [rad]
ignore_too_close_points: 0.01 # ignore too close distance threshold [m]
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
<!-- planning_error_monitor -->
<group>
<include file="$(find-pkg-share planning_error_monitor)/launch/planning_error_monitor.launch.xml">
<!-- load config a file -->
<arg name="planning_error_monitor_param_path" value="$(find-pkg-share planning_launch)/config/planning_diagnostics/planning_error_monitor.param.yaml" />
</include>
</group>
</launch>

0 comments on commit d7ed10b

Please sign in to comment.