You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was going through the code and docstrings to figure out in which ways I can manually add crosssections, and this specific function doesn't make sense. The actual function parameter are different than the docstring suggests.
def add_yz_definition(
self, yz=None, thalweg=None, roughnesstype=None, roughnessvalue=None, name=None
):
"""
Add xyz crosssection
Parameters
----------
code : str
Id of cross section
branch : str
Name of branch
offset : float
Position of cross section along branch. If not given, the position is determined
from the branches in the network. These should thus be given in this case.
crds : np.array
Nx2 array with y, z coordinates
"""
How does this function work?
The text was updated successfully, but these errors were encountered:
Is there any documentation available right now on how to replace delft3dfmpy with hydrolib-core? I can't find it around delft3dfmpy documentation, but also not around hydrolib-core documentation.
I was going through the code and docstrings to figure out in which ways I can manually add crosssections, and this specific function doesn't make sense. The actual function parameter are different than the docstring suggests.
From file: https://github.com/openearth/delft3dfmpy/blob/master/delft3dfmpy/core/dfm.py
from line 471 onward:
How does this function work?
The text was updated successfully, but these errors were encountered: