Learn R Programming

climaemet (version 1.0.1)

aemet_monthly: Monthly/annual climatology

Description

Get monthly/annual climatology values for a station or all the stations. aemet_monthly_period() and aemet_monthly_period_all() allows requests that span several years.

Usage

aemet_monthly_clim(
  station = NULL,
  year = 2020,
  verbose = FALSE,
  return_sf = FALSE
)

aemet_monthly_period( station = NULL, start = 2018, end = 2020, verbose = FALSE, return_sf = FALSE )

aemet_monthly_period_all( start = 2019, end = 2020, verbose = FALSE, return_sf = FALSE )

Arguments

station

Character string with station identifier code(s) (see aemet_stations())

year

Numeric value as date (format: YYYY).

verbose

Logical TRUE/FALSE. Provides information about the flow of information between the client and server.

return_sf

Logical TRUE or FALSE. Should the function return an sf spatial object? If FALSE (the default value) it returns a tibble. Note that you need to have the sf package installed.

start

Numeric value as start year (format: YYYY).

end

Numeric value as end year (format: YYYY).

Value

A tibble or a sf object

API Key

You need to set your API Key globally using aemet_api_key().

See Also

Other aemet_api_data: aemet_daily_clim(), aemet_extremes_clim(), aemet_last_obs(), aemet_normal, aemet_stations()

Examples

Run this code
# NOT RUN {
library(tibble)
obs <- aemet_monthly_clim(station = c("9434", "3195"), year = 2000)
glimpse(obs)
# }

Run the code above in your browser using DataLab