# Sea-Explorer, delayed-mode raw (gli and pld1 files)
n <- 4 # number of files to download
urlRaw <- paste0(
"https://cproof.uvic.ca/gliderdata/deployments/",
"dfo-eva035/dfo-eva035-20190718/",
"delayed_raw/"
)
subs <- paste0("sea035.12.gli.sub.", 1:n)
raws <- paste0("sea035.12.pld1.raw.", 1:n)
for (i in 1:n) {
if (!file.exists(subs[i])) {
download.file(paste0(urlRaw, subs[i]), subs[i])
}
if (!file.exists(raws[i])) {
download.file(paste0(urlRaw, raws[i]), raws[i])
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.