You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 8, 2025. It is now read-only.
Some of Garmin's Fitness devices offer the choice of Smart Recording or Every Second Recording.
215
+
216
+
Smart Recording records key points where the fitness device changes direction, speed, heart rate or elevation. This recording type records less track points and will potentially have gaps between timestamps of greater than one second.
217
+
218
+
You can force timestamps to be regular one second intervals by setting the option:
219
+
```php
220
+
$options = ['data_every_second' => true];
221
+
```
222
+
Missing timestamps will have data interpolated as per the ```fix_data``` option above.
223
+
224
+
If the ```fix_data``` option is not specified in conjunction with ```data_every_second``` then ```'fix_data' => ['all']``` is assumed.
225
+
226
+
*Note that you may experience degraded performance using the ```fix_data``` option. Improving the performance will be explored - it is likely the ```interpolateMissingData()``` function is sub-optimal.*
227
+
211
228
####Set Units
212
229
By default, **metric** units (identified in the table below) are assumed.
0 commit comments