We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The code below causes an error if I pull too many variables at a time.
sc_names <- sc_get_params('name')[1:600] %>% paste(collapse = ',')
sc_get_data(metric = sc_names, state = '2509407', aoi = 'ws')
Error in httr2::req_perform(): ! HTTP 400 Bad Request. Run rlang::last_trace() to see where the error occurred.
httr2::req_perform()
rlang::last_trace()
Fewer variables but more locations also causes the error: sc_names <- sc_get_params('name')[1:300] %>% paste(collapse = ',')
sc_get_data(metric = sc_names, comid = 'KY,TN,NC,SC,GA,AL,MS,FL', aoi = 'ws')
The text was updated successfully, but these errors were encountered:
mhweber
No branches or pull requests
The code below causes an error if I pull too many variables at a time.
sc_names <- sc_get_params('name')[1:600] %>%
paste(collapse = ',')
sc_get_data(metric = sc_names,
state = '2509407',
aoi = 'ws')
Error in
httr2::req_perform()
:! HTTP 400 Bad Request.
Run
rlang::last_trace()
to see where the error occurred.Fewer variables but more locations also causes the error:
sc_names <- sc_get_params('name')[1:300] %>%
paste(collapse = ',')
sc_get_data(metric = sc_names,
comid = 'KY,TN,NC,SC,GA,AL,MS,FL',
aoi = 'ws')
The text was updated successfully, but these errors were encountered: