Interface SpatialAggregationResult

interface SpatialAggregationResult {
    cells: readonly SpatialAggregationCell[];
    degraded?: readonly DegradedReason[];
    generatedAt?: string;
    groups?: readonly SpatialAggregationGroupedSummary[];
    index: SpatialAggregationIndexState;
    metadata: SpatialAggregationMetadata;
    page?: SpatialAggregationPageInfo;
    requestId?: string;
    schemaVersion: "honua.spatial-aggregation.v1";
    sourceId: string;
    totals?: Readonly<Record<string, SpatialAggregationSummaryValue>>;
}

Properties

cells: readonly SpatialAggregationCell[]
degraded?: readonly DegradedReason[]
generatedAt?: string
requestId?: string
schemaVersion
sourceId: string
totals?: Readonly<Record<string, SpatialAggregationSummaryValue>>