Open pankhurivanjani opened 4 years ago
Hi @ngyewch,
I went through the changes made by you in UnityROS2 and my scripts are also exactly the same except for some syntax part. So, above all things have been done.
I am keeping next goals :
Removing AMCL totally and relying on robot-localization package only.
Changing the frequency of GPS data in navsat transform, I kept 30.0 in my scripts you have it as 10.0, I will experiment with more frequencies to see what works out better.
Currently, the navigation failed while giving some 2D nav goals, I was thinking to look into parameters (not sure if this one is right to do now)
In current setup we have an obstacle in the map, but instead we should have a geographical boundary as virtual obstacle. So, I will create new map for putting in our system, removing the obstacles in our unity environment for testing. (basically creating few tests)
Creating ros script for giving waypoint navigation (ros2 script or planner from navigation stack), instead of doing it by 2D nav_goal in rviz.
Last but not the least, documenting above stuff as @tbkoay suggested in last meeting.
@rajmis , @ngyewch, @tbkoay does this sound good to you, or do you have anything else in mind too?
- Changing the frequency of GPS data in navsat transform, I kept 30.0 in my scripts you have it as 10.0, I will experiment with more frequencies to see what works out better.
I'm not the expert on this, but from what I've read the update rate is typically 1Hz. But with some devices it can be 5-10Hz.
- Currently, the navigation failed while giving some 2D nav goals, I was thinking to look into parameters (not sure if this one is right to do now)
Not quite sure what you mean here. Which experiment are you referring to?
I'm not the expert on this, but from what I've read the update rate is typically 1Hz. But with some devices it can be 5-10Hz.
Hmm.. I checked it by changing frequency, in simulation I don't see much of difference and yeah if we think from an device's frequency it doesn't make sense to make it 30 if it's around 1Hz
Not quite sure what you mean here. Which experiment are you referring to? I meant to modify parameters (like safe distance which robot is maintaining from virtual obstacle) and many others similarly to see if it affects the performance.
I was referring to nav failures in some cases where robot could go more nearer to the boundary but since it's safe distance maintaining parameter is bit large, it started spinning and nav failed. I observed this while running few trials with new map which has boundary instead of virtual obstacle.
I was referring to nav failures in some cases where robot could go more nearer to the boundary but since it's safe distance maintaining parameter is bit large, it started spinning and nav failed. I observed this while running few trials with new map which has boundary instead of virtual obstacle.
Any videos of that?
Instead of by default amcl package, integrate kalman filter based robot localization package: Steps for this:
( PR approved for official ros package: #556 )
Update navigation parameter file by replacing AMCL with robot_localization package (done)
Integrate above things to visualize in rviz by mapping appropriate ros topics in the final config file, matching with that from data publishing topics.