netcdf-c
netcdf-c copied to clipboard
Official GitHub repository for netCDF-C libraries and utilities.
The error messages were of the style: LINK : fatal error LNK1181: cannot open input file 'aws-crt-cpp.lib'
I am still trying to update NetCDF for Julia users on Windows. In this test, I tried native compilation on Windows (using the MinGW64 toolchain from MSYS2). NetCDF is configured...
Our team is working with earth science zarr data that has some variable metadata stored as a string object type. These variables contain strings such as source URLs that correspond...
re: https://github.com/Unidata/netcdf-c/issues/2420 nc_test4/tst_vars3.c has the wrong conditional around the szip tests (did I do that?). Anyway, the current test is > #ifdef HAVE_SZ and it should be > #ifdef HAVE_H5Z_SZIP...
OSError: [Errno -128] NetCDF: Attempt to use feature that was not turned on when netCDF was built.
Attempting to open zarr file in an S3 bucket using the following python code: ``` from netCDF4 import Dataset nc2 = Dataset("s3://mybucket/zarr_key/#mode=zarr,s3", "r") ``` When I attempt to open this,...
Incorrect fill value being used for enums (was: ncdump failure on enum file: dumplib.c; line 952)
I found this while writing some tests for parallel. But it also happens in non-parallel mode. This happens on current master. I have added a test to nc_test4/tst_enum.c which creates...
All of this was done with today's main trunk of netcdf-c on the latest MacOS. The input file `in.nc` and successful output `foo.nc` files are attached as CDL text (because...
I tried to update the NetCDF version available to julia users. However, netCDF 4.9.0 fails to build during cross-compilation for x86_64-w64-mingw32 with the error "undefined reference to `ncp_win32_api'" . *...
This is on NOAA's HPC system (hera), which I believe is CentOS. In config.log I see: ``` configure:22699: checking size of off_t configure:22704: gcc -o conftest -fno-strict-aliasing -I//scratch2/BMC/gsienkf/whitaker/conda-envs/mpi4py/include -L/scratch2/BMC/gsienkf/whitaker/conda-envs/mpi4py/lib conftest.c...
When dealing with times using [cftime](https://github.com/jswhit/cftime), it is often a requirement to be able to convert a time value to a date and back again with microsecond accuracy. This is...