From d01b977895b1fac6b08fdcf5a359d03da3b3b613 Mon Sep 17 00:00:00 2001 From: JoerivanEngelen Date: Thu, 23 Apr 2026 13:28:02 +0200 Subject: [PATCH 1/3] Remove outdated note --- docs/faq/how-do-i/unstructured.rst | 6 ------ 1 file changed, 6 deletions(-) diff --git a/docs/faq/how-do-i/unstructured.rst b/docs/faq/how-do-i/unstructured.rst index 591352296..b41e95df1 100644 --- a/docs/faq/how-do-i/unstructured.rst +++ b/docs/faq/how-do-i/unstructured.rst @@ -28,12 +28,6 @@ GeoDataFrames. It can be installed with:: pip install pandamesh - -.. note:: - - One of the dependencies of pandamesh, the Python bindings to triangle, `does - not have the (binary) wheels for Python 3.9 and higher - yet `_. Plot a timeseries for a single cell ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ From 19bdced4b22af0ea978d383a5315134c59a0ffe9 Mon Sep 17 00:00:00 2001 From: JoerivanEngelen Date: Thu, 23 Apr 2026 13:29:32 +0200 Subject: [PATCH 2/3] Add how do I's for projectfile Co-authored-by: Copilot --- docs/faq/how-do-i/in-out.rst | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/docs/faq/how-do-i/in-out.rst b/docs/faq/how-do-i/in-out.rst index d234f2a6d..a9a7d30ac 100644 --- a/docs/faq/how-do-i/in-out.rst +++ b/docs/faq/how-do-i/in-out.rst @@ -46,6 +46,20 @@ Import a single netCDF variable as DataArray da = xr.open_dataarray("variable.nc") +Read the contents of a projectfile +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +.. code-block:: python + + prj_contents = imod.formats.prj.read_projectfile_data("my-model.prj") + +Load the contents of the project file +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +.. code-block:: python + + imod5_data, repeat_stress = imod.formats.prj.open_projectfile_data("my-model.prj") + Convert structured data to UGRID netCDF ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ From edec2bcaf12908c234248f49b3e3b010e0e5503f Mon Sep 17 00:00:00 2001 From: Joeri van Engelen Date: Thu, 23 Apr 2026 16:37:54 +0200 Subject: [PATCH 3/3] Update docs/faq/how-do-i/in-out.rst Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- docs/faq/how-do-i/in-out.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/faq/how-do-i/in-out.rst b/docs/faq/how-do-i/in-out.rst index a9a7d30ac..2cc586bed 100644 --- a/docs/faq/how-do-i/in-out.rst +++ b/docs/faq/how-do-i/in-out.rst @@ -51,7 +51,7 @@ Read the contents of a projectfile .. code-block:: python - prj_contents = imod.formats.prj.read_projectfile_data("my-model.prj") + prj_contents = imod.formats.prj.read_projectfile("my-model.prj") Load the contents of the project file ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~