show/hide this revision's text 2 a != |a|

One solution that would take into account the issue of wind resistance is you could use the difference between acceleration from gravity and your actual norm of acceleration you're reading,

d2x / dt2 = g - |a|

Where g = 9.8 and a |a| = sqrt(a12 + a22 + a32) where an are the readings from the accellerometer on each axis.

Then solve the differential equation numerically, with something like Euler's Method.

You could even be clever and lookup local value of g using GPS.

show/hide this revision's text 1

One solution that would take into account the issue of wind resistance is you could use the difference between acceleration from gravity and your actual norm of acceleration you're reading,

d2x / dt2 = g - |a|

Where g = 9.8 and a = sqrt(a12 + a22 + a32) where an are the readings from the accellerometer on each axis.

Then solve the differential equation numerically, with something like Euler's Method.

You could even be clever and lookup local value of g using GPS.