We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a helper function that does something similar to this script:
pkg <- get_package(adc, 'resource_map_doi:10.5065/D61J97TT', file_names = T) pid_to_wget <- function(pid) { return(paste0('wget --no-check-certificate https://arcticdata.io/metacat/d1/mn/v2/object/', pid, ' -O ', names(pid), '\n')) } pids <- c(pkg$metadata, pkg$data) text <- vector('character', length(pids)) for (i in seq_along(pids)) { text[i] <- pid_to_wget(pids[i]) } formatted_text <- paste0(text, collapse = '') write(formatted_text, file = '/home/dmullen/Submissions/Merrelli/download.sh')
A couple more details are available here: NCEAS/arcticdatautils#145
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Add a helper function that does something similar to this script:
A couple more details are available here: NCEAS/arcticdatautils#145
The text was updated successfully, but these errors were encountered: