netcdf4-python icon indicating copy to clipboard operation
netcdf4-python copied to clipboard

netcdf4-python: python/numpy interface to the netCDF C library

Results 155 netcdf4-python issues
Sort by recently updated
recently updated
newest added

Are there any known issues standing in the way of getting wheels for Python 3.11 up? If not, would it be helpful if I ported @ocefpaf's work adding cibuildwheel to...

System info: - OS: Linux Mint - Python version: 3.10 - python-netCDF4 version: 1.6.4 When trying to read an OpenDAP url with netCDF4==1.6.4, I get the following error: ```sh Cookie...

Version : netCDF4-python 1.6.2 OS: Windows 10 Python version: 3.11.1 I am trying to follow the steps from the page (https://unidata.github.io/netcdf4-python/#developer-install) to build netCDF4-Python v1.6.3 with netCDF-C and HDF5 that...

Hey guys, quick question for you netCDF4pythoneers - will it be possible to add `--enable-byterange` or `-DENABLE_BYTERANGE=true` (for Cmake) to the compilation of C library so we can get S3...

```python import netCDF4 import numpy as np filt_shape = (8192) n_filt = 1 with netCDF4.Dataset("my_netcdf.nc", "w") as ds: filter_defn = np.dtype( [ ("filter", np.float64, filt_shape), ] ) filter_type = ds.createCompoundType(filter_defn,...

To report a non-security related issue, please provide: * the version of the software with which you are encountering an issue Version 1.6.1 * environmental information (i.e. Operating System, compiler...

Steps to reproduce: * Environment: Python 3.10, Ubuntu 22.04, the packages were installed in a new clean virtual environment using `pip install netcdf4 dask xarray` * Create a new netcdf4...

There is a problem with the pypi package (mentioned elsewhere, basically it spams megabytes worth of warnings). This error is circumvented by downloading the source and using `pip install` from...

ps_point = d1.sel(lon='117.17638888845157', lat='35.47979166666699') print(ps_point.values) When I run the codes, but the terminal shows NAN. How to solve it? nan