Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 1.25 KB

File metadata and controls

39 lines (26 loc) · 1.25 KB

RasterStacker

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. ## Inputs The RasterStacker operator expects multiple raster inputs.

Properties

Name Type
type string
params RasterStackerParameters
sources MultipleRasterSources

Example

import type { RasterStacker } from '@geoengine/api-client'

// TODO: Update the object below with actual values
const example = {
  "type": null,
  "params": null,
  "sources": null,
} satisfies RasterStacker

console.log(example)

// Convert the instance to a JSON string
const exampleJSON: string = JSON.stringify(example)
console.log(exampleJSON)

// Parse the JSON string back to an object
const exampleParsed = JSON.parse(exampleJSON) as RasterStacker
console.log(exampleParsed)

[Back to top] [Back to API list] [Back to Model list] [Back to README]