-
Notifications
You must be signed in to change notification settings - Fork 178
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
Fix Indexing Error in Filter.py #21
base: master
Are you sure you want to change the base?
Conversation
When looking for the `global_costmap_topics`, I noticed that it would point towards the wrong index in the topic name thus not pulling down the robot's index number. This solution fixes that by shifting `litraIndx` one to the right.
@JDaniel41 Hi, JDaniel41, Have you successfully run this package under the ROS melodic? |
I have been able to run this under ROS Melodic. @GradyM2M |
@JDaniel41 I want to do similar work. But the code downloaded from the author does not work under ROS melodic. |
@GradyM2M Have you tried checking out my branch? It contains the version of the package I used for my project. If you check it out, I think it should work with Melodic. |
@JDaniel41 Hi, I have checked out your branch "patch-1", but it still doesn't work. Do you have any good method to solve it? |
What's the error you are getting? @GradyM2M |
@JDaniel41 When I run roslaunch rrt_exploration_tutorials multiple_simulated_house.launch, The TF is having no connected from robot_/odom to robot_/base_footprint correct. And when I run roslaunch rrt_exploration three_robots.launch, the three robots did not move? |
Hey @GradyM2M , is your issue solved? I am also facing same issue on ROS melodic, the robots are not moving. |
@phoenixrider12 Hi, I have solved the issue and you can compile the package: |
It's not working for me. The same issue occurs with this package also |
@phoenixrider12 What's the error you are getting? Is there any error message on the terminal? |
Nothing gets printed on terminal after "the map and global costmaps are received". |
Nothing gets published on topics /frontiers and /centroids also |
I think it may be caused by incomplete installation of some dependencies. Specifically, check whether slam-gmapping, move-base, map-server, navigation and other functional packages are installed. |
@JDaniel41 do you know what is the problem? |
When looking for the
global_costmap_topics
, I noticed that it would point towards the wrong index in the topic name thus not pulling down the robot's index number. This solution fixes that by shiftinglitraIndx
one to the right.Original Error