Julius Busecke

Results 210 issues of Julius Busecke

I have implemented a check to see if all zarr chunks were written in another project: ``` def _check_zarr_complete(store): zg = zarr.open_group(str(store)) arrays = list(zg.arrays()) complete = True for array...

Need to add docs for https://github.com/jbusecke/xarrayutils/pull/118

Recently recoded the `remove_bottom_values` function using numba: ```python from numba import float64, guvectorize import numpy as np import xarray as xr @guvectorize( [ (float64[:], float64[:]), ], "(n)->(n)", nopython=True, ) def...

Currently the write function just checks if a file/folder exists. This can lead to issues, if e.g. a previous write to a zarr folder crashed. Is there a reliable way...

It would be nice to have some utilities for handling temporary file writing in a flexible way. I have written multiple attemps for such functions. Here are the key features...

Show how to add a letter to every subplot and how to customize the order (by shuffling the list of axes beforehand)

Id like to loop over several datasets, some of which might e.g. not have different members. Ideally `shaded_line_plot` would just default to plotting a line without shading without raising an...

Currently these fail if a coordinate containing cfdatetime is passed. Is there a way to deal with this natively? This would be very interesting for irregularly spaced data. `linear_trend` for...

Currently the filtering is implemented with `astropy.convolution` and requires the dimensions to be one chunk in the direction that is filtered. I wonder if there is a way to do...

I should add the functionality of cutting the shifted ends of each dataset according to the lag input parameter.

enhancement