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

reported by @ocefpaf, see https://github.com/conda-forge/staged-recipes/pull/43 Can be triggered (on some platforms) with ``` import netCDF4 url = 'http://test.opendap.org:80/opendap/data/ncml/sample_virtual_dataset.ncml' nc = netCDF4.Dataset(url) assert nc.filepath() == url # segfault here with version...

I've heard from a number of python (and fortran) users over the years regarding the lack of a fixed-length string datatype in netcdf. I created a netcdf-c ticket (https://github.com/Unidata/netcdf-c/issues/132) requesting...

Reading [Section 2.2 of the CF conventions](http://cfconventions.org/Data/cf-conventions/cf-conventions-1.6/build/cf-conventions.html#idp4767584) I gather that I can only use `np.byte` datatypes but if `valid_range` is using `np.ubyte` values then the byte data should be interpreted...

I use anaconda python on a MacBook Pro running OS X El Capitan. I updated my python packages via anaconda this morning and then re-added netCDF4 (1.1.9-np110py27_0). Afterwards, when I...

My first attempt at building netcdf4-python failed with this error: ``` In file included from netCDF4/_netCDF4.c:240:0: /usr/local/include/H5public.h:61:20: fatal error: mpi.h: No such file or directory # include ^ compilation terminated....

Due to the different behaviours of integer array indexing between netcdf4-python and numpy, I am missing the ability of indexing dependent axes, in which for example, `data[arange(3), arange(3)]` returns an...

This code writes a single string attribute to an HDF5 file using netCDF4: ``` # Python 3.4.3 In [1]: import netCDF4 In [3]: ds = netCDF4.Dataset('/Users/shoyer/Downloads/global-attr.nc', 'w') In [4]: ds.units...

As described here: https://github.com/Unidata/netcdf4-python/issues/218#issuecomment-43287973 The segmentation faults appear when attempting to read array values from a netCDF4.Variable with dtype=str when previous datasets were not closed. Here is a Travis log...

Readthedocs is the recommended place to host documentation for python libraries, its provides nice formatting among other features. It would be nice to see netcdf documentation synced there. https://readthedocs.org/

This is not exactly a netCDF4-python issue (so feel free to close), but I thought users of this repo might be interested to test out my latest project, [h5netcdf](https://github.com/shoyer/h5netcdf), an...