athl_fun {rStrava} | R Documentation |
Get data for an athlete
Description
Get data for an athlete by web scraping, does not require authentication.
Usage
athl_fun(athl_num, trace = TRUE)
Arguments
athl_num |
numeric vector of athlete id(s) used by Strava |
trace |
logical indicating if output is returned to console |
Details
The athlete id is assigned to the user during registration with Strava and this must be known to use the function. Some users may have privacy settings that prevent public access to account information (a message indicating as such will be returned by the function). The function scrapes data using the following URL with the appended athlete id, e.g., https://www.strava.com/athletes/2837007. Opening the URL in a web browser can verify if the data can be scraped. Logging in to the Strava account on the website may also be required before using this function.
Value
A list for each athlete, where each element is an additional list with elements for the athlete's information. The list elements are named using the athlete id numbers.
Examples
## single athlete
athl_fun(2837007)
## multiple athletes
athl_fun(c(2837007, 2527465))