โจ Detailed insights โข ๐ฆ Installation โข ๐ Usage โข ๐๏ธ Datasets โข ๐ Related packages/frameworks โข ๐ License
TCXReader.jl is a Julia package designed to simplify the process of reading and processing .tcx files, commonly used by Garmin devices and other GPS-enabled fitness devices to store workout data. This package allows Julia developers and data scientists to easily import, analyze, and transform training data for further analysis and visualization. With support for key TCX data elements such as track points, laps, activities, and device information, TCXReader.jl provides a comprehensive toolset for accessing the rich data captured during workouts.
- TCXReader is a Julia package that provides a simple interface for reading and processing .tcx files, commonly used by Garmin devices and other GPS-enabled fitness devices to store workout data.
- TCXActivity: Access metadata about the workout, including the activity type, start time, total distance, max speed, average/max heart rate, average/max cadence, average/max watts, total ascent, total descent, and max altitude.
- TCXAuthor: Retrieve information about the author of the workout, including name, build version, language ID, and part number.
- TCXLap: Retrieve information about laps within a workout, including start and end times, total distance, total time, and maximum speed.
- TCXTrackPoint: Access detailed information about each trackpoint in a workout, including time, latitude, longitude, altitude, heart rate, cadence, speed, and watts.
pkg> add TCXReader
using TCXReader: loadTCXFile
# Load a TCX file and access its data
author, activities = loadTCXFile("path/to/your/file.tcx")
using TCXReader: loadTCXFile
function main()
# Load a TCX file and access its data
author, activities = loadTCXFile("path/to/your/file.tcx")
# Display basic information about the workout's author
println("Author Information:")
println("Name: ", author.name)
println("Build Version: ", author.build.versionMajor, ".", author.build.versionMinor)
println("Language ID: ", author.langID)
println("Part Number: ", author.partNumber)
# Iterate through each activity in the TCX file
for activity in activities
println("\nActivity Information:")
println("Sport: ", activity.sport)
println("ID: ", activity.id)
println("Device Name: ", activity.device.name)
println("Device Version: ", activity.device.version)
# Display overall metrics for the activity
println("Total Time (seconds): ", activity.total_time)
println("Total Distance (meters): ", activity.total_distance)
println("Maximum Speed: ", activity.max_speed)
println("Total Calories: ", activity.total_calories)
println("Average Heart Rate (BPM): ", activity.avg_hr)
println("Maximum Heart Rate (BPM): ", activity.max_hr)
println("Average Cadence (Zero Averaging ON): ", activity.avg_cadence_zero_avg_on)
println("Average Cadence (Zero Averaging OFF): ", activity.avg_cadence_zero_avg_off)
println("Max Cadence: ", activity.max_cadence)
println("Average Speed: ", activity.avg_speed)
println("Total Ascent (meters): ", activity.total_ascent)
println("Total Descent (meters): ", activity.total_descent)
println("Max Altitude (meters): ", activity.max_altitude)
println("Average Watts (Zero Averaging ON): ", activity.avg_watts_zero_avg_on)
println("Average Watts (Zero Averaging OFF): ", activity.avg_watts_zero_avg_off)
println("Max Watts: ", activity.max_watts)
# Display information about each lap within the activity
println("\nLaps and Track Points:")
for (i, lap) in enumerate(activity.laps)
println("Lap #$i:")
println("\tStart Time: ", lap.startTime)
println("\tTotal Time Seconds: ", lap.totalTimeSeconds)
println("\tDistance Meters: ", lap.distanceMeters)
# Additional lap details here
end
end
# Optionally, export the loaded data to a CSV file for further analysis
loadTCXFile("path/to/your/file.tcx", "output_path/tcx_data_export.csv")
end
main()
Datasets available and used in the examples on the following links: DATASET1, DATASET2, DATASET3.
[1] tcxreader: Python reader/parser for Garmin's TCX file format.
[3] tcxread: A parser for TCX files written in Ruby
This package is distributed under the MIT License. This license can be found online at http://www.opensource.org/licenses/MIT.
This framework is provided as-is, and there are no guarantees that it fits your purposes or that it is bug-free. Use it at your own risk!