Gerrit Holl

Results 110 issues of Gerrit Holl

Despite impressive improvements in #368, there remains room to improve the parallelisation of the `BucketResampler` methods `get_max` and `get_min`. Much of the method is spent in the `@dask.delayed`-function `_get_statistics`, which...

enhancement
performance

#### Code Sample, a minimal, complete, and verifiable piece of code ```python from pyproj import CRS from pyresample import create_area_def from pyresample.area_config import load_area_from_string ar = create_area_def("test", CRS.from_authority("IAU_2015", 39916), area_extent=[-10_000_000,...

bug

#### Code Sample, a minimal, complete, and verifiable piece of code ```python from pyresample import create_area_def ar = create_area_def( "fribullus_xax", 4326, units="degrees", resolution=0.1, center=(0, 90), shape=(5, 5)) print(ar.get_lonlats()[1]) ``` ####...

bug

Checking the outer boundary corners of some areas fails with ValueError. In this case, checking if a certain point is contained also fails. #### Code Sample, a minimal, complete, and...

bug
documentation

#### Code Sample, a minimal, complete, and verifiable piece of code This code sample is probably not minimal, but it's as minimal as I've been able to make it so...

bug

The `AreaDefinition` methods support several special methods, for which documentation is missing on readthedocs. The most relevant ones for the user are `__contains__`, `__eq__`, and `__getitem__`. I think there's a...

documentation

#### Code Sample, a minimal, complete, and verifiable piece of code ```python # Your code here from satpy import Scene from satpy.utils import debug_on from glob import glob debug_on() sc...

#### Code Sample, a minimal, complete, and verifiable piece of code ```python from pyresample.area_config import parse_area_file parse_area_file("filenotfound") ``` #### Problem description This fails with an `AttributeError`. This wasted me some...

bug
documentation

When doing a mathematical operation on a masked array, and some elements are invalid for the particular mathematical operation, numpy should not issue a warning if all invalid elements are...

00 - Bug
component: numpy.ma

#### Description Of Changes Add a module with functionality to read storms from the NCEI storm database for a requested period in time. The functions rely on pint-pandas to add...

Type: Feature
Area: IO