feat: engineer SBAS timeseries production workflow

This commit is contained in:
2026-04-29 14:43:31 +08:00
parent dace8b20f6
commit 4c0d1f2c2b
54 changed files with 5843 additions and 201 deletions
+2
View File
@@ -8,6 +8,7 @@ export const useBatchStore = create((set) => ({
dinsarBatches: [],
psBatches: [],
selectedBatchId: '',
pendingTimeseriesBatchId: '',
batchItems: [],
batchLoading: false,
batchError: '',
@@ -15,6 +16,7 @@ export const useBatchStore = create((set) => ({
setDinsarBatches: s(set, 'dinsarBatches'),
setPsBatches: s(set, 'psBatches'),
setSelectedBatchId: s(set, 'selectedBatchId'),
setPendingTimeseriesBatchId: s(set, 'pendingTimeseriesBatchId'),
setBatchItems: s(set, 'batchItems'),
setBatchLoading: s(set, 'batchLoading'),
setBatchError: s(set, 'batchError'),