Usage
lsat_image(x, overwrite = FALSE, ...)
Arguments
- x
(character) A file name for a geotif file, will be more general soon.
- overwrite
(logical) Will only overwrite existing path if TRUE
.
Deprecated, will be removed in the next version. If file exists we return
that path so there's no chance of overwriting
- ...
Curl args passed on to crul::HttpClient()
Value
Path to the file, whether found in cache or new file
requested.
Examples
if (FALSE) {
# pass an image name
(res <- lsat_list(max = 40))
tifs <- grep("\\.TIF$", res$Key, value = TRUE)
lsat_image(tifs[5])
lsat_image(tifs[6])
lsat_image(tifs[9])
# caching
## requesting an image you already have will return path if found
lsat_image(tifs[5])
}