Inversion: Fix #13.
parent
bcdae43d10
commit
8dd50f9373
|
|
@ -1725,9 +1725,14 @@ class AcousticInversionTab(QWidget):
|
|||
results.append(
|
||||
pd.DataFrame(
|
||||
{
|
||||
'Time (sec)': t, 'Depth (m)': r,
|
||||
'SSC_fine (g/L)': stg.SSC_fine[k].reshape(t.shape[0]),
|
||||
'SSC_sand (g/L)': stg.SSC_sand[k].reshape(t.shape[0]),
|
||||
'Time (sec)': list(t),
|
||||
'Depth (m)': list(r),
|
||||
'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])
|
||||
),
|
||||
}
|
||||
)
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in New Issue