CAL
CAL copied to clipboard
Unable to generate metric
I am trying to find out jerk as reported in the paper.
From CAL_Agent i get accelerations self._state.long_accel, self._state.lat_accel = self._get_accel(measurements, psi)
I get the gametimestamp from measurements (milli seconds which i convert to seconds). And calculate rate of change of acceleration( a2-a1/t2-t1 ) . After that the RMS of the values.
The results i get are as follows : CenterLine Median : 0.3286 Longitudanal Jerk : 56.20890123726442 Lat Jerk Straight : 1.8073971749622317 Lat Jerk Turn : 2.1365939223220813
Which deviate too much from the paper. Any help would be appreciated.