Aggregate regional bathymetry partitions
This commit is contained in:
@@ -180,6 +180,14 @@ export const datasetsApi = {
|
||||
),
|
||||
acquireBathymetryProfiles: (projectId: string, payload: BathymetryProfileAcquireRequest): Promise<JobRead> =>
|
||||
apiPost<JobRead>(`/api/v1/projects/${projectId}/datasets/bathymetry/profiles/acquire`, payload),
|
||||
selectBathymetryProfilePartitions: (
|
||||
projectId: string,
|
||||
payload: VectorSelectionRequest,
|
||||
): Promise<VectorSelectionResponse> =>
|
||||
apiPost<VectorSelectionResponse>(
|
||||
`/api/v1/projects/${projectId}/datasets/bathymetry/profiles/partitions/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