Go to file
2025-03-16 20:04:19 +01:00
analyze_sport_data Added heart rate offset parameters to TCX and FIT file extraction functions. 2025-03-16 14:53:47 +01:00
tests Initial project structure. 2025-03-16 10:30:35 +01:00
.gitignore Initial project structure. 2025-03-16 10:30:35 +01:00
COPYING Initial project structure. 2025-03-16 10:30:35 +01:00
example.png Added example image. 2025-03-16 19:52:37 +01:00
example.py Example script now also looks for tcx files. 2025-03-16 14:46:04 +01:00
LICENSE.txt Initial project structure. 2025-03-16 10:30:35 +01:00
poetry.lock Initial project structure. 2025-03-16 10:30:35 +01:00
pyproject.toml Initial project structure. 2025-03-16 10:30:35 +01:00
README.md Added basic README. 2025-03-16 20:04:19 +01:00

Usage

A simple way to create a comparison:

# Clone this repository.
git clone https://github.com/StrajnarFilip/analyze-sport-data
# Change directory into repository.
cd analyze-sport-data/
# Copy any amount of FIT or TCX files into this directory.
cp /home/example/example.fit .
cp /home/example/example.tcx .
# Install this package.
python -m pip install .
# Alternatively you can install using poetry:
# poetry install

# Run included example.py script:
python example.py
# Alternatively you can run the script using poetry:
# poetry run python example.py

Example