Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Description: The 'FIT' (Flexible and Interoperable Data Transfer)
devices. This package allows reading 'FIT' files in pure R without any
dependence on external software or SDKs.
URL: https://github.com/grimbough/FITfileR
Depends: R (>= 3.5.0)
Depends: R (>= 4.1)
Imports: dplyr, tibble, magrittr, methods, bit64
Suggests: knitr,
rmarkdown,
Expand Down
8 changes: 7 additions & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
---
output: github_document
---

<!-- README.md is generated from README.Rmd. Please edit that file -->

# FITfileR

`r badger::badge_custom("dev version", as.character(packageVersion("FITfileR")), "blue", "https://github.com/grimbough/FITfileR")`
[![R CMD check](https://github.com/grimbough/FITfileR/workflows/R-CMD-check/badge.svg)](https://github.com/grimbough/FITfileR/actions)
[![R-CMD-check](https://github.com/grimbough/FITfileR/actions/workflows/main.yml/badge.svg)](https://github.com/grimbough/FITfileR/actions/workflows/main.yml)
[![codecov](https://codecov.io/github/grimbough/FITfileR/branch/fit-class/graphs/badge.svg)](https://codecov.io/github/grimbough/FITfileR)

**FITfileR** is an R package to read FIT files produced by fitness tracking devices like cycling computers or sports watches. The intention for **FITfileR** is to use native R code to read the files directly, with no reliance on the FIT SDK or other FIT parsing tools. As such it should be platform independent, and not require any additional software outside of a working version of R.
Expand Down
18 changes: 11 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@

<!-- README.md is generated from README.Rmd. Please edit that file -->

# FITfileR

[![](https://img.shields.io/badge/dev%20version-0.1.7-blue.svg)](https://github.com/grimbough/FITfileR)
[![R CMD
check](https://github.com/grimbough/FITfileR/workflows/R-CMD-check/badge.svg)](https://github.com/grimbough/FITfileR/actions)
[![](https://img.shields.io/badge/dev%20version-0.1.8-blue.svg)](https://github.com/grimbough/FITfileR)
[![R-CMD-check](https://github.com/grimbough/FITfileR/actions/workflows/main.yml/badge.svg)](https://github.com/grimbough/FITfileR/actions/workflows/main.yml)
[![codecov](https://codecov.io/github/grimbough/FITfileR/branch/fit-class/graphs/badge.svg)](https://codecov.io/github/grimbough/FITfileR)

**FITfileR** is an R package to read FIT files produced by fitness
Expand All @@ -25,10 +27,12 @@ Currently **FITfileR** is only available on Github, and can be installed
using the **[remotes](https://cran.r-project.org/package=remotes)
package.**

if(!requireNamespace("remotes")) {
install.packages("remotes")
}
remotes::install_github("grimbough/FITfileR")
``` r
if(!requireNamespace("remotes")) {
install.packages("remotes")
}
remotes::install_github("grimbough/FITfileR")
```

# Usage

Expand Down