You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm getting this error when trying to read an egrid file, however checking the error seems to be a dimensionality error in the grid.py, more specifically the function init2df, this line init_df["PORV"] = porv_numpy[glob_idxs].reshape(-1, 1)
should be changed by init_df["PORV"] = porv_numpy[glob_idxs].reshape(-1)
after I made the change in my local version the script works
The text was updated successfully, but these errors were encountered:
I'm getting this error when trying to read an egrid file, however checking the error seems to be a dimensionality error in the grid.py, more specifically the function init2df, this line

init_df["PORV"] = porv_numpy[glob_idxs].reshape(-1, 1)
should be changed by
init_df["PORV"] = porv_numpy[glob_idxs].reshape(-1)
after I made the change in my local version the script works
The text was updated successfully, but these errors were encountered: