Interface GeoArrowAggregateRowExperimental

One decoded aggregate row: the group key plus every declared metric.

interface GeoArrowAggregateRow {
    key:
        | null
        | string
        | number
        | readonly [number, number];
    metrics: Readonly<Record<string, null | number>>;
}

Properties

Properties

key:
    | null
    | string
    | number
    | readonly [number, number]

Dictionary value, truncated timestamp in the source temporal unit, or [cellX, cellY]. null identifies the declared null group.

metrics: Readonly<Record<string, null | number>>

Metric values by declared name; null when a group had no non-null input.