-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Modification of some plots in the dedicated tool. Basemaps from the contextily package have been added to the map type plots (i.e. LRR, NSM and SCE). The numbering of the "Plot Results" tool has been corrected (it used to say 5 and it is actually 4).
- Loading branch information
1 parent
220b82b
commit 437bcca
Showing
22 changed files
with
62 additions
and
18 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
2 changes: 2 additions & 0 deletions
2
src/Shoreline Evolution Analysis Toolbox.ComputeIntersection.pyt.xml
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<metadata xml:lang="es"><Esri><CreaDate>20240129</CreaDate><CreaTime>11531500</CreaTime><ArcGISFormat>1.0</ArcGISFormat><SyncOnce>TRUE</SyncOnce></Esri></metadata> |
2 changes: 2 additions & 0 deletions
2
src/Shoreline Evolution Analysis Toolbox.CorrectTransects.pyt.xml
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<metadata xml:lang="es"><Esri><CreaDate>20240129</CreaDate><CreaTime>11582600</CreaTime><ArcGISFormat>1.0</ArcGISFormat><SyncOnce>TRUE</SyncOnce></Esri></metadata> |
2 changes: 2 additions & 0 deletions
2
src/Shoreline Evolution Analysis Toolbox.PerformAnalysis.pyt.xml
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<metadata xml:lang="es"><Esri><CreaDate>20240129</CreaDate><CreaTime>11530400</CreaTime><ArcGISFormat>1.0</ArcGISFormat><SyncOnce>TRUE</SyncOnce></Esri></metadata> |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<metadata xml:lang="es"><Esri><CreaDate>20240129</CreaDate><CreaTime>09574900</CreaTime><ArcGISFormat>1.0</ArcGISFormat><SyncOnce>TRUE</SyncOnce></Esri></metadata> |
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,22 +1,23 @@ | ||
import arcpy | ||
|
||
# 1. Generate Transects Along Baseline | ||
# 1a. Generate Transects Along Baseline | ||
from tools.generateTransects import GenerateTransects | ||
|
||
# 2. Correct Transects | ||
# 1b. Correct Transects | ||
from tools.correctTransects import CorrectTransects | ||
|
||
# 3. Compute Intersections | ||
# 2. Compute Intersections | ||
from tools.computeIntersections import ComputeIntersection | ||
|
||
# 4. Perform the Shoreline Evolution Analysis | ||
# 3. Perform the Shoreline Evolution Analysis | ||
from tools.performAnalysis import PerformAnalysis | ||
|
||
# 5. Plot The Analysis Results | ||
# 4. 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, PlotResults] | ||
self.tools = [GenerateTransects, CorrectTransects, ComputeIntersection, | ||
PerformAnalysis, PlotResults] |
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,2 +1,2 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<metadata xml:lang="es"><Esri><CreaDate>20231121</CreaDate><CreaTime>19152500</CreaTime><ArcGISFormat>1.0</ArcGISFormat><SyncOnce>TRUE</SyncOnce><ModDate>20231121</ModDate><ModTime>191525</ModTime></Esri><toolbox name="Shoreline Evolution Analysis Toolbox" alias=""><arcToolboxHelpPath>c:\program files\arcgis\pro\Resources\Help\gp</arcToolboxHelpPath><toolsets/></toolbox><dataIdInfo><idCitation><resTitle>Shoreline Evolution Analysis Toolbox</resTitle></idCitation></dataIdInfo><distInfo><distributor><distorFormat><formatName>ArcToolbox Toolbox</formatName></distorFormat></distributor></distInfo></metadata> | ||
<metadata xml:lang="es"><Esri><CreaDate>20231121</CreaDate><CreaTime>19152500</CreaTime><ArcGISFormat>1.0</ArcGISFormat><SyncOnce>TRUE</SyncOnce><ModDate>20240129</ModDate><ModTime>115229</ModTime></Esri><toolbox name="Shoreline Evolution Analysis Toolbox" alias=""><arcToolboxHelpPath>c:\program files\arcgis\pro\Resources\Help\gp</arcToolboxHelpPath><toolsets/></toolbox><dataIdInfo><idCitation><resTitle>Shoreline Evolution Analysis Toolbox</resTitle></idCitation></dataIdInfo><distInfo><distributor><distorFormat><formatName>ArcToolbox Toolbox</formatName></distorFormat></distributor></distInfo></metadata> |
Binary file modified
BIN
+138 Bytes
(100%)
src/tools/__pycache__/computeIntersections.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
Binary file modified
BIN
+45 Bytes
(100%)
src/tools/utils/__pycache__/intersect_lines.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file modified
BIN
+45 Bytes
(100%)
src/tools/utils/__pycache__/shoreline_evolution.cpython-39.pyc
Binary file not shown.
Binary file modified
BIN
+45 Bytes
(100%)
src/tools/utils/__pycache__/transect_processor.cpython-39.pyc
Binary file not shown.
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