Panu Lahtinen

Results 31 issues of Panu Lahtinen

This PR fixes the bilinear resampling when the resampling LUTs have been cached. The bug were introduced in #324 where a check was added to make sure the data array...

bug

#### Problem description The unit tests, especially for bilinear resampling, are mostly duplicate code in two different classes. I think the tests should be refactored, clarified and simplified. While at...

enhancement
help wanted

#### Code Sample, a minimal, complete, and verifiable piece of code ```bash pytest pyresample/test/test_geometry.py ``` #### Problem description The usage of `pyproj.transform` has been deprecated. This function is used in...

#### Code Sample, a minimal, complete, and verifiable piece of code ```python from satpy import Scene import glob fnames = glob.glob('IMG_DK*') glbl = Scene(reader='ahi_hrit', filenames=fnames) glbl.load(['dust']) lcl = glbl.resample("eckert_iv_global_2km", radius_of_influence=30e3)...

bug

This PR adds `hdf5plugin` as optional dependency for reading compressed MTG/FCI Level 1C data. - [x] Tests added - [x] Fully documented

enhancement
component:readers

**Describe the bug** It seems that there are differences in the resampling results between `satpy` `maint/0.8` branch (non-xarray/dask) and current `master` branch of `satpy` when the target area crosses 180...

bug
component:resampling

#### Example of problem ```bash $ invproj +proj=eck4 +a=6371000 -16921202.922943164 -8313010.558165222 54d35'17.571"E 81d47'15.153"S ``` ```bash $ proj +proj=eck4 +a=6371000 54d35'17.571"E 81d47'15.153"S 3024435.50 -8313010.56 ``` #### Problem description The first pair...

bug

**Describe the bug** While working on https://github.com/pytroll/satpy/pull/2182 and debugging the slow-down it caused, I noticed that the current implementation of `fci_l1c_nc` reader is single-threaded until the writing starts. **To Reproduce**...

This PR adapts the FCI L1c reader so that it is able to read data from remote locations using `fsspec`. ```python fnames = ["simplecache::s3://satellite-data-fci-test-data-2022/*DEV_20170920112*.nc"] scn = Scene(reader='fci_l1c_nc', filenames=fnames) scn.load(['ir_123']) scn.save_datasets()...

enhancement
component:readers

### What happened? Saving `xr.Dataset()` lazily to NetCDF4 (`dset.to_netcdf(..., compute=False)`) fails seemingly randomly if an array is used either as a coordinate to multiple variables, or saved with different names...

bug
topic-backends