Skip to content

Raster Stacker

The RasterStacker stacks all of its inputs into a single raster time series. It queries all inputs and combines them by band, space, and then time.

The output raster has as many bands as the sum of all input bands. Tiles are automatically temporally aligned.

All inputs must have the same data type and spatial reference.

The RasterStacker operator expects multiple raster inputs.

NameTypeDescriptionExamples
renameBandsRenameBandsStrategy for deriving output band names.

- default: appends (n) with the smallest n that avoids a conflict.
- suffix: appends one suffix per input.
- rename: explicitly provides names for all resulting bands.
NameTypeDescription
rastersarray
{
"type": "RasterStacker",
"params": {
"renameBands": {
"type": "default"
}
},
"sources": {
"rasters": [
{
"type": "GdalSource",
"params": {
"data": "example-a"
}
},
{
"type": "GdalSource",
"params": {
"data": "example-b"
}
}
]
}
}