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
We have a problem when using pyfive as the backend for h5netcdf, which may boil down to the ability to deal with reference lists. It turns out we have one of those in the netcdf_classic file we used for the netcdf_classic test, but it doesn't cause any problems because it is never investigated in that test.
We now have a new test (test_reference_list.py) in the h5netcdf branch that currently traps the relevant warning and raises it as an error. The question at hand is, do we need to implement this at all.
It is noteworthy that is is only raised when you look for the dimensions of a coordinate axis ... is that a real use case?
The text was updated successfully, but these errors were encountered:
Attributes in HDF5 and netCDF-4 correspond very closely. Each attribute in an HDF5 file is represented as an attribute in the netCDF-4 file, with the exception of the attributes below, which are hidden by the netCDF-4 API.
_Netcdf4Coordinates An integer array containing the dimension IDs of a variable which is a multi-dimensional coordinate variable.
_nc3_strict When this (scalar, H5T_NATIVE_INT) attribute exists in the root group of the HDF5 file, the netCDF API will enforce the netCDF classic model on the data file.
REFERENCE_LIST This attribute is created and maintained by the HDF5 dimension scale API.
CLASS This attribute is created and maintained by the HDF5 dimension scale API.
DIMENSION_LIST This attribute is created and maintained by the HDF5 dimension scale API.
NAME This attribute is created and maintained by the HDF5 dimension scale API.
_Netcdf4Dimid Holds a scalar H5T_NATIVE_INT that is the (zero-based) dimension ID for this dimension, needed when dimensions and coordinate variables are defined in different orders.
_NCProperties Holds provenance information about a file at the time it was created. It specifies the versions of the netCDF and HDF5 libraries used to create the file.
We have a problem when using pyfive as the backend for h5netcdf, which may boil down to the ability to deal with reference lists. It turns out we have one of those in the netcdf_classic file we used for the netcdf_classic test, but it doesn't cause any problems because it is never investigated in that test.
We now have a new test (test_reference_list.py) in the h5netcdf branch that currently traps the relevant warning and raises it as an error. The question at hand is, do we need to implement this at all.
It is noteworthy that is is only raised when you look for the dimensions of a coordinate axis ... is that a real use case?
The text was updated successfully, but these errors were encountered: