Inversion: Fix #13.
parent
bcdae43d10
commit
8dd50f9373
|
|
@ -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])
|
||||||
|
),
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue