feat: add governed hydrology and historical imagery
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 12:17:45 +02:00
parent 5b1156e989
commit fb38eb3e91
32 changed files with 1646 additions and 55 deletions
+25
View File
@@ -301,13 +301,31 @@ export interface VectorSelectionBBox {
export interface OrthophotoAcquireRequest {
bbox: VectorSelectionBBox
area_id?: string
product_key?: string
force_refresh?: boolean
}
export interface OrthophotoProductRead {
key: string
display_name: string
observation_label: string
temporal_granularity: string
native_resolution_m: number
supports_detection: boolean
color_mode: string
catalog_url: string
limitation_message: string
}
export interface OrthophotoAcquisitionResult {
output_dataset_id: string
reused: boolean
provider: string
product_key: string
display_name: string
observation_label: string
temporal_granularity: string
supports_detection: boolean
layer: string
width: number
height: number
@@ -318,6 +336,13 @@ export interface OrthophotoAcquisitionResult {
limitation_message: string
}
export interface MapImageOverlay {
url: string
bbox: [number, number, number, number]
label: string
opacity?: number
}
export interface MapViewportState {
bbox: VectorSelectionBBox
zoom: number