netcdf4-python
netcdf4-python copied to clipboard
netcdf4-python: python/numpy interface to the netCDF C library
Recently, reading OPeNDAP files when running notebooks on Google Colab resutss in an OSError: `[Errno -68] NetCDF: I/O failure` Relevant info: * netCDF4 version: 1.6.0 * Python version: Python 3.7.13...
I installed netcdf4 version 1.6.0 through using anaconda. I am on a windows 10 laptop. I also installed nco version 5.1.0. When I run nco commands such as ncks or...
This behavior only happens with `netCDF4-1.6.0` installed via pip. I cannot reproduce it with git install from `v1.6.0rel`. The following code: ```python from netCDF4 import Dataset import h5py import numpy...
netcdf-c 4.9.0 will have extra compression options based on plugins. The python interface now supports these via a compression kwarg to createVariable. In order to use the extra compression options...
First, credits to @BrazhnikovDmitry for finding this, I am only writing the issue but he should get credit for pointing this out :) . It seems like opening a dataset...
In the CIs it [seems to be netcdf-c 4.8.0](https://github.com/Unidata/netcdf4-python/blob/c1a95d6e8129a5b94800a7aa7613e708254fff1c/.github/workflows/build.yml#L9) and I think that would provide `libnetcdf.so.19` but in the wheel we have `libnetcdf-60d928ce.so.18.0.0` (which I think is 4.7.x). Maybe it...
My setup: netCDF4 version: 1.5.3 Python version: 3.8.3 OS: Scientific Linux release 6.6 (work server, so can't change it) Everything works fine when I use the Python interpreter (which makes...
The Jupyter notebook examples are a bit old, and could use a refresh. For instance `reading_netCDF.ipynb` has an outdated URL, which should be updated from: ``` URL = 'http://thredds.ucar.edu/thredds/dodsC/grib/NCEP/GFS/Global_0p5deg/GFS_Global_0p5deg_%04i%02i%02i_%02i%02i.grib2/GC' ```...
I'm having issues connecting to a dataset which, in the past, has worked fine. I recently reinstalled netCDF4 via a virtual environment and I'm getting low level CURL SSL errors....
I have a data set that `netCDF4` can read from disk, but it fails to read the same data from memory. [This zip file](https://github.com/Unidata/netcdf4-python/files/7108270/ncmemory_tester.zip) contains a short test script (pasted...