Skip to content

Commit

Permalink
setup centerlineMigrationRate
Browse files Browse the repository at this point in the history
  • Loading branch information
cyschneck committed May 18, 2024
1 parent 334e2b1 commit 3f1d09b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
3 changes: 3 additions & 0 deletions centerline_width/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@
from .plotDiagrams import plotCenterline
from .plotDiagrams import plotCenterlineWidth

# channelMigration.py function calls
from .channelMigration import centerlineMigrationRate

# error_handling.py function calls
from .error_handling import errrorHandlingConvertColumnsToCSV
from .error_handling import errorHandlingPlotCenterline
Expand Down
11 changes: 11 additions & 0 deletions centerline_width/channelMigration.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# External Python libraries
from pyproj import Geod

# Internal centerline_width reference to access functions, global variables, and error handling
import centerline_width


def centerlineMigrationRate(start: centerline_width.riverCenterline = None,
end: centerline_width.riverCenterline = None):
# Calculate the river channel migration through the lateral migration of the centerline
pass

0 comments on commit 3f1d09b

Please sign in to comment.