SDK JS
    Preparing search index...

    Interface RiptInfo

    Self-describing metadata read from a RIPT tile header by RiptDecoder.inspect (and included on every RiptRaster).

    interface RiptInfo {
        bands: number;
        dtype: string;
        height: number;
        lossy: boolean;
        width: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    bands: number

    Number of channels (bands) per pixel; 1 for single-band rasters.

    dtype: string

    Element data type of the decoded pixels; one of RiptDataType. Typed as | string to forward-tolerate any type a newer codec build reports.

    height: number

    Raster height in pixels (rows).

    lossy: boolean

    true if the tile was encoded with lossy compression; false if lossless.

    width: number

    Raster width in pixels (columns).