Nothing
#' Download of wrf files
#'
#' @description
#' Download of WRF SMN data from AWS
#'
#' @usage wrf.download(wrf.name = wrf.name)
#'
#' @param wrf.name list of names to download from get.wrf.files. e.g.: "DATA/WRF/DET/2024/01/01/18/WRFDETAR_24H_20240101_18_000.nc"
#'
#' @import aws.s3
#' @return downloaded netcdf files
#'
#' @export
#'
wrf.download <- function(wrf.name = wrf.name){
for (i in 1:length(wrf.name))
{
save_object(
object = wrf.name[i],
bucket = "s3://smn-ar-wrf/",
region = "us-west-2",
file = substring(wrf.name[i], 28),
overwrite = TRUE)
}
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.