Panu Lahtinen

Results 243 comments of Panu Lahtinen

Oh, and the bucket resamplers don't have caching, so the `cache_dir` is unnecessary.

Maybe `satpy.resample._get_arg_to_pass_for_skipna_handling()` could be adapted and renamed to filter out all unsupported kwargs?

My idea when doing the initial implementation was to have the real sum at each target location, thus I reasoned zero would be the correct value for the pixels where...

The indices need to be computed for the slicing to work. With `dask` arrays the slicing result would have a shape of `(y_slice.size, x_slice.size)` when it should be `(y_slice.size, )`....

I've always thought that is as expected...

Also geotiffs show the pixel size as negative for example for y-direction of `geos` projection where north is up.

MSG/SEVIRI data are in a well defined grid in `geos` projection, so the overlaying should work. If at all possible in your workflow, you could add the grid directly when...

I hope this works. I'm on my phone and can't test. ```python from satpy.resample import get_area_def adef = get_area_def('seviri_0deg') ``` **EDIT:** fix the import

My first very-very-late-night-two-pennies: - resample each channel to target definition using original resolution, avoid reducing data prematurely, and then you'll get the maximum coverage without losing any details from the...

Hi, and sorry for the late reply. This is an unfortunate side-effect of how the algorithm we use for bilinear interpolation works. For the bilinear interpolation we need to find...