Huite
Huite
E.g. a 2D DataArray with dims (y, x) but a time or layer "label".
UgridDataArray already has a from_structured constructor, but doing so for every variable of a dataset means rederiving the UGRID topology every time -- so just do it once, then figure...
I just ran into a case where I created a UgridDataArray with (obj, grid) where obj was already UgridDataArray. This can become rather confusing; include a check to make sure...
It seems like including the following packages ``` geopandas matplotlib pyproj(?) pygeos ``` in the `.github/workflows/environment.yml` causes this error to appear: ``` /tmp/tmpe332ea2a: 1: export: .: bad variable name ```...
My CI pipelines using tox-conda don't seem to work anymore as of recently, as I get the following error: ``` File "/home/runner/work/xugrid/xugrid/.tox/.tox/lib/python3.10/site-packages/tox_conda/plugin.py", line 10, in import py.path ModuleNotFoundError: No module...
```python import ttim # %% ttim_model = ttim.ModelMaq( kaq=[5.0], z=[10.0, -10.0], c=[], topboundary='conf', Saq=[0.001], Sll=[], phreatictop=True, tmin=0.01, tstart=0.0, M=10, ) ttim_well_0 = ttim.Well( model=ttim_model, xw=0.0, yw=0.0, tsandQ=[(1.0, 500.0), (5.0, 0.0)],...
In this case a well is placed behind a leaky line doublet, yet the head **increases** in front of the doublet. A minimum working example: ```python import numpy as np...
(After getting some more questions via email) It is somewhat suprising to place a well, extracting water, and get positive isohypses. I think people (naively) expected a well to cause...
Coming from a question that was e-mailed to me: the API reference currently does not mention what the units or quantities are. Not having units is a feature, just like...
A relatively easy way to subdivide long lines based on distance to wells or other element vertices is by: 1. Projecting all (well) vertices onto a line segment and computing...