geopackage-ts
    Preparing search index...

    Interface AttributeTable

    Represents an attribute (non-spatial) user data table in a GeoPackage.

    This interface extends UserTable without adding any additional properties, since attribute tables have no geometry column.

    interface AttributeTable {
        columns: UserColumn[];
        pkColumnName: string;
        tableName: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    columns: UserColumn[]

    The ordered list of column definitions for this table.

    pkColumnName: string

    The name of the primary key column.

    tableName: string

    The name of the table in the GeoPackage database.