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 don't entirely understand all of the different packages and standards, but it appears that there's now some more built-in support within xarray for handling complex numbers in netCDF files. Here's what I've looked at so far:
Confirm that using the following syntax is the preferred approach and isn't going to change any minute (it seems like you may already/soon be able to do this using engine=netcdf4): da.to_netcdf("complex.nc", engine="h5netcdf", invalid_netcdf=True)
Update (maybe even delete) write_netcdf and read_netcdf in core.py
The text was updated successfully, but these errors were encountered:
I don't entirely understand all of the different packages and standards, but it appears that there's now some more built-in support within
xarray
for handling complex numbers in netCDF files. Here's what I've looked at so far:xarray
noting some new functionality for netCDFs: Writing complex numbers to netCDF pydata/xarray#9246xarray
's docs for handling complex numbers for netCDFs: https://docs.xarray.dev/en/stable/user-guide/io.html#invalid-netcdf-filesSuggested action:
engine=netcdf4
):da.to_netcdf("complex.nc", engine="h5netcdf", invalid_netcdf=True)
write_netcdf
andread_netcdf
incore.py
The text was updated successfully, but these errors were encountered: