get_explore: Explore segments within a bounded area

View source: R/get_explore.R

get_exploreR Documentation

Explore segments within a bounded area

Description

Explore segments within a bounded area

Usage

get_explore(
  stoken,
  bounds,
  activity_type = "riding",
  max_cat = NULL,
  min_cat = NULL
)

Arguments

stoken

A config object created using the strava_oauth function

bounds

chr string representing the comma separated list of bounding box corners 'sw.lat,sw.lng,ne.lat,ne.lng' or 'south, west, north, east', see the example

activity_type

chr string indicating activity type, "riding" or "running"

max_cat

numeric indicating the maximum climbing category

min_cat

numeric indicating the minimum climbing category

Details

Requires authentication stoken using the strava_oauth function and a user-created API on the strava website.

Value

Data from an API request.

Examples

## Not run: 
# create authentication token
# requires user created app name, id, and secret from Strava website
stoken <- httr::config(token = strava_oauth(app_name, app_client_id, 
	app_secret, cache = TRUE))

bnds <- "37.821362, -122.505373, 37.842038, -122.465977"
get_explore(stoken, bnds)

## End(Not run)

fawda123/rStrava documentation built on March 27, 2024, 3:16 p.m.