Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion configuration/packages/costmap-plugins/obstacle.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,18 @@ Obstacle Layer Parameters
====== =======

Description
Enum for method to add data to master costmap, default to maximum.
Enum for method to add data to master costmap. Must be 0, 1 or 2, default to 1 (see below).

| 0 - Overwrite: Overwrite master costmap with every valid observation.

| 1 - Max: Sets the new value to the maximum of the master_grid's value and this layer's value.
| If the master value is NO_INFORMATION, it is overwritten. This is the default.
Comment thread
SteveMacenski marked this conversation as resolved.
Outdated

| 2 - MaxWithoutUnknownOverwrite: Sets the new value to the maximum of the master_grid's
| value and this layer's value. If the master value is NO_INFORMATION, it is NOT overwritten.
| It can be used to make sure that the static map is the dominant source of information, and
| prevent the robot to go through places that are not present in the static map.


:``<obstacle layer>``.observation_sources:

Expand Down
12 changes: 11 additions & 1 deletion configuration/packages/costmap-plugins/voxel.rst
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,17 @@ Voxel Layer Parameters
====== =======

Description
Enum for method to add data to master costmap, default to maximum.
Enum for method to add data to master costmap. Must be 0, 1 or 2, default to 1 (see below).

| 0 - Overwrite: Overwrite master costmap with every valid observation.

| 1 - Max: Sets the new value to the maximum of the master_grid's value and this layer's value.
| If the master value is NO_INFORMATION, it is overwritten. This is the default.
Comment thread
SteveMacenski marked this conversation as resolved.
Outdated

| 2 - MaxWithoutUnknownOverwrite: Sets the new value to the maximum of the master_grid's
| value and this layer's value. If the master value is NO_INFORMATION, it is NOT overwritten.
| It can be used to make sure that the static map is the dominant source of information, and
| prevent the robot to go through places that are not present in the static map.

:``<voxel layer>``.publish_voxel_map:

Expand Down