aemet_stations {climaemet} | R Documentation |
AEMET stations
Description
Get AEMET stations.
Usage
aemet_stations(verbose = FALSE, return_sf = FALSE)
Arguments
verbose |
Logical |
return_sf |
Logical |
Details
The first result of the API call on each session is (temporarily) cached in
the assigned tempdir()
for avoiding unneeded API calls.
Value
API Key
You need to set your API Key globally using aemet_api_key()
.
Note
Code modified from project https://github.com/SevillaR/aemet.
See Also
Other aemet_api_data:
aemet_beaches()
,
aemet_daily_clim()
,
aemet_extremes_clim()
,
aemet_forecast_beaches()
,
aemet_forecast_daily()
,
aemet_last_obs()
,
aemet_monthly
,
aemet_normal
Examples
library(tibble)
stations <- aemet_stations()
stations
# Cached during this R session
stations2 <- aemet_stations(verbose = TRUE)
identical(stations, stations2)
[Package climaemet version 1.3.0 Index]