Add bounded GRB map acquisition
GeoIntel CI / docs-smoke (push) Canceled after 0s
GeoIntel CI / contract-smoke (push) Canceled after 0s

This commit is contained in:
Codex
2026-07-17 21:29:26 +02:00
parent 47cde21e17
commit 488da4cc83
28 changed files with 1644 additions and 134 deletions
+21
View File
@@ -362,6 +362,27 @@ export interface DhmvProductRead {
limitation_message: string
}
export interface GrbAcquireRequest {
bbox: VectorSelectionBBox
area_id?: string | null
product_key: 'buildings' | 'roads' | 'water' | 'parcels'
force_refresh?: boolean
}
export interface GrbProductRead {
key: 'buildings' | 'roads' | 'water' | 'parcels'
display_name: string
reference_layer_name: string
collections: string[]
geometry_types: string[]
source_crs: 'EPSG:4326'
authority_level: 'authoritative'
catalog_url: string
attribution: string
license_note: string
limitation_message: string
}
export interface TerrainSelectionResponse {
dataset_id: string
dataset_ids: string[]