saschahofmann
saschahofmann
Ok. So this error is raised in backends/api.py#L572 a few lines above `backend_kwargs` are unpacked to kwargs that are provided as keyword arguments (`**kwargs`) to the `open_dataset` function of the...
Yes, using `storage_options=dict(exceptions=[])` in open_dataset successfully passes an empty list of exceptions down to the FSStore. But if I throttle my connection I still end up without errors but missing...
I am also not sure I understand the difference between these two: > exceptions : list of Exception subclasses > When accessing data, any of these exceptions will be treated...
Yeah I think that seems to be the crux. No matter what we input as `exceptions` it doesn't raise an error but looses the chunks regardless.
Do I understand this right that this would be equivalent to this ?
I actually figured that for my needs its enough to have the daily temperature distribution. The true times don't really matter that much. So I used xclim's day_lengths function and...
I now also have a chill portions/dynamic model implementation. If you want I could port them to xclim. If so, where should I put them (I can see that there...
Alright great. I would also add a functionality that estimates hourly temperatures from daily min max. But my suggestion is that this should be called outside the chill portion function
Although I cant find it in this codebase when using the package I can find this now ``` ts interface ArraySchemaObject extends BaseSchemaObject { type: ArraySchemaObjectType; items: ReferenceObject | SchemaObject;...
Yeah I think, I accidentally added the file in node_modules 😏 . After I reinstalled the package it looks like openapi-types doesnt support prefixItems yet.