MIKE IO: input/output of MIKE files in Python

Python version PyPI version

Note

Instructor-led course

Getting started with MIKE IO for Python processing of dfs files

From 4th September 2024 to 2nd October 2024

Read, write and manipulate dfs0, dfs1, dfs2, dfs3, dfsu and mesh files.

See our sister library MIKE IO 1D for .res1d and .xns11 files.

Requirements

  • Windows or Linux operating system
  • Python x64 3.8 - 3.11
  • (Windows) VC++ redistributables (already installed if you have MIKE)

Installation

$ pip install mikeio
Warning

Don’t use conda to install MIKE IO!, the version on conda is outdated.

Getting started

import mikeio

ds = mikeio.read("data/FakeLake.dfsu")
ds.Bathymetry.plot()

Read more in the getting started guide.

Where can I get help?