Learn R Programming

rStrava (version 1.3.1)

chk_nopolyline: Remove activities with no geographic data

Description

Remove activities with no geographic data, usually manual entries

Usage

chk_nopolyline(act_data, ...)

# S3 method for actframe chk_nopolyline(act_data, ...)

Value

act_data with rows removed where no polylines were available, the original dataseset is returned if none were found. A warning is also returned indicating the row numbers that were removed if applicable.

Arguments

act_data

a data.frame returned by compile_activities

...

arguments passed to or from other methods

Author

Marcus Beck

Details

This function is used internally within get_elev_prof and get_heat_map to remove activities that cannot be plotted because they have no geographic information. This usually applies to activities that were manually entered.

Examples

Run this code
if (FALSE) {
# get my activities
stoken <- httr::config(token = strava_oauth(app_name, app_client_id, app_secret, cache = TRUE))
my_acts <- get_activity_list(stoken)
act_data <- compile_activities(my_acts)
chk_nopolyline(act_data)
}

Run the code above in your browser using DataLab