lsat_image: Get Landsat image(s)

Description Usage Arguments Value See Also Examples

Description

Get Landsat image(s)

Usage

1
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.

See Also

lsat_cache()

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
## Not run: 
# 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])

## End(Not run)

getlandsat documentation built on May 2, 2019, 2:37 a.m.