Good morning everyone,

I currently have a robot with some sensors, like a GPS, an accelerometer and a compass. The thing I would like to do is my robot to reach a GPS coordinate that I enter. I wondered if any algorithm to do that already existed. I don't wan't a source code, which wouldn't have any point, just the procedure to follow for my robot to do so, for me to be able to understand what I do... At the moment, let's imagine that I can access the GPS coordinate everytime, so no need of a Kalman filter. I know it's unrealistic, but I would like to programm it step by step, and Kalman is the next step.

If anyone has an idea...

Have a nice day

Thank you

link|improve this question

50% accept rate
feedback

3 Answers

1) orient your robot toward its destination.

2) Move forward until the distance between you and your destination is increasing where you should go back to 1)

3) BUT ... if you are close enough (under a threshold), consider that you arrived at the destination.

link|improve this answer
Hi, thank you for your answer. I wondered how to calculate an azimuth from the GPS coordinates of the robots and its destination. I guess there's some calculations with longitude and latitude but I am unable to find it on google.. – NNzz May 14 '11 at 14:33
feedback

You can use the Location class. It's BearingTo function computes the bearing you have to follow to reach another location.

link|improve this answer
feedback

To get a bearing (positive angle east of north) between two lat-long points use:

bearing=mod(atan2(sin(lon2-lon1)*cos(lat2),(lat1)*sin(lat2)-sin(lat1)*cos(lat2)*cos(lon2-lon1)),2*pi)

Note - angles probably have to be in radians depending on your math package.

But for small distances you can just calculate how many metres in one degree of lat and long at your position and then treat them as flat X,Y coords.

For typical 45deg latitudes it's around 111.132 km/deg lat, 78.847 km/deg lon

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.