Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to calculate distance while walking in android?

Tags:

I am developing a demo for my app, in which there are two buttons named as "START" and "STOP". When user taps on "START" he will start walking. What I want to do is make it so that when users tap "STOP" then the demo will calculate his distance between "START" and "STOP". If the user pressed "START" and pressed "STOP" without taking a single step, then it must show 0km or 0m. I don't have any idea how I should start this; please make a suggestion.

like image 597
rahul Avatar asked Mar 10 '14 05:03

rahul


People also ask

How can I Measure the distance I walk?

The most popular way to track your walking is through a tracking app on your smartphone. They can record your distance, the amount of steps taken and even your elevation whilst walking. You can also use a pedometer or wrist fitness band, which tracks your steps and most will work out the distance walked as well.

How can I calculate my mobile walking distance?

Mobile Phone GPS Apps In the ancient past (as in, just a few years ago) you needed a special GPS unit to measure walking distance via satellite technology. But now GPS is built into your smartphone and is used by walking apps that can track your speed and distance, such as MapMyWalk.


1 Answers

There are different ways to do this:

  1. GPS: Keep adding GPS distance between 2 points every X seconds (say 10 sec). Check Android Location.distanceTo or distanceBetween. Check My Tracks app, it is open source. GPS is not available indoors and would have error if user is changing direction very frequently (read every 1-2 second)
  2. Accelerometer: Look for code/library for step detection using accelerometer. Distance comes from double integration of acceleration, errors can add up very quickly here.
  3. Step detector: Built-in in Nexus 5. Google must have taken care of accelerometer errors to extent possible. This is hardware-based computation, consumes less battery but not available in most of handsets as of date.

You can also check Pedestrian dead reckoning

like image 170
Sangharsh Avatar answered Sep 17 '22 10:09

Sangharsh