Interface GeoArrowAggregateMetricSpecExperimental

One declared output metric.

interface GeoArrowAggregateMetricSpec {
    column?: GeoArrowAggregateNumericColumn;
    kind: GeoArrowAggregateMetricKind;
    name: string;
}

Properties

Properties

Source column. Required for sum, min, max, and mean. Optional for count: omitted counts rows in the group, supplied counts non-null values.

name: string

Output field name. Must be unique and must not collide with a group field.