Add governed SPW bathymetry analysis
GeoIntel release gates / Compile, test, contracts and builds (push) Canceled after 0s
GeoIntel release gates / Python and npm vulnerability policy (push) Canceled after 0s
GeoIntel release gates / GIS image, SBOM and container scan (push) Canceled after 0s

This commit is contained in:
Codex
2026-07-19 04:07:01 +02:00
parent ae3d3dc634
commit 70c5e34ecf
37 changed files with 1852 additions and 102 deletions
+10
View File
@@ -23,6 +23,7 @@ import type {
FloodHazardProductRead,
FloodHazardSelectionResponse,
BathymetryProfileAcquireRequest,
BathymetryRasterSelectionResponse,
BathymetrySourceProbeRead,
BathymetrySourceRead,
DhmvProductRead,
@@ -206,6 +207,15 @@ export const datasetsApi = {
`/api/v1/projects/${projectId}/datasets/bathymetry/profiles/partitions/select`,
payload,
),
selectBathymetryRaster: (
projectId: string,
datasetId: string,
payload: { bbox: VectorSelectionRequest['bbox']; area_id?: string },
): Promise<BathymetryRasterSelectionResponse> =>
apiPost<BathymetryRasterSelectionResponse>(
`/api/v1/projects/${projectId}/datasets/${datasetId}/raster/bathymetry/select`,
payload,
),
acquireThematicRaster: (projectId: string, payload: ThematicRasterAcquireRequest): Promise<JobRead> =>
apiPost<JobRead>(`/api/v1/projects/${projectId}/datasets/thematic-raster/acquire`, payload),
listThematicRasterProducts: (projectId: string): Promise<{ items: ThematicRasterProductRead[]; total: number }> =>