Mesh

import matplotlib.pyplot as plt
import mikeio

Read mesh file

msh = mikeio.Mesh("../data/odense_rough.mesh")
msh
<Mesh>
number of elements: 654
number of nodes: 399
projection: UTM-33

Plot mesh

msh.plot()

msh.plot.boundary_nodes(boundary_names=['Land','Open boundary']);

Convert mesh to shapely

Convert mesh to shapely MultiPolygon object, requires that the shapely library is installed.

mp = msh.to_shapely()
mp

Now a lot of methods are available

mp.area
68931409.58160606
mp.bounds
(211068.501175313, 6153077.66681803, 224171.617336507, 6164499.42751662)
domain = mp.buffer(0)
domain

open_water = domain.buffer(-500)

coastalzone = domain - open_water
coastalzone

Check if points are inside the domain

from shapely.geometry import Point

p1 = Point(216000, 6162000)
p2 = Point(220000, 6156000)
print(mp.contains(p1))
print(mp.contains(p2))
True
False

We can get similar functionality from the .geometry attribute of the mesh object.

p1p2 = [[216000, 6162000], [220000, 6156000]]
msh.geometry.contains(p1p2)
array([ True, False])
ax = msh.plot()
ax.scatter(p1.x, p1.y, marker="*", s=200, c="red", label="inside")
ax.scatter(p2.x, p2.y, marker="+", s=200, c="green", label="outside")
ax.legend();

Change z values and boundary code

Assume that we want to have a minimum depth of 2 meters and change the open boundary (code 2) to a closed one (code 1).

g = msh.geometry
print(f'max z before: {g.node_coordinates[:,2].max()}')
zc = g.node_coordinates[:,2]
zc[zc>-2] = -2
g.node_coordinates[:,2] = zc
print(f'max z after: {g.node_coordinates[:,2].max()}')
max z before: -0.200000002980232
max z after: -2.0
c = g.codes
c[c==2] = 1
g.codes = c

Save the modfied geometry to a new mesh file

g.to_mesh("new_mesh.mesh")

Cleanup

import os

os.remove("new_mesh.mesh")