Interface GeoArrowAggregateGridGroupSpecExperimental

Group by a regular grid cell derived from the geometry column.

interface GeoArrowAggregateGridGroupSpec {
    cellSize: number | readonly [number, number];
    kind: "grid";
    origin?: readonly [number, number];
}

Properties

Properties

cellSize: number | readonly [number, number]

Cell size in source CRS units: one positive number, or [x, y].

kind
origin?: readonly [number, number]

Grid origin in source CRS units. Defaults to [0, 0].