Browse Source

Merge pull request #62 from hello-robot/bugfix/reduce_nav_inflation

Reduce robot/inflation radius for Stretch Navigation
pull/64/head
Binit Shah 2 years ago
committed by GitHub
parent
commit
548335c230
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 8 additions and 5 deletions
  1. +2
    -2
      stretch_navigation/config/common_costmap_params.yaml
  2. +1
    -1
      stretch_navigation/config/global_costmap_params_nomap.yaml
  3. +1
    -1
      stretch_navigation/config/global_costmap_params_withmap.yaml
  4. +1
    -1
      stretch_navigation/config/local_costmap_params.yaml
  5. +3
    -0
      stretch_navigation/launch/navigation.launch

+ 2
- 2
stretch_navigation/config/common_costmap_params.yaml View File

@ -1,7 +1,7 @@
obstacle_range: 2.5
raytrace_range: 3.0
robot_radius: 0.5
inflation_radius: 0.55
robot_radius: 0.2
inflation_radius: 0.22
observation_sources: laser_scan_sensor

+ 1
- 1
stretch_navigation/config/global_costmap_params_nomap.yaml View File

@ -1,5 +1,5 @@
global_costmap:
global_frame: map
robot_base_frame: base_link
robot_base_frame: centered_base_link
update_frequency: 5.0
static_map: false

+ 1
- 1
stretch_navigation/config/global_costmap_params_withmap.yaml View File

@ -1,5 +1,5 @@
global_costmap:
global_frame: map
robot_base_frame: base_link
robot_base_frame: centered_base_link
update_frequency: 5.0
static_map: true

+ 1
- 1
stretch_navigation/config/local_costmap_params.yaml View File

@ -1,6 +1,6 @@
local_costmap:
global_frame: map
robot_base_frame: base_link
robot_base_frame: centered_base_link
update_frequency: 5.0
publish_frequency: 2.0
static_map: false

+ 3
- 0
stretch_navigation/launch/navigation.launch View File

@ -8,6 +8,9 @@
<param name="/stretch_driver/mode" type="string" value="navigation" />
<include file="$(find stretch_core)/launch/stretch_driver.launch" pass_all_args="true"/>
<!-- CENTERED BASE LINK -->
<node name="centered_base_link_tf_publisher" pkg="tf" type="static_transform_publisher" args="-0.1 0 0 0 0 0 1 /base_link /centered_base_link 100" />
<!-- LASER RANGE FINDER -->
<include file="$(find stretch_core)/launch/rplidar.launch" />

Loading…
Cancel
Save