geotiff.js
    Preparing search index...

    Function registerTag

    • Registers a new field tag

      Parameters

      • tag: number

        the numeric tiff tag

      • name: string

        the name of the tag that will be reported in the IFD

      • type:
            | number
            | "BYTE"
            | "ASCII"
            | "SHORT"
            | "LONG"
            | "RATIONAL"
            | "SBYTE"
            | "UNDEFINED"
            | "SSHORT"
            | "SLONG"
            | "SRATIONAL"
            | "FLOAT"
            | "DOUBLE"
            | "IFD"
            | "LONG8"
            | "SLONG8"
            | "IFD8"
            | undefined

        the tags data type

      • isArray: boolean = false

        whether the tag is an array

      • Optionaleager: boolean = false

        whether to eagerly fetch deferred fields. When false (default), tags are loaded lazily on-demand. When true, all tags are loaded immediately during parsing.

      Returns void