Switched genfromtxt to loadtxt
This commit is contained in:
parent
3707db4080
commit
232ece2c28
2 changed files with 3 additions and 2 deletions
|
@ -63,7 +63,7 @@ log.info("Interpolating bathymetry in 1D")
|
|||
z = interpolate.griddata(bathy[:, :2], bathy[:, 2], coords)
|
||||
log.debug(f"z: {z}")
|
||||
|
||||
_hires = np.genfromtxt(hires_inp)[::-1]
|
||||
_hires = np.loadtxt(hires_inp)[::-1]
|
||||
bathy_hires = np.stack(
|
||||
(
|
||||
np.linspace(
|
||||
|
|
Reference in a new issue