geopackage-ts
    Preparing search index...

    Interface FeatureTable

    Represents a GeoPackage feature table, extending UserTable with geometry-specific metadata.

    A feature table is a user table that contains a geometry column for storing spatial data (e.g., points, lines, polygons) encoded as GeoPackage binary geometry blobs.

    const featureTable: FeatureTable = {
    tableName: 'buildings',
    columns: [...],
    pkColumnName: 'id',
    geometryColumnName: 'geometry',
    };
    interface FeatureTable {
        columns: UserColumn[];
        geometryColumnName: string;
        pkColumnName: string;
        tableName: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    columns: UserColumn[]

    The ordered list of column definitions for this table.

    geometryColumnName: string

    The name of the column that stores geometry data (typically a BLOB column).

    pkColumnName: string

    The name of the primary key column.

    tableName: string

    The name of the table in the GeoPackage database.