geopackage-ts
    Preparing search index...

    Interface UserRow

    Represents a single row of data within a GeoPackage user table.

    A user row associates a UserTable schema definition with a key-value record of column values. Column names serve as keys in the values record.

    const row: UserRow = {
    table: myTable,
    values: { id: 1, name: 'Sample Feature', geometry: someBlob },
    };
    interface UserRow {
        table: UserTable;
        values: Record<string, unknown>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    table: UserTable

    The table schema definition that this row belongs to.

    values: Record<string, unknown>

    A record mapping column names to their values for this row.