Interface GeoparquetColumnarQueryInput<T>Experimental

interface GeoparquetColumnarQueryInput<T> {
    batchId: string;
    featureIdColumn?: string;
    identity: ColumnarBatchIdentityV1;
    limits?: GeoParquetNativeGeometryLimits;
    query?: Query<T>;
    rowOffset?: number;
    sequence: number;
}

Type Parameters

  • T = Record<string, unknown>

Properties

batchId: string
featureIdColumn?: string

Optional integer column projected as the batch's uint32 feature ids. It is the only attribute this first columnar slice carries beside the geometry.

Plan-derived batch identity. Produce it with columnarBatchIdentityFromPlan from @honua/sdk-js/query-planner; this path has no placeholder identity.

query?: Query<T>
rowOffset?: number
sequence: number