diff --git a/docs/faq/how-do-i/in-out.rst b/docs/faq/how-do-i/in-out.rst index d234f2a6d..2cc586bed 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("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 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 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 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~