I know that my question may be already asked I apologize in advance. I would like to find a python library of a way to visualize the 3D trajectory (position x,y z) of an accelerometer sensor fixed to an object falling from the sky. I only have the time, x(g), y(g) and z(g).
Exemple of data
time;x(g);y(g);z(g)
0,005;-0,048;0;1,056
0,006;0;0;1,104
0,007;-0,048;0;1,056
0,008;0;0,048;1,104
0,009;-0,048;0;1,056
0,01;-0,048;0;1,056
0,011;-0,048;0;1,008
Exemple of curve for z(g)
I found solutions but they all needed data from a gyroscope sensor.
Do you have any ideas / library to create a visualisation of the 3D trajectory (position x,y,z depending of the time) of my object falling ?
Thanks a lot