geopackage-ts
    Preparing search index...

    Interface FeatureRow

    Represents a single row from a GeoPackage feature table.

    Extends UserRow by narrowing the table property to a FeatureTable, which includes geometry column metadata.

    const featureRow: FeatureRow = {
    table: myFeatureTable,
    values: { id: 1, geometry: geomBlob, name: 'Building A' },
    };
    interface FeatureRow {
        table: FeatureTable;
        values: Record<string, unknown>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    The feature table definition that this row belongs to.

    values: Record<string, unknown>

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