Interface ColumnarBatchToResultOptionsExperimental

Explicit conversion window. There is no unbounded mode.

interface ColumnarBatchToResultOptions {
    limit?: number;
    limits?: GeoArrowConversionLimits;
    maxFeatures: number;
    offset?: number;
    telemetry?: ColumnarTelemetry;
}

Hierarchy (view full)

Properties

limit?: number

Rows to convert from offset. Defaults to the rest of the batch.

Structural limits forwarded to batch inspection.

maxFeatures: number

Hard ceiling on converted features. Required: conversion refuses rather than materializing an unbounded number of feature objects.

offset?: number

Zero-based first row of the window. Defaults to the start of the batch.

telemetry?: ColumnarTelemetry

Optional observer. Off by default: no surface constructs one, and with no sink the observed path costs exactly what it costs without this module.