Nothing
#' @importFrom utils read.table
#' @importFrom magrittr %>%
#' @importFrom rlang !!!
#' @importFrom rlang %||%
#' @importFrom jsonlite read_json
perform_riem_request <- function(path, query = NULL) {
"https://mesonet.agron.iastate.edu/" %>%
httr2::request() %>%
httr2::req_url_path_append(path) %>%
httr2::req_url_query(!!!query) %>%
httr2::req_user_agent("riem (https://docs.ropensci.org/riem)") %>%
httr2::req_retry(max_tries = 3L, max_seconds = 120L) %>%
httr2::req_perform()
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.