Daniel Kirkham

Results 5 comments of Daniel Kirkham

After searching further I found this comment https://github.com/Unidata/netcdf4-python/issues/468#issuecomment-145873369, which suggests that variables can have a property to prevent the data being masked if the data matches the default fill value....

@jswhit Thanks for responding so quickly to this, but personally I'd prefer to wait for the true fix in netcdf-c rather than merging this. As a bit of background, I'm...

Interestingly, for a numpy array, the following access is fine: `a[[[1]]]` but not for a biggus NumpyArrayAdapter: ``` >>> b[[[1]]] Traceback (most recent call last): File "", line 1, in...

The initial issue is due to a numpy bug which is fixed in the latest version. Of the other two cases, the second (`a[[1]]`) is due to the same bug,...

Example code: ```python from itertools import repeat import iris from iris.coords import AuxCoord from iris.cube import Cube, CubeList def make_scalar_coords(name, points): return [AuxCoord(point, long_name=name) for point in points] def make_scalar_cubes(**kwargs):...