geoimport
    Preparing search index...

    Type Alias ToTableOptions

    Options for the toTable function.

    type ToTableOptions = {
        hasHeaders?: boolean;
        tableName?: string;
    }
    Index

    Properties

    hasHeaders?: boolean

    Whether the sheet to transform has headers. If true, the first line is read as headers. If false, the first line is read as data (and the column names are generated automatically as "Field1", "Field2", etc.). Default to true.

    tableName?: string

    The name of the table to extract (mandatory if the dataset contains multiple sheets).