ee_data_image.Rd
ee_data_image()
and ee_data_collection()
are used to define the requested earth enigne data for the ee_grab()
function.
ee_data_image(datasetID = "CGIAR/SRTM90_V4", spatialReducer = "mean", scale = 3000, bandSelection = NULL)
datasetID |
|
---|---|
spatialReducer |
|
scale |
|
bandSelection |
|
object of class list
that defines the data request for ee_grab()
.
In Earth Engine raster data is stored as an Image
object.
Images are composed of one or more bands and each band has its own name, data type, scale, mask and projection. A time series or stack of Images is stored as an Image Collection.
To request data from an Image use ee_data_image()
to define the request.
To request data from a time series of Images stored in an Image Collection use ee_data_collection()
instead.