-
Notifications
You must be signed in to change notification settings - Fork 322
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(binary): fix binary header information #1848
Conversation
# Conflicts: # autotest/test_mf6.py # flopy/mf6/data/mffileaccess.py # flopy/utils/datafile.py
Codecov Report
@@ Coverage Diff @@
## develop #1848 +/- ##
=======================================
Coverage 72.3% 72.3%
=======================================
Files 255 255
Lines 56108 56122 +14
=======================================
+ Hits 40573 40591 +18
+ Misses 15535 15531 -4
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good. My only concern is that you are changing some of the header variable names in datafile.py (ncol/nrow/ilay to m1/m2/m3) and that if a user was directly creating a binary header this change could break their code. However, I do not believe that users are creating their own MF6 binary file headers using flopy, so it might not be necessary to warn users of this interface change.
I agree this could create problems for people who might be using this directly. Hopefully know one is since the |
No description provided.