Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs for #3885 and #3879 #478

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all 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
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ Observation sources parameters
============== =============================

Description:
Type of polygon shape. Could be ``scan``, ``pointcloud`` or ``range``.
Type of polygon shape. Could be ``scan``, ``pointcloud``, ``range`` or ``polygon``.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Explain what polygon names / is. Scan/PC2/Range are pretty clear from context but this deserves a note


:``<source name>``.topic:

Expand Down Expand Up @@ -275,6 +275,17 @@ Observation sources parameters
Description:
Angle increment (in radians) between nearby obstacle points at the range arc. Two outermost points from the field of view are not taken into account (they will always exist regardless of this value). Applicable for ``range`` type.

:``<source name>``.sampling_distance:

============== =============================
Type Default
-------------- -----------------------------
double 0.1
============== =============================

Description:
Internally the polygon is sampled for collision detection. sampling_distance is the distance between sampled points of the polygon. Applicable for ``polygon`` type.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Internally the polygon is sampled for collision detection. sampling_distance is the distance between sampled points of the polygon. Applicable for ``polygon`` type.
Internally the polygon is sampled for collision detection. sampling_distance is the distance between sampled points of the polygon. Applicable for ``polygon`` source type.


:``<source name>``.enabled:

============== =============================
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,6 @@ Parameters
Description:
List of zones (stop/slowdown/limit bounding boxes, footprint, approach circle, etc...). Causes an error, if not specialized.


:observation_sources:

============== =============================
Expand Down Expand Up @@ -367,7 +366,7 @@ Observation sources parameters
============== =============================

Description:
Type of polygon shape. Could be ``scan``, ``pointcloud`` or ``range``.
Type of polygon shape. Could be ``scan``, ``pointcloud``, ``range`` or ``polygon``.

:``<source name>``.topic:

Expand Down Expand Up @@ -413,6 +412,17 @@ Observation sources parameters
Description:
Angle increment (in radians) between nearby obstacle points at the range arc. Two outermost points from the field of view are not taken into account (they will always exist regardless of this value). Applicable for ``range`` type.

:``<source name>``.sampling_distance:

============== =============================
Type Default
-------------- -----------------------------
double 0.1
============== =============================

Description:
Internally the polygon is sampled for collision detection. sampling_distance is the distance between sampled points of the polygon. Applicable for ``polygon`` type.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Internally the polygon is sampled for collision detection. sampling_distance is the distance between sampled points of the polygon. Applicable for ``polygon`` type.
Internally the polygon is sampled for collision detection. sampling_distance is the distance between sampled points of the polygon. Applicable for ``polygon`` source type.


:``<source name>``.enabled:

============== =============================
Expand Down
7 changes: 6 additions & 1 deletion migration/Iron.rst
Original file line number Diff line number Diff line change
Expand Up @@ -117,4 +117,9 @@ The costmap activation fails when required transforms are not available
***********************************************************************

In this `PR #3866 <https://github.com/ros-planning/navigation2/pull/3866>`_ the parameter ``initial_transform_timeout`` is added to the costmap. The activation of the costmap now fails,
if the transformation from the robot base frame to the global frame does not become available during this timeout.
if the transformation from the robot base frame to the global frame does not become available during this timeout.

Publishing of collision points in collision monitor/detector for debugging purposes
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Missing adding the polygon source type

***********************************************************************************

In this `PR #3879 <https://github.com/ros-planning/navigation2/pull/3879>`_ the publishing of the collision points that will be considered by the configured polygons was added