gis-tools-ts - v0.6.0
    Preparing search index...

    Interface CDFVariable

    A NetCDF variable

    interface CDFVariable {
        attributes: CDFAttributes;
        dimensions: CDFDimension[];
        name: string;
        offset: number;
        record: boolean;
        size: number;
        type: CDFDataType;
    }
    Index

    Properties

    attributes: CDFAttributes

    Array with the attributes of the variable

    dimensions: CDFDimension[]

    Array with the dimension IDs of the variable

    name: string

    name of the variable

    offset: number

    offset where of the variable begins

    record: boolean

    True if is a record variable, false otherwise (unlimited size)

    size: number

    size of the variable

    type of the variable