I am just a beginner in the application development industry. I know the accelerometer can be used to return the current acceleration along three axis in meters per second squared (m/s2). But I have come to know that an accelerometer can also be use as speedometer.

I want to know how I can use accelerometer to determine distance traveled by Android device between points of interest. If it is possible, then how can I implement it? I have seen a similar question "how do I measure the distance traveled by an Iphone using accelerometer" How do I measure the distance traveled by an iPhone using the accelerometer?. But I didn't come to a point.

Thank You, Arslan

link|improve this question

14% accept rate
possible duplicate of How can I find the velocity using accelerometers only? – Aleadam Jun 15 '11 at 4:31
feedback

2 Answers

You get position by integrating the linear acceleration twice but the error is horrible. It is useless in practice.

Here is an explanation why (Google Tech Talk) at 23:20. I highly recommend this video.

Similar questions:

track small movements of iphone with no GPS
What is the real world accuracy of phone accelerometers when used for positioning?
how to calculate phone's movement in the vertical direction from rest?
iOS: Movement Precision in 3D Space

link|improve this answer
Thank you Ali its of great use – Arslan Ahmad Jun 16 '11 at 5:15
feedback

Here is a link : http://kristoph.minchau.com/Robotics/Resources/distance_with_accelerometer.html , hope it helps.

link|improve this answer
1  
Only works if your current speed is known at the time your application starts. That's a theoretical constraint, not a constraint of this particular method as acceleration measures "change of speed". Thinking more about it, you may also have to filter out gravity. – Carsten Jun 15 '11 at 4:19
feedback

Your Answer

 
or
required, but never shown

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