-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Various cleanup and documentation (untested)
- Loading branch information
Showing
7 changed files
with
142 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
from Run_Circuitscape import Run_Circuitscape | ||
from Run_Omniscape import Run_Omniscape | ||
"""This is the entrypoint (from Arc Pro's perspective) for the tool and | ||
is what is loaded when a user selects "Add Toolbox". | ||
""" | ||
from tools import Run_Circuitscape, Run_Omniscape | ||
|
||
|
||
class Toolbox(object): | ||
def __init__(self): | ||
"""Define the toolbox (the name of the toolbox is the name of the | ||
.pyt file).""" | ||
.pyt file). It containes two tools.""" | ||
self.label = "Circuitscape" | ||
self.alias = "Circuitscape" | ||
|
||
# List of tool classes associated with this toolbox | ||
self.tools = [Run_Circuitscape, Run_Omniscape] | ||
self.tools = [Run_Circuitscape, Run_Omniscape] | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters