feat: add semantic GIS selection metrics
GeoIntel CI / docs-smoke (push) Canceled after 0s
GeoIntel CI / contract-smoke (push) Canceled after 0s

This commit is contained in:
Codex
2026-07-15 06:07:34 +02:00
parent 3ff2d07f3c
commit 0baa9b069c
16 changed files with 520 additions and 22 deletions
+12
View File
@@ -349,9 +349,21 @@ export interface VectorSelectionSummary {
metric_value: number
metric_unit: string
aggregation_method: string
primary_metric_key?: string | null
feature_count: number
is_estimate: boolean
warning?: string | null
metrics?: VectorSelectionMetric[]
}
export interface VectorSelectionMetric {
metric_key: string
metric_label: string
metric_value: number
metric_unit: string
aggregation_method: string
is_estimate: boolean
warning?: string | null
}
export interface DatasetTemporalUpdate {