From 847c252ef3b04ce0c499831392d7b3391c0d9df4 Mon Sep 17 00:00:00 2001 From: "Edgar P. Burkhart" Date: Fri, 11 Mar 2022 15:20:29 +0100 Subject: [PATCH] Add zero filled poro --- data/processing/projection.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/data/processing/projection.py b/data/processing/projection.py index c0de89e..dbf8adf 100644 --- a/data/processing/projection.py +++ b/data/processing/projection.py @@ -99,4 +99,7 @@ z[flt_x] = interpolate.griddata( (x[flt_x] - x[z_crossing] + bathy_hires[hires_crossing, 0]), ) - +np.savetxt(out_root.joinpath("bathy.dat"), z, newline=" ") +np.savetxt(out_root.joinpath("hstru.dat"), np.zeros(z.shape), newline=" ") +np.savetxt(out_root.joinpath("poro.dat"), np.zeros(z.shape), newline=" ") +np.savetxt(out_root.joinpath("psize.dat"), np.zeros(z.shape), newline=" ")