The RasterStacker stacks all of its inputs into a single raster time-series. It does so by querying all of its inputs and outputting them by band, space and then time. The output raster will have as many bands as the sum of all input bands. The tiles are automatically temporally aligned.
RasterStacker
All inputs must have the same data type and spatial reference.
RenameBands
{ "type": "default" }
The following describes the types used in the parameters.
The RenameBands type is used to specify how to rename the bands to avoid conflicts.
{"type": "default"}
n
{"type": "suffix", "values": [string]}
{"type": "rename", "values": [string]}
The RasterStacker operator supports up to 8 raster inputs.
rasters
MultipleRasterSources
{ "type": "RasterStacker", "params": { "renameBands": { "type": "rename", "values": ["ndvi", "ndvi_masked"] } }, "sources": { "rasters": [ { "type": "GdalSource", "params": { "data": "ndvi" } }, { "type": "Expression", "params": { "expression": "if A > 100 { A } else { 0 }", "outputType": "U8", "mapNoData": false }, "sources": { "a": { "type": "GdalSource", "params": { "data": "ndvi" } } } } ] } }