-
Notifications
You must be signed in to change notification settings - Fork 91
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
[DO NOT MERGE]planner_cspace: update planner_3d to not replan before switchback #448
Closed
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Fill `header.frame_id` of the path messages without poses.
* Suppress compile warnings and test with -Werror. * Workaround for invalid macro name bug in PCL(<1.8.1).
Navigation simulation test randomly timed out due to the load increase of the travis-ci. This commit adds -O2 to speed up planning on tests.
* Check that given goal is on the map.
also fix to use a timer instead of ros::spinOnce polling
* Make costmap layers stackable * Use stackable costmap in the test
* Move cost accessor to accessor class and remove self namespace * Use ROS_ASSERT instead of assert * Remove spin function
* Add layer type flag * Add layer type check
* Add stacked costmap class * Add Costmap3dLayerOutput class
* Make costmap layer structure configurable * Use output layer to publish static cspace costmap * Enable multi layer mode in sample launch * Refactoring - Move layer classes into include/costmap_3d_layer/ - Remove layer type specific variables and functions from base class - Fix indent of sample launch file
* Make static layers configurable * Fix naming style of map_overlay_mode and add string to enum converter * Add a static layer to the sample launch
If an overlay map arrives before a root map, overlay map was ignored since frame_id of the root map is not yet given. The commit enables to store overlay map and keep until receiving the root map.
* Added ABORTED state of move_base action * Added test for ABORTED state of move_base action * Passed roslint * Fixed reviewed points
* Update changelog * 0.5.1 Co-authored-by: Atsushi Watanabe <atsushi.w@ieee.org>
* Use fixed frame for accumulating input cloud * Update tests * Minimize tf delay influence * Rename variable
* Update changelog * 0.6.0
Use walltime to detect test timeout.
* Update changelog * 0.7.0 Co-authored-by: Atsushi Watanabe <atsushi.w@ieee.org>
planner_cspace_msgs >= 0.7.0 trajectory_tracker_msgs >= 0.8.0
…les (#446) * Replan immediately when path is blocked by new obstacles * Fix test_abort * Use costmap to check obstacle on previous path
* Update changelog * 0.8.0 Co-authored-by: Atsushi Watanabe <atsushi.w@ieee.org>
[#1284] FAILED on kineticTest failed
[#1284] FAILED on melodicTest failed
|
Codecov Report
@@ Coverage Diff @@
## master #448 +/- ##
==========================================
- Coverage 80.11% 79.81% -0.31%
==========================================
Files 64 64
Lines 4516 4538 +22
==========================================
+ Hits 3618 3622 +4
- Misses 898 916 +18
Continue to review full report at Codecov.
|
[#1285] FAILED on kineticTest failed
[#1285] FAILED on melodicTest failed
|
[#1286] PASSED on kineticAll tests passed
|
Taka-Kazu
changed the title
planner_cspace: update planner_3d to not replan before switchback
[DO NOT MERGE]planner_cspace: update planner_3d to not replan before switchback
Mar 10, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
In this PR, I implemented that if
planner_3d
generates a path containing a switchback point, it will not replan until the robot reaches the vertex of the switchback.Currently,
planner_3d
does not replan forsw_wait
in addition to the normal interval if a path containing a switchback point is generated.However, it does not take into account whether the robot will actually reach the switchback point within that time.
So I changed
Planner3dNode::waitUntil()
so that it doesn't depend onsw_wait
, but does not replan until the robot reaches the switchback point.I think this PR is related to Issue #312.