Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

should resolve issue #1 #11

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@

Dim frm As New frm_SimpleToPCAT_RoughnessRaster(My.ThisApplication)
Try
If frm.ShowDialog() = System.Windows.Forms.DialogResult.OK Then
End If
frm.ShowDialog()
Catch ex As Exception
ExceptionUI.HandleException(ex)
End Try
Expand Down
2 changes: 1 addition & 1 deletion TATAddin/AddIn/HelpMenu/WebSiteButton.vb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Protected Overrides Sub OnClick()

Try
Process.Start(My.Resources.GCDWebSiteURL)
Process.Start(My.Resources.WebSiteURL)
Catch ex As Exception
ExceptionUI.HandleException(ex)
End Try
Expand Down
4 changes: 2 additions & 2 deletions TATAddin/Config.esriaddinx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<Button id="TATAddIn_FIS_DevelopmentAssistant" class="FIS_DevelopmentAssistantButton" message="Aids in the creation of a Fuzzy Inference System" caption="FIS Development Assistant (BETA)" category="TAT" image="Resources\FISLibrary.png"/>
<!-- Uncertainty - Point Cloud Based Analysis Sub sub menu-->
<Button id="TATAddIn_CoincidentPointsButton" class="CoincidentPointsToolButton" message="Finds coincident points within a text based point cloud file" caption="Coincident Points Tool (BETA)" category="TAT" image="Resources\CoincidentPoints.png"/>
<Button id="TATAddIn_ToPCAT_DetrendedStandardDeviationButton" class="ToPCAT_DetrendedStandardDeviationButton" message="" caption="ToPCAT Detrended Standard Deviation" category="TAT" image="Resources\TopCat.png"/>
<Button id="TATAddIn_SimpleToPCAT_RoughnessButton" class="SimpleToPCAT_RoughnessButton" message="" caption="ToPCAT Detrended Standard Deviation" category="TAT" image="Resources\TopCat.png"/>
<!-- Uncertainty - Raster Based Analysis Sub sub menu-->
<Button id="TATAddIn_FIS_ErrorSurfaceButton" class="FIS_ErrorSurfaceButton" message="Create FIS error raster surface" caption="Create FIS Error Surface" category="TAT" image="Resources\FISLibrary.png"/>
<Button id="TATAddIn_InterpolationErrorSurfaceButton" class="InterpolationErrorSurfaceButton" message="Creates an interpolation error surface" caption="Create Interpolation Error Surface (BETA)" category="TAT" image=""/>
Expand Down Expand Up @@ -110,7 +110,7 @@
<Menu caption ="Point Cloud Based" isRootMenu="false" id="TATAddIn_PointCloudBasedUncertaintyMenu">
<Items>
<Button refID="TATAddIn_CoincidentPointsButton"/>
<Button refID="TATAddIn_ToPCAT_DetrendedStandardDeviationButton"/>
<Button refID="TATAddIn_SimpleToPCAT_RoughnessButton"/>
</Items>
</Menu>
<!-- Uncertainty - Raster Based Menu-->
Expand Down
47 changes: 19 additions & 28 deletions TATAddin/My Project/Resources.Designer.vb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 3 additions & 6 deletions TATAddin/My Project/Resources.resx
Original file line number Diff line number Diff line change
Expand Up @@ -175,20 +175,17 @@
<data name="GCD" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\GCD.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="GCDHelpEmail" xml:space="preserve">
<data name="HelpEmail" xml:space="preserve">
<value>[email protected]</value>
</data>
<data name="GCDHelpWebSiteURL" xml:space="preserve">
<value>http://tat.riverscapes.xyz</value>
</data>
<data name="GCDWebSiteURL" xml:space="preserve">
<data name="WebSiteURL" xml:space="preserve">
<value>http://tat.riverscapes.xyz</value>
</data>
<data name="Help" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Help.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="HelpBaseURL" xml:space="preserve">
<value>http://tat.riverscapes.xyz</value>
<value>http://tat.riverscapes.xyz/Help</value>
</data>
<data name="HelpFISAdd" xml:space="preserve">
<value>tutorials--how-to/i-setup-installation</value>
Expand Down