This function will download an entire archive from Zenodo (https://zenodo.org). It only works for Zenodo created DOI (not when the DOI is for example derived from Zookeys.)
download_zenodo(doi, path = ".", parallel = TRUE, quiet = FALSE)
a doi pointer to the Zenodo archive starting with '10.5281/zenodo.'. See examples.
Path where the data must be downloaded. Defaults to the working directory.
Logical.
If TRUE
(the default), files will be
downloaded concurrently for multi-file records.
Of course, the operation is limited by bandwidth and traffic limitations.
Logical (FALSE
by default).
Do you want to suppress informative messages (not warnings)?
Other download_functions:
download_knmi_data_hour()
,
extract_soil_map_data()
,
read_kmi_data()
,
read_kml_file()
,
read_knmi_data()
,
read_mow_data()
if (FALSE) {
# Example download of an archive containing a single zip
download_zenodo(doi = "10.5281/zenodo.1283345")
download_zenodo(doi = "10.5281/zenodo.1283345", quiet = TRUE)
# Example download of an archive containing multiple files
# using parallel download
# (multiple files will be simultaneously downloaded)
download_zenodo(doi = "10.5281/zenodo.1172801", parallel = TRUE)
# Example download of an archive containing a single pdf file
download_zenodo(doi = "10.5281/zenodo.168478")
}