我有原始数据x, y, z
,但我不知道如何计算 G 力、急刹车和加速。我正在开发一个应用程序,我需要收集急刹车和加速数据,所以请你帮我找到一种计算方法。
谢谢
这是我的代码:
constructor(props) {
super(props);
setUpdateIntervalForType(SensorTypes.accelerometer, 200);
this.accelSubscription = accelerometer.subscribe(({x, y, z, timestamp}) => {
this.setState({
accel_x: x,
accel_y: y,
accel_z: z,
time: timestamp,
});
});
this.state = {
acceleration: 0,
accel_x: 0,
accel_y: 0,
accel_z: 0,
time: 0,
speed: 0,
};
}