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

MariaKrgr's profile - activity

2020-03-12 09:09:53 -0500 received badge  Famous Question (source)
2020-03-12 09:09:53 -0500 received badge  Notable Question (source)
2020-01-03 09:35:50 -0500 received badge  Famous Question (source)
2019-01-17 12:29:39 -0500 received badge  Famous Question (source)
2018-06-23 13:24:09 -0500 received badge  Famous Question (source)
2018-06-14 03:53:28 -0500 received badge  Famous Question (source)
2018-01-11 06:26:31 -0500 received badge  Notable Question (source)
2017-11-28 12:57:59 -0500 marked best answer ERROR: Is the robot out of the map?

Hello, I use nav2d in a real robot with kinect. But when I call /StartMapping, there is an error:

ERROR: Is the robot out of the map?

Here is a print screen of the costmap and my costmap.yaml.

Any ideas about what's wrong? print screen

(when i had a similar problem with navigation_stack I remember that I moved the origin_x and origin_y of the costmap, but I think nav2d does not have such parameters)

2017-08-24 05:11:42 -0500 commented answer update ros wiki link to my package after renaming it

Just for the record, package documentation was rebuild and updated within 3 days.

2017-08-22 04:43:46 -0500 commented answer update ros wiki link to my package after renaming it

thank you for the advices! I will be waiting for three days to see any rebuild in doc jobs..

2017-08-22 04:40:11 -0500 marked best answer update ros wiki link to my package after renaming it

Hello to everyone.

I have successfully added my package to rosdistro for indigo and kinetic. I renamed the directory name to match the package name I gave to it..

Should I do something more, so that the ros documentation status in ros wiki link to be updated?
Because it's still says

"Cannot load information on name: muse_bldc_motor_drive, distro: indigo, which means that it is not yet in our index. Please see this page for information on how to submit your repository to our index."

Here is my repository https://bitbucket.org/muserobotics/mu... Here is the documentation link I have already wrote http://wiki.ros.org/muse_bldc_motor_d...

2017-08-22 03:58:54 -0500 received badge  Popular Question (source)
2017-08-21 07:11:18 -0500 edited question update ros wiki link to my package after renaming it

update ros wiki link to my package after renaming it Hello to everyone. I have successfully added my package to rosdist

2017-08-21 07:10:33 -0500 asked a question update ros wiki link to my package after renaming it

update ros wiki link to my package after renaming it Hello to everyone. I have successfully added my package to rosdistr

2017-04-20 16:15:46 -0500 marked best answer global costmap is rotated compared to the map

Hello there. I use navigation stack to perform autonomous navigation in known map. I got help from this tutorial http://wiki.ros.org/navigation/Tutori... but, as you can see in the picture below, global costmap is rotated compared to the map. The degrees are not fixed, other times it's 90 degrees, other times 180, or ~40 compared to the map. Everything else (goal pose, local path, global path) is working right according to generated costmaps. Any thoughts?

image description

2017-04-20 15:16:14 -0500 marked best answer SLAM - detect initial position

Hello there, I just performed SLAM with navigation_stack and V-REP simulator. As I know for know, we should give initial position of the robot so that AMCL performs localization and costmaps are generated properly.

My question is: Is there a way to skip the procedure of the user giving the initial position?

2017-03-30 11:19:57 -0500 received badge  Notable Question (source)
2017-01-06 13:05:45 -0500 received badge  Notable Question (source)
2017-01-01 00:15:38 -0500 received badge  Notable Question (source)
2017-01-01 00:14:01 -0500 received badge  Famous Question (source)
2016-12-19 10:44:37 -0500 received badge  Famous Question (source)
2016-11-29 17:58:58 -0500 received badge  Popular Question (source)
2016-11-26 19:01:47 -0500 received badge  Famous Question (source)
2016-09-05 08:28:32 -0500 received badge  Popular Question (source)
2016-09-05 07:51:33 -0500 answered a question missing symbol from libroscpp.so?

After a long search I found out that there is an ABI incompatibility between ROS Indigo and later ROS distros in libroscpp.so library.

2016-09-05 07:50:10 -0500 received badge  Scholar (source)
2016-09-02 07:49:18 -0500 asked a question missing symbol from libroscpp.so?

Hello there,

I built a ROS package in Ubuntu 14.04 LTS and ROS Indigo and now I test these executables that I built in different Linux and ROS distributions. Giving an example, when I setup a VM with Ubuntu 12.04 LTS and ROS Hydro everything worked fine.

Now I am trying to run my package in Ubuntu 16.04 LTS and ROS Kinetic and I am getting this error:

maria@maria-VirtualBox:~/devel/lib/execDir$ ./executableName 
./executableName: symbol lookup error: ./executableName: undefined symbol: _ZN3ros4initERiPPcRKSsj

and when I filter the symbol:

maria@maria-VirtualBox:~/devel/lib/execDir$ echo _ZN3ros4initERiPPcRKSsj|c++filt
ros::init(int&, char**, std::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, unsigned int)

Also If i search for this symbol in libroscpp.so in ROS Indigo I can find it, but in Kinetic I do not!

Any ideas?

2016-08-02 06:16:46 -0500 received badge  Famous Question (source)
2016-07-25 13:43:14 -0500 received badge  Popular Question (source)
2016-07-22 12:50:58 -0500 received badge  Notable Question (source)
2016-07-01 11:31:10 -0500 received badge  Notable Question (source)
2016-06-23 04:38:37 -0500 received badge  Famous Question (source)
2016-06-02 05:02:08 -0500 commented answer costmap updating issue

I uploaded a

.gif

from simulation

2016-06-02 04:58:42 -0500 commented answer costmap updating issue

it does a similar thing even in the simulation, where I take odometry from V-REP simulator..

2016-06-01 02:11:21 -0500 received badge  Notable Question (source)
2016-05-31 07:34:43 -0500 received badge  Popular Question (source)
2016-05-30 08:34:13 -0500 commented question costmap updating issue

The basic map in /map topic is correct, so I guess it's not an odometry issue, but a parameter in costmap.yaml maybe or in another .yaml file...

2016-05-30 08:27:48 -0500 asked a question costmap updating issue

Hello, I use nav2d package for SLAM on a real robot. All of a sudden costmap building has an issue while updating.. I have uploaded a .gif because it's difficult to describe it:

via GIPHY

It's like the costmap is correct in a small square around the robot, and beyond that square the costmap goes bad.

The weird thing is that I didn't have that issue before some days, and I cannot find which of the things that I changed broke the costmap! I guess it's a parameter but I cannot detect it.

2016-05-27 07:09:43 -0500 commented answer Parameters do not updated until I rerun roscore

Ok today updating parameters works for some magic reason.. Thank you for your time

2016-05-27 06:46:03 -0500 received badge  Popular Question (source)