netcdf4-python
netcdf4-python copied to clipboard
netcdf4-python: python/numpy interface to the netCDF C library
Could there be added blosc compressor also? At least like in [PyTables](https://github.com/PyTables/PyTables).
NetCDF zlib compression is great. However, the current Python API requires you to put 'zlib=True' on every variable you want compressed. Well... I want to compress ALL variables in my...
I have a problem since I switched from python-netcdf to netCDF4 with zlib compression enabled. I get segfaults when reading slices of a variable, but when I read the whole...
When truing to create a dataset in a directory that doesn't exist, a "Permission error" ensues: ``` >>> import netCDF4 >>> ds = netCDF4.Dataset("path/to/somewhere/imaginary/test.nc", "w") HDF5-DIAG: Error detected in HDF5...
In the case that a variable has a `_FillValue` attribute but the `valid_min`/`valid_max` attributes are not provided, netCDF4 attempts to guess the valid range and mask the data values accordingly....
(Not sure if this is best filed in this repo or https://github.com/Unidata/netcdf-c) Our CI test suite has recently yielded errors from netCDF4, and @spencerkclark has pinpointed libnetcdf 4.5.0 as the...
I'm using netCDF4.num2date to read in some (randomly generated) datetime information from a netCDF4 file. Below are three calls to `netCDF4.num2date` with the input value changing by +/- 00000001. The...
`conda.recipe/meta.yaml` is very restrictive about the `hdf5` and `libnetcdf` versions: ``` - hdf5 1.8.17|1.8.17.* - libnetcdf 4.4.* ``` Does it really need to be so restrictive?
Hi all where have I to look at for accessing netCDF files by the pyfilesystem2 approach http://pyfilesystem2.readthedocs.io/en/latest/ By this idea I could access files over many protocols on various storage...
Accessing data from a variable with no explicit `_FillValue` in a netCDF3 Dataset returns a filled ndarray rather than a masked array: ``` >>> import numpy as np >>> import...