...
Het is mogelijk het grid lokaal binnen een gegeven polygoon een aantal stappen te verfijnen. Zo kan een 40x40 grid lokaal verfijnd worden naar een 20x20 grid, 10x10 grid, etc.
Code Block |
---|
def mesh2d_refine(
network: Network, polygon: Union[Polygon, MultiPolygon], steps: int
) -> None:
"""Refine mesh 2d within (list of) polygon or multipolygon, with a certain
number of refinement steps.
Args:
network (Network): Network for which the mesh is clipped
polygon (Union[GeometryList, Union[Polygon, MultiPolygon]]): Polygon within which the mesh is clipped
steps (int): Number of steps in the refinement
""" |
...