-
Notifications
You must be signed in to change notification settings - Fork 197
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -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``. | ||||||
|
||||||
:``<source name>``.topic: | ||||||
|
||||||
|
@@ -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. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
:``<source name>``.enabled: | ||||||
|
||||||
============== ============================= | ||||||
|
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -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: | ||||||
|
||||||
============== ============================= | ||||||
|
@@ -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: | ||||||
|
||||||
|
@@ -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. | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
|
||||||
:``<source name>``.enabled: | ||||||
|
||||||
============== ============================= | ||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 |
There was a problem hiding this comment.
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