View source: R/tidy_reshape_meteo.R
meteospain2meteoland | R Documentation |
Adapting meteospain meteo objects to meteoland meteo objects
meteospain2meteoland(
meteo,
complete = FALSE,
params = defaultInterpolationParams()
)
meteo |
meteospain meteo object. |
complete |
logical indicating if the meteo data missing variables should be calculated (if possible). Default to FALSE. |
params |
A list containing parameters for PET estimation. By default the result of |
This function converts meteospain
R package meteo objects to
compatible meteoland meteo objects by selecting the needed variables and
adapting the names to comply with meteoland requirements.
a compatible meteo object to use with meteoland.
if (interactive()) {
# meteospain data
library(meteospain)
mg_april_2022_data <- get_meteo_from(
"meteogalicia",
meteogalicia_options("daily", as.Date("2022-04-01"), as.Date("2022-04-30"))
)
# just convert
meteospain2meteoland(mg_april_2022_data)
# convert and complete
meteospain2meteoland(mg_april_2022_data, complete = TRUE)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.