Skip to content

Commit

Permalink
Update Shoreline Evolution Analysis Toolbox.pyt
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbertGallegoJimenez committed Jan 10, 2024
1 parent de3ddb4 commit 220b82b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Shoreline Evolution Analysis Toolbox.pyt
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,11 @@ from tools.computeIntersections import ComputeIntersection
# 4. Perform the Shoreline Evolution Analysis
from tools.performAnalysis import PerformAnalysis

# 5. Plot The Analysis Results
from tools.plotResults import PlotResults

class Toolbox(object):
def __init__(self):

# List of tool classes associated with this toolbox
self.tools = [GenerateTransects, CorrectTransects, ComputeIntersection, PerformAnalysis]
self.tools = [GenerateTransects, CorrectTransects, ComputeIntersection, PerformAnalysis, PlotResults]

0 comments on commit 220b82b

Please sign in to comment.