Skip to main content

Convert FIT, PWX and TCX files from a bike computer to CSV

Project description

bike2csv - Convert FIT, PWX and TCX files from a bike computer to CSV format

Parse any file obtained from a bike computer to a csv file. This packages supports the following file extensions: .fit, .FIT, .pwx and .tcx.

Installation

The package is available under pypi:

pip install bike2csv

Usage

This code unzips .gz files, then converts this unzipped (.fit, .FIT, .pwx or .tcx) file to a .csv file. The code is designed such that all different file extensions are converted to similar csv files (e.g. the same column names). This makes it easier for analyzing and merging the files later.

If your exported files have a .gz format, you can run the sample script underneath to unzip your files and convert them to csv.

import os
from bike2csv.converter import Converter

root = 'data/'
person = 'Albert Einstein'

path = dict(_path_zip = os.path.join(root, 'export', person), # where your .fit.gz files are saved
            _path_fit = os.path.join(root, 'fit', person), # where your .fit files will be saved
            _path_csv = os.path.join(root, 'csv', person)) # where the .csv files will be saved

converter = Converter(**path)

for file in converter.files:
    converter.convert(file)

If your exported files are not zipped anymore, you can run the following sample script to convert your files to csv. Note that the only difference is whether you give _path_zip to the Converter class. If you do not give it a _path_zip, it simply assumes your files are already unzipped.

import os
from bike2csv.converter import Converter

root = 'data/'
person = 'Albert Einstein'

path = dict(_path_fit = os.path.join(root, 'fit', person), # where your .fit files are be saved
            _path_csv = os.path.join(root, 'csv', person)) # where the .csv files will be saved

converter = Converter(**path)

for file in converter.files:
    converter.convert(file)

You can of course adjust the script as you please. A sample script can also be found under bin/run.py.

If you are running into problems, feel welcome to contact the author (evanweenen@ethz.ch).

Attribution

To read fit files in python, this package makes use of the fitparse package © David Cooper, Carey Metcalfe, 2021.

License

This code is © E. van Weenen, 2022, and it is made available under the MIT license enclosed with the software.

Over and above the legal restrictions imposed by this license, if you use this software for an academic publication then you are obliged to provide proper attribution.

E. van Weenen. bike2csv: Convert files from a bike computer to CSV, v0.1 (2022). github.com/evavanweenen/bike2csv.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bike2csv-0.1.4.tar.gz (7.9 kB view details)

Uploaded Source

File details

Details for the file bike2csv-0.1.4.tar.gz.

File metadata

  • Download URL: bike2csv-0.1.4.tar.gz
  • Upload date:
  • Size: 7.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.1 importlib_metadata/2.0.0 pkginfo/1.8.2 requests/2.25.0 requests-toolbelt/0.9.1 tqdm/4.52.0 CPython/3.7.5

File hashes

Hashes for bike2csv-0.1.4.tar.gz
Algorithm Hash digest
SHA256 b5474dc13b09a3a5bc550069de3fcb379ae5a8b082ea356b6a737830c246de1e
MD5 956eeada09daa70053c13107cbf631ae
BLAKE2b-256 f424d78fb63a8d6c8fb4331517aa8655727d152a157782ec58b3dd389bf5597b

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page