-
The 3D array has three dims: z, y and x.
The 2D array has two dims: y and x.
When I try to concatenate them by expanding the 2D array with z dim, there's something wrong in `_dataset_concat`
####…
-
**What happened**:
It appears that either `to_zarr` or `from_zarr` is incorrectly concatenating the trailing dimension of single byte/character arrays and dropping the last dimension:
```python
…
-
#### MCVE Code Sample
```python
# Your code here
orig = '/tmp/orig.h5'
ii = 100000
data = xr.Dataset(
{
'x':('t',np.random.randn(ii)),
'y':('t',np.random.randn(ii…
-
**Is your feature request related to a problem? Please describe.**
From @michalakes:
> With its 2024 release of OneAPI, Intel is deprecating its "classic" versions of Intel Fortran (ifort) and Intel…
-
#### MCVE Code Sample
```
import numpy as np
import xarray as xr
xlen = 4
x = xr.DataArray(np.linspace(0.0, 1.0, xlen), dims=('x'))
varname = 'foo'
xr.Dataset({varname: xr.DataArray(np.…
-
If a variable does not define a _FillValue value the 'default fill value' is normally used where data is masked. The default netCDF4 library does this by default and can be controlled with the set_aut…
-
```
import os
from io import BytesIO
import s3fs
import metpy
import xarray as xr
fs = s3fs.S3FileSystem(anon=True)
fs.ls('s3://noaa-goes16/')
files = fs.ls('noaa-goes16/ABI-L1b-RadC/201…
-
There are various examples of how to define an AreaDefinition throughout the documentation and in test files like https://github.com/pytroll/pyresample/blob/master/pyresample/test/test_files/areas.yam…
-
### What happened?
In a test, we have two datasets, which are essentially the same, but one has two time values and the other has one time value.
When loaded with `xr.open_zarr`, selecting the v…
-
**Describe the bug**
Module numpy is imported in setup.py. This causes "pip install pyradiomics" to fail if numpy is not yet installed. The issue implies that pyradiomics can not be listed as a proje…