Inversion: Fix #13.

dev-brahim
Pierre-Antoine 2025-03-11 15:12:31 +01:00
parent bcdae43d10
commit 8dd50f9373
1 changed files with 8 additions and 3 deletions

View File

@ -1725,9 +1725,14 @@ class AcousticInversionTab(QWidget):
results.append( results.append(
pd.DataFrame( pd.DataFrame(
{ {
'Time (sec)': t, 'Depth (m)': r, 'Time (sec)': list(t),
'SSC_fine (g/L)': stg.SSC_fine[k].reshape(t.shape[0]), 'Depth (m)': list(r),
'SSC_sand (g/L)': stg.SSC_sand[k].reshape(t.shape[0]), 'SSC_fine (g/L)': list(
stg.SSC_fine[k].reshape(t.shape[0])
),
'SSC_sand (g/L)': list(
stg.SSC_sand[k].reshape(t.shape[0])
),
} }
) )
) )