FIMViz.jsAPI
    Preparing search index...

    A decoded raster: the pixel grid plus the geometry needed to place and read it. This is what a RasterLayer draws and what alignRasters/comparison consume — the anonymous { pixels, meta } shape that was already passed around everywhere, now a named value type.

    Index
    • Parameters

      • init: {
            bands?: number;
            bounds?: { east: number; north: number; south: number; west: number };
            crs?: string;
            height: number;
            meta?: any;
            noData?: string | number;
            pixels: ArrayBufferView<ArrayBufferLike>;
            width: number;
        } = {}
        • Optionalbands?: number
        • Optionalbounds?: { east: number; north: number; south: number; west: number }

          in crs

        • Optionalcrs?: string
        • height: number
        • Optionalmeta?: any

          carried through from the Dataset (GDAL legend/unit, …)

        • OptionalnoData?: string | number
        • pixels: ArrayBufferView<ArrayBufferLike>

          the decoded band-0 pixel array (typed array)

        • width: number

      Returns RasterGrid

    bands: number
    bounds: { east: number; north: number; south: number; west: number }
    crs: string
    height: number
    kind: string
    meta: any
    noData: string | number
    pixels: ArrayBufferView<ArrayBufferLike>
    width: number