Add governed SPW bathymetry analysis
This commit is contained in:
@@ -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 }> =>
|
||||
|
||||
Reference in New Issue
Block a user