R/bind_NOAA_ERA.R

Defines functions bind_NOAA_ERA

Documented in bind_NOAA_ERA

#' Binds NOAA GEFS and ERA5 weather data.
#'
#' Merges NOAA GEFS and ERA5 site weather data by sites.
#'
#' @param start Start date of dates requested
#' @return List of merged dataframes.
#' @export
bind_NOAA_ERA <- function(era_data, NOAA_data) {
  merged <- merge(era_data, NOAA_data)
  return(merged)
}
AgronomicForecastingLab/GEFS_pSIMS documentation built on Dec. 17, 2021, 7:44 a.m.