Daniel Lassiter
Daniel Lassiter
Disclaimer: I'm a beginner to python and wrangling climate datasets in general. I did my best to scour the web and the issues page to find a solution with no...
The sliced data array is 0.002 megabytes but when I try to export it to a numpy array, it loads the entire unsliced data array into memory which causes a...
Hello, the title pretty much says it all. Reproducible example: [download link for swmm model](https://www.dropbox.com/s/ma5hqxxbdren1d2/model.inp?dl=0) ```python import swmmio inp_path = "model.inp" mymodel = swmmio.Model(inp_path) infiltration = mymodel.inp.infiltration ``` and here's...
# Problem Summary I am attempting to convert a.grib2 file representing a single day's worth of gridded radar rainfall data spanning the continental US, into a netcdf. When a .grib2...
Reproducible example: ```python import xarray as xr from flox.xarray import xarray_reduce labels = xr.DataArray( [1, 2, 3, 1, 2, 3, 0, 0, 0], dims="x", name="label", ) finalize_kwargs = dict(q=[0.1,0.5,0.9], method...
I saw that someone else made a similar request a while ago and the issue was marked as resolved ([Issue 430](https://github.com/wger-project/wger/issues/430)). I am new to this software and apologies if...