We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
We use H5Dcreate2() in our code to create an ordinary dataset, but H5Dcreate1() when it's a dimscale dataset.
H5Dcreate1() is deprecated by HDF5 in favor of H5Dcreate2().
find libhdf5 -name '*.c'|xargs grep H5Dcreate libhdf5/nc4hdf.c: if ((hdf5_var->hdf_datasetid = H5Dcreate2(hdf5_grp->hdf_grpid, name_to_use, typeid, libhdf5/nc4hdf.c: if ((hdf5_dim->hdf_dimscaleid = H5Dcreate1(hdf5_grp->hdf_grpid, dim->hdr.name
Dimscales are already complicated enough, so I will upgrade the H5Dcreate1() to H5Dcreate2(). We will no longer use the deprecated H5Dcreate1().
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
We use H5Dcreate2() in our code to create an ordinary dataset, but H5Dcreate1() when it's a dimscale dataset.
H5Dcreate1() is deprecated by HDF5 in favor of H5Dcreate2().
Dimscales are already complicated enough, so I will upgrade the H5Dcreate1() to H5Dcreate2(). We will no longer use the deprecated H5Dcreate1().
The text was updated successfully, but these errors were encountered: