Huite
Huite
Ribasim's conceptual model doesn't have storage on the links; this is a conscious choice. Conceptually, you can think of the links as infinitesimal straws with 0 volume. The basins represent...
Yeah I think maybe `replace_values` is better name. "search and replace values" is maybe how you'd describe it colloquially?`remap` is an option too, but I think many users won't have...
@Jeitan The coordinate is a DataArray as well, so the following would work: ```python # Example DataArray da = xr.DataArray(np.ones((3, 3)), {"y": [50.0, 60.0, 70.0], "x": [1.0, 2.0, 3.0]}, ("y",...
Thanks, I'll try that now. That makes the most sense. The example above runs if I remove the `py311 = ["py311"]` bit.
Removing the `.pixi` directory indeed does the trick. Thanks! Normally, I think I would've thought of that myself -- but in this case I made a specific change to the...
Another option to consider is to solve for flows AND storage at the same time, and add them both to the unknowns (maybe in ComponentArray form?). My feeling is that...
I have a dubious idea... I think the problem is as follows in a nutshell: * If we solve for storage, we cannot reconstruct flows accurately and cheaply. * Hence...
> Shouldn't this be either? Indeed, should be either.
We also want consistency with the matplotlib styling. Matplotlib also takes custom SVG files. I guess ideally we have somewhat meaningful, but still visually clean symbols. Came across this just...
Linestrings are easy; you should be able to convert directly using xugrid's from_geodataframe, and then you just need a link to linestring indexing array. > convert Basin / area to...