This function downloads full-sized or thumbnail images and media files using
information from atlas_media
to a local directory.
Arguments
- df
tibble
: returned byatlas_media()
or a pipe starting withrequest_data(type = "media")
.- thumbnail
logical
: IfTRUE
will download small thumbnail-sized images, rather than full size images (default).- path
string
: Usegalah_config(directory = "path-to-directory)"
instead. Supply a path to a local folder/directory where downloaded media will be saved to.
Value
Invisibly returns a tibble
listing the number of files downloaded,
grouped by their HTML status codes. Primarily called for the side effect of
downloading available image & media files to a user local directory.
Examples
if (FALSE) { # \dontrun{
# Use `atlas_media()` to return a `tibble` of records that contain media
x <- galah_call() |>
identify("perameles") |>
filter(year == 2015) |>
atlas_media()
# To download media files, add `collect_media()` to the end of a query
galah_config(directory = "media_files")
collect_media(x)
#' # post version 2.0, it is possible to run all steps in sequence
# first, get occurrences, making sure to include media fields:
occurrences_df <- request_data() |>
identify("Regent Honeyeater") |>
filter(!is.na(images), year == 2011) |>
select(group = "media") |>
collect()
# second, get media metadata
media_info <- request_metadata() |>
filter(media == occurrences_df) |>
collect()
# the two steps above + `right_join()` are synonmous with `atlas_media()`
# third, get images
request_files() |>
filter(media == media_df) |>
collect(thumbnail = TRUE)
# step three is synonymous with `collect_media()`
} # }