getlandsat-package: getlandsat - get Landsat 8 data from AWS public data sets

getlandsat-packageR Documentation

getlandsat - get Landsat 8 data from AWS public data sets

Description

getlandsat provides access to Landsat https://landsat.usgs.gov 8 metadata and images hosted on AWS S3 at https://registry.opendata.aws/landsat-8/. The package only fetches data. It does not attempt to aid users in downstream usage.

Examples

## Not run: 
## List scenes
(res <- lsat_scenes(n_max = 10))

## List scene files
lsat_scene_files(x = res$download_url[1])

## Get an image
### Returns path to the image
lsat_image(x = "LC80101172015002LGN00_B5.TIF")

## Visualize
if (requireNamespace("raster")) {
  library("raster")
  x <- lsat_cache_details()[[1]]
  img <- raster(x$file)
  plot(img)
}

## End(Not run)

ropenscilabs/getlandsat documentation built on Sept. 12, 2022, 4:08 p.m.