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
- df_points: information per track point: longitude, latitude, altitude, timestamp, heart rate, cadence, speed
42
41
- df_laps: information per lap: lap number, start time, total distance, total elapsed time, max speed, max heart rate, average heart rate
42
+
- df_points: information per track point: longitude, latitude, altitude, timestamp, heart rate, cadence, speed, power, temperature
43
+
- Note the 'enhanced_speed' and 'enhanced_altitude' are also extracted. Where overlap exists with their default counterparts, values are identical. However, the default or enhanced speed/altitude fields may be empty depending on the device used to record ([detailed information](https://pkg.go.dev/github.com/tormoder/fit#RecordMsg)).
43
44
44
45
45
46
# Use Case 2: FIT to GPX
@@ -49,12 +50,12 @@ from fit2gpx import Converter
49
50
50
51
conv = Converter() # create standard converter object
51
52
```
52
-
Use case 2.1: convert a single fit file: fit_to_gpx()
53
+
Use case 2.1: convert a single FIT file: fit_to_gpx()
0 commit comments