Interface GeoArrowBatchInspectionExperimental

Validated typed views that alias the batch's own backing buffers.

interface GeoArrowBatchInspection {
    batch: ColumnarBatchV1;
    dictionary?: GeoArrowDictionaryBuffers;
    featureIds?: {
        field: string;
        values: Uint32Array;
    };
    geometry: GeoArrowGeometryBuffers;
    metrics: GeoArrowConversionMetrics;
    temporal?: GeoArrowTemporalBuffers;
}

Properties

featureIds?: {
    field: string;
    values: Uint32Array;
}