{"id":16572297,"url":"https://github.com/jonocarroll/runkeepr","last_synced_at":"2025-10-29T01:31:54.650Z","repository":{"id":9053635,"uuid":"58925956","full_name":"jonocarroll/runkeepR","owner":"jonocarroll","description":"Extract, plot, and analyse Runkeeper(TM) data.","archived":false,"fork":false,"pushed_at":"2022-02-04T13:02:44.000Z","size":12023,"stargazers_count":9,"open_issues_count":5,"forks_count":2,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-02-01T21:05:35.653Z","etag":null,"topics":["data-analysis","data-mining","gis","gpx","rstats","runkeeper"],"latest_commit_sha":null,"homepage":null,"language":"R","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jonocarroll.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-05-16T11:00:59.000Z","updated_at":"2022-03-24T23:22:13.000Z","dependencies_parsed_at":"2022-08-07T05:00:27.419Z","dependency_job_id":null,"html_url":"https://github.com/jonocarroll/runkeepR","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonocarroll%2FrunkeepR","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonocarroll%2FrunkeepR/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonocarroll%2FrunkeepR/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonocarroll%2FrunkeepR/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jonocarroll","download_url":"https://codeload.github.com/jonocarroll/runkeepR/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238758183,"owners_count":19525722,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["data-analysis","data-mining","gis","gpx","rstats","runkeeper"],"created_at":"2024-10-11T21:27:03.271Z","updated_at":"2025-10-29T01:31:54.038Z","avatar_url":"https://github.com/jonocarroll.png","language":"R","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Linux/Mac Travis Build Status](https://img.shields.io/travis/jonocarroll/runkeepR/master.svg?label=Mac%20OSX%20%26%20Linux)](https://travis-ci.org/jonocarroll/runkeepR)\n[![AppVeyor Build Status](https://img.shields.io/appveyor/ci/jonocarroll/runkeepR/master.svg?label=Windows)](https://ci.appveyor.com/project/jonocarroll/runkeepR)\n[![codecov](https://codecov.io/gh/jonocarroll/runkeepR/branch/master/graph/badge.svg)](https://codecov.io/gh/jonocarroll/runkeepR)\n[![GitHub forks](https://img.shields.io/github/forks/jonocarroll/runkeepR.svg)](https://github.com/jonocarroll/runkeepR/network)\n[![GitHub stars](https://img.shields.io/github/stars/jonocarroll/runkeepR.svg)](https://github.com/jonocarroll/runkeepR/stargazers)\n[![Twitter](https://img.shields.io/twitter/url/https/github.com/jonocarroll/runkeepR.svg?style=social)](https://twitter.com/intent/tweet?text=Wow:\u0026url=%5Bobject%20Object%5D)\n\n# \u003cimg src=\"https://d2b4ufapzmnxpw.cloudfront.net/build/13556/static/web/images/rk_app_logo_blue_150x142.png\"\u003e runkeepR\n\nExtract, plot, and analyse Runkeeper(TM) data.\n\n## Installation:\n\nAssuming the TravisCI badges above are green (_i.e._ the current build is stable) this package can be installed via\n\n    devtools::install_github(\"jonocarroll/runkeepR\")\n    \nor\n\n    pacman::p_load_gh(\"jonocarroll/runkeepR\")\n\n## Usage\n\nload the installed package\n\n    library(runkeepR)\n    \nYou can get a zipped export of your Runkeeper(TM) data from the [logged-in settings page on Runkeeper's website](https://runkeeper.com/exportDataForm), _e.g._ `runkeeper-data-export-12517482-2016-05-20-1550.zip`.\n    \n\u003cimg src=\"https://github.com/jonocarroll/runkeepR/blob/master/inst/img/runkeeper_export.png?height=600\"\u003e\n    \nSave the `.zip` file to a directory (e.g. `~/runkeepR-test/`) and unzip the contents (mainly `.gpx` files and a couple of `.csv` files). Set this directory as your working directory in `R`.\n\n    setwd(\"~/runkeepR-test/\") ## set directory to location of .gpx files\n\nLoading and processing the route information contained in the `.gpx` and `.csv` files into a data.frame is as simple as\n    \n    routes \u003c- load_tracks(\".\")\n    save(routes, file=\"saved_routes.rds\") ## save the data to avoid re-processing\n\nThe data can be plotted either with `ggplot` \n\n    load(\"saved_routes.rds\")\n    plot_ggplot(routes, center=\"Adelaide, Australia\", zoom=14)\n\n\u003cimg src=\"https://github.com/jonocarroll/runkeepR/blob/master/inst/img/all_data_ggplot.png?height=600\"\u003e\n\nor `leaflet`; this plots all paths but is clever about which ones to load depending on the current viewport, so it's faster. \n\n    load(\"saved_routes.rds\")\n    plot_leaflet(routes)\n\n\u003cimg src=\"https://github.com/jonocarroll/runkeepR/blob/master/inst/img/all_data_leaflet.png?height=600\"\u003e\n\u003cimg src=\"https://github.com/jonocarroll/runkeepR/blob/master/inst/img/all_data_leaflet_home.png?height=600\"\u003e\n\nSummary statistics can be viewed \n\n    summarise_runs(routes, dashboard=FALSE)\n\nand presented in a `shinydashboard`\n\n    summarise_runs(routes)\n\nsummarised either monthly \n\n\u003cimg src=\"https://github.com/jonocarroll/runkeepR/blob/master/inst/img/shiny_dashboard_monthly.png?height=600\"\u003e\n\nor daily\n\n\u003cimg src=\"https://github.com/jonocarroll/runkeepR/blob/master/inst/img/shiny_dashboard_daily.png?height=600\"\u003e\n\nNot affiliated with Runkeeper(TM). Runkeeper(TM) logo © FitnessKeeper 2016\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjonocarroll%2Frunkeepr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjonocarroll%2Frunkeepr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjonocarroll%2Frunkeepr/lists"}