View source: R/tidy_reshape_meteo.R
worldmet2meteoland | R Documentation |
Adapting importNOAA
meteo objects to meteoland meteo objects
worldmet2meteoland(
meteo,
complete = FALSE,
params = defaultInterpolationParams()
)
meteo |
worldmet 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 importNOAA
meteo objects to
compatible meteoland meteo objects by selecting the needed variables and
adapting the names to comply with meteoland requirements. Also it aggregates
subdaily data as well as complete missing variables if possible (setting
complete = TRUE
)
a compatible meteo object to use with meteoland.
if (interactive()) {
# worldmet data
library(worldmet)
worldmet_stations <- worldmet::getMeta(lat = 42, lon = 0, n = 2, plot = FALSE)
worldmet_subdaily_2022 <-
worldmet::importNOAA(worldmet_stations$code, year = 2022, hourly = TRUE)
# just convert
worldmet2meteoland(worldmet_subdaily_2022)
# convert and complete
worldmet2meteoland(worldmet_subdaily_2022, complete = TRUE)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.