Interface SpatialAggregationCell

interface SpatialAggregationCell {
    centroid?: readonly [number, number];
    extent?: HonuaExtent;
    geometry?: null | Record<string, unknown>;
    groups?: readonly SpatialAggregationGroupedSummary[];
    id: string;
    parentId?: string;
    partial?: boolean;
    resolution?: number;
    summaries: Readonly<Record<string, SpatialAggregationSummaryValue>>;
}

Properties

centroid?: readonly [number, number]
extent?: HonuaExtent
geometry?: null | Record<string, unknown>
id: string
parentId?: string
partial?: boolean
resolution?: number
summaries: Readonly<Record<string, SpatialAggregationSummaryValue>>