Skip to content
New issue

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

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

Already on GitHub? # to your account

Can't run two goals in a row #71

Closed
Marc-Morcos opened this issue Aug 17, 2024 · 17 comments
Closed

Can't run two goals in a row #71

Marc-Morcos opened this issue Aug 17, 2024 · 17 comments

Comments

@Marc-Morcos
Copy link
Contributor

If I run the demo,
replacing the main function of demo_coverage.py with

def main():
    rclpy.init()

    navigator = CoverageNavigatorTester()
    navigator.startup()

    # Some example field
    field = [[5.0, 5.0], [5.0, 8.0], [8.0, 8.0], [5.0, 5.0]]
    navigator.navigateCoverage(field)

    i = 0
    while not navigator.isTaskComplete():
        # Do something with the feedback
        i = i + 1
        feedback = navigator.getFeedback()
        if feedback and i % 5 == 0:
            print('Estimated time of arrival: ' + '{0:.0f}'.format(
                  Duration.from_msg(feedback.estimated_time_remaining).nanoseconds / 1e9)
                  + ' seconds.')
        time.sleep(1)

    # Do something depending on the return code
    result = navigator.getResult()
    if result == TaskResult.SUCCEEDED:
        print('Goal succeeded!')
    elif result == TaskResult.CANCELED:
        print('Goal was canceled!')
    elif result == TaskResult.FAILED:
        print('Goal failed!')
    else:
        print('Goal has an invalid return status!')

    field = [[6.0, 5.0], [5.0, 8.0], [8.0, 8.0], [6.0, 5.0]]

    navigator.navigateCoverage(field)

    i = 0
    while not navigator.isTaskComplete():
        # Do something with the feedback
        i = i + 1
        feedback = navigator.getFeedback()
        if feedback and i % 5 == 0:
            print('Estimated time of arrival: ' + '{0:.0f}'.format(
                  Duration.from_msg(feedback.estimated_time_remaining).nanoseconds / 1e9)
                  + ' seconds.')
        time.sleep(1)

    # Do something depending on the return code
    result = navigator.getResult()
    if result == TaskResult.SUCCEEDED:
        print('Goal succeeded!')
    elif result == TaskResult.CANCELED:
        print('Goal was canceled!')
    elif result == TaskResult.FAILED:
        print('Goal failed!')
    else:
        print('Goal has an invalid return status!')

I get the following error
[coverage_server]: Invalid GML File or Coordinates: Outer polygon malformed, first element must equal last!

@SteveMacenski
Copy link
Member

SteveMacenski commented Aug 19, 2024

I don't see any reason for that to be happening. Adding some prints in to see what's being sent might be helpful. I believe I see that the goal_msg and field is reallocated each call, so it should work fine from the client perspective - nothing should be stored between calls to navigateCoverage. This all pretty much follows Nav2's simple commander API boilerplate that we have tests for multiple requests with, but perhaps there's a subtle mistake here that I'm not seeing.

@Marc-Morcos
Copy link
Contributor Author

Just to add to this. It works fine if I send the exact same goal twice. But if I change the first and last point, it breaks.

@SteveMacenski
Copy link
Member

Print out the goal_msg and see what it says. If its right, then the issue is on the server side. If its wrong, then its something in the python.

@Marc-Morcos
Copy link
Contributor Author

Marc-Morcos commented Aug 19, 2024

image

First goal: Polygon points: [geometry_msgs.msg.Point32(x=5.0, y=5.0, z=0.0), geometry_msgs.msg.Point32(x=5.0, y=8.0, z=0.0), geometry_msgs.msg.Point32(x=8.0, y=8.0, z=0.0), geometry_msgs.msg.Point32(x=5.0, y=5.0, z=0.0)]

Second goal: Polygon points: [geometry_msgs.msg.Point32(x=6.0, y=5.0, z=0.0), geometry_msgs.msg.Point32(x=5.0, y=8.0, z=0.0), geometry_msgs.msg.Point32(x=8.0, y=8.0, z=0.0), geometry_msgs.msg.Point32(x=6.0, y=5.0, z=0.0)]

@Marc-Morcos
Copy link
Contributor Author

Marc-Morcos commented Aug 19, 2024

I also tried setting RateController hz="1" instead of RateController hz="0.0000001" in the behavior tree but that didnt fix it

@Marc-Morcos
Copy link
Contributor Author

Marc-Morcos commented Aug 19, 2024

Actually, this pull request seems to reference this issue #43 .

fix polygons not being cleared in ComputeCoveragePathAction

@SteveMacenski
Copy link
Member

What does your logs say on https://github.com/open-navigation/opennav_coverage/blob/main/opennav_coverage_navigator/src/coverage_navigator.cpp#L210-L218?

Edit: Ah OK - want to submit that as a PR for just those changes needed?

@Marc-Morcos
Copy link
Contributor Author

Alright, I''ve made the pull request

@Marc-Morcos
Copy link
Contributor Author

I would also like to backport to iron, how would I go about that?

@SteveMacenski
Copy link
Member

Cherry pick and open a PR against iron/humble :-)

@Marc-Morcos
Copy link
Contributor Author

Alright, I made a PR to backport a few of my other PR's

@SteveMacenski
Copy link
Member

@Marc-Morcos can you do humble too while you're at it?

@Marc-Morcos
Copy link
Contributor Author

Marc-Morcos commented Aug 19, 2024

I could, but I wont have a valid environment to test it, so I probably shouldn't right?

@SteveMacenski
Copy link
Member

SteveMacenski commented Aug 19, 2024

No problem - I'll put it on my queue

@shawnhanna
Copy link

shawnhanna commented Jan 30, 2025

@SteveMacenski - Is there any way we can get this backported to the humble branch? I am seeing issues when I run multiple coverages in a row and this fixed the issue. Confirmed on my robot testing IRL

Happy to help with testing or doing the PR if you'd prefer

@SteveMacenski
Copy link
Member

@shawnhanna feel free to open the PR, I should be able to merge it in < 1 hr

@shawnhanna
Copy link

Added. Thanks @SteveMacenski

#84

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants