-
-
Notifications
You must be signed in to change notification settings - Fork 9
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
support for _FillValue? #5
Comments
P.S. @scivision, thank you for creating this library! It looks really nice and I've been interested in trying it out. |
I was able to add an optional fill value argument to the writer method. The adjustment is similar to what's found in the |
Thanks for the idea. This initially looks straightforward to add to nc4fortran and h5fortran. |
yup, a straightforward add. |
OK great. I just added a fill_value option to h5fortran %create(..., fill_value=) as well. I would guess it's easier for netcdf. fill syntax example in h5fortran: https://github.com/geospace-code/h5fortran/blob/main/test/test_fill.f90 |
Fill value is working now in main branch via |
I saw you've done quite a bit lately. |
I was just wondering if
_FillValue
is currently supported?It seems that if a user attempts to specify the
_FillValue
attribute after calling the%write
method the user will get the errorNC_ELATEFILL(-122)
caused by callingput
before specifying the fill value.The text was updated successfully, but these errors were encountered: