-
Notifications
You must be signed in to change notification settings - Fork 265
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
NCZarr fill_value is Nan instead of NaN on Windows #2265
Comments
Looks like a typo on my part.
I will submit a PR for this after I hear if it fixes the problem. |
I don't have an easy way to test that change on Windows. However, I replaced myself all |
re: issue Unidata#2265 The zarr code is generating "Nan" instead of "NaN" on windows. This causes failures. Solution: fix typo.
See PR #2267 |
In this xarray's PR I found out that I'm having issues reading with python NCZarr data created on Windows.
Looks like the issue has to do with fill_value, which is Nan instead of NaN, and therefore can't be properly parsed by python's
json
.Sorry, I don't have much more details as I don't have a Windows machine to explore this a bit better. I thought I would open an issue here in case you already have some ideas about what's causing the problem. I guess it's possible that the problem is actually related to
netcdf4-python
as I'm using it to create the NCZarr file.This is the Python code I'm using to create the NCZarr data
The text was updated successfully, but these errors were encountered: