ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

chandra8992's profile - activity

2023-02-06 07:17:15 -0500 received badge  Notable Question (source)
2023-02-06 07:17:15 -0500 received badge  Popular Question (source)
2021-07-25 04:27:08 -0500 received badge  Famous Question (source)
2021-07-25 04:27:08 -0500 received badge  Notable Question (source)
2021-01-07 16:13:51 -0500 received badge  Popular Question (source)
2021-01-06 02:01:25 -0500 asked a question transfer compiled code from ros kinetic to ros melodic

transfer compiled code from ros kinetic to ros melodic I have a compiled code for some packages built in ROS kinetic. I

2020-12-03 01:21:39 -0500 asked a question how to set matix as dynamic paramter in config file

how to set matix as dynamic paramter in config file I wanted to change the robot footprint in real time, similar to the

2020-11-17 01:05:43 -0500 received badge  Enthusiast
2020-11-09 08:50:23 -0500 asked a question recompute global plan based on the local planner feedback

recompute global plan based on the local planner feedback As per the wiki page for move_base(navigation), when the plann

2020-05-04 08:00:08 -0500 received badge  Famous Question (source)
2019-06-10 05:44:36 -0500 received badge  Famous Question (source)
2019-03-01 16:30:58 -0500 marked best answer I am making a custom global planner, I want to switch to the default global planner when the custom global fails to make a plan. Can you guys help me out on this?

I tried setting the parameter "/move_base/base_global_planner" as "global_planner/GlobalPlanner" when my custom planner fails to make a plan and return false in the function "makePlan" . But still keeps calling the same custom planner instead of the "global_planner/globalPlanner".

I have written below a piece of code from my custom global planner in the makePlan function,

    bool success = client.call(srv);
    if (!success)
    {
        ROS_ERROR_STREAM_THROTTLE(1, "Failed to call service planner");
        n.setParam("move_base/base_global_planner","global_planner/GlobalPlanner");
        return false;
    }

Please help me out on this, or any other alternative ways of switching the global planner.

2019-01-31 02:46:25 -0500 received badge  Notable Question (source)
2019-01-30 13:50:41 -0500 received badge  Popular Question (source)
2019-01-30 05:27:07 -0500 edited question I am trying to import tf in my python code, but it is throwing error "AttributeError: 'tuple' object has no attribute 'type'". please help me on this issue.

I am trying to import tf in my python code, but it is throwing error "AttributeError: 'tuple' object has no attribute 't

2019-01-30 05:25:55 -0500 asked a question I am trying to import tf in my python code, but it is throwing error "AttributeError: 'tuple' object has no attribute 'type'". please help me on this issue.

I am trying to import tf in my python code, but it is throwing error "AttributeError: 'tuple' object has no attribute 't

2019-01-18 09:10:05 -0500 received badge  Notable Question (source)
2018-08-25 22:51:35 -0500 received badge  Popular Question (source)
2018-08-25 01:14:39 -0500 commented answer I am making a custom global planner, I want to switch to the default global planner when the custom global fails to make a plan. Can you guys help me out on this?

Thanks. I will try it out.

2018-08-24 02:38:43 -0500 commented answer I am making a custom global planner, I want to switch to the default global planner when the custom global fails to make a plan. Can you guys help me out on this?

thanks, but actually I want to switch the global planner automatically, so is there any other way. I guess using dynamic

2018-08-23 05:38:31 -0500 asked a question I am making a custom global planner, I want to switch to the default global planner when the custom global fails to make a plan. Can you guys help me out on this?

I am making a custom global planner, I want to switch to the default global planner when the custom global fails to make