Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions docs/faq/how-do-i/in-out.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Expand Down
6 changes: 0 additions & 6 deletions docs/faq/how-do-i/unstructured.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://github.com/drufat/triangle/issues/57>`_.

Plot a timeseries for a single cell
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down
Loading