geotiff.js
    Preparing search index...

    Interface ReadRastersOptions

    interface ReadRastersOptions {
        fillValue?: number | number[];
        height?: number;
        interleave?: boolean;
        pool?: Pool | null;
        resampleMethod?: string;
        samples?: number[];
        signal?: AbortSignal;
        width?: number;
        window?: number[];
    }

    Properties

    fillValue?: number | number[]

    The value to use for parts of the image outside of the images extent. When multiple samples are requested and interleave is false, an array of fill values can be passed.

    height?: number

    The desired height of the output. When the width is not the same as the images, resampling will be performed.

    interleave?: boolean

    whether the data shall be read in one single array or separate arrays.

    pool?: Pool | null

    The optional decoder pool to use.

    resampleMethod?: string

    The desired resampling method.

    samples?: number[]

    the selection of samples to read from. Default is all samples. All samples if not specified.

    signal?: AbortSignal

    An AbortSignal that may be signalled if the request is to be aborted

    width?: number

    The desired width of the output. When the width is not the same as the images, resampling will be performed.

    window?: number[]

    the subset to read data from in pixels. Whole window if not specified.