Extracting heads from Modflow binary files using flopy #1567
Answered
by
jdhughes-usgs
zargol7419
asked this question in
Q&A
-
Beta Was this translation helpful? Give feedback.
Answered by
jdhughes-usgs
Oct 4, 2022
Replies: 1 comment 1 reply
-
Your first example has extracted the heads for all times. The data has dimensions |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
zargol7419
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Your first example has extracted the heads for all times. The data has dimensions
[output_times, nlay, nrow, ncol]
, whereoutput_times
is the number of times you have output binary head data (specified in the oc file). It looks like you are using MODFLOW-2000, so the-999
values are either theHNOFLO
orHDRY
value you have specified in your input files. You can retrieve the head for individual times using.get_data()
.