Jump to content

ARCGIS Models You Like to Share (TBX Files)


Recommended Posts

Arcgis 10 Model builder has been developed since 9.3. and has much more capabilities than before; and you can see several additional options like iterations in there; They are so much helpful. Although creating them is a little hard for beginners like me, the result can save lots of time and energy.

Due to the importance of those newly added options, I decided to ask you my friends to kindly share the models you think can ease many problems.

Regards,

Link to comment
Share on other sites

  • 4 weeks later...

Water Balance Toolbox for ArcGIS (for ArcGIS version 9.2)

Download + data sample

[hide]

http://www.ohio.edu/people/dyer/WB_Demo.zip

[/hide]

Tutorial

[hide]

http://www.ohio.edu/people/dyer/Water_Balance_User_Manual.pdf

[/hide]

websites :

[hide]

http://www.ohio.edu/people/dyer/water_balance.html

[/hide]

enjoy it  :cheesy:

  • Like 1
Link to comment
Share on other sites

Landscape Connectivity and Pattern (LCaP) metrics

The approach of the LCaP ArcGIS tools (for v9.2) is to provide:

-          a basic framework with which to organize the analysis of landscapes;

-          some of more commonly used, useful, and robust metrics that incorporate a functional perspective;

-          a clearer link between metrics already available in GIS; and

-          a platform on ModelBuilder programming framework.

Download

Brief overview presentation

[hide]

http://warnercnr.colostate.edu/~davet/Theobald%20LCAP%20v1%20overview%2020070705.pdf

[/hide]

TBX for ArcGIS 9.2

[hide]

http://www.nrel.colostate.edu/ftp/theobald/

[/hide]

Link to comment
Share on other sites

  • 2 months later...

National Water-Quality Assessment (NAWQA) Area-Characterization ToolboxTools in the toolbox include:

  • Areal Overlay Statistics toolset:
    • Area Statistics To Table
    • Feature Statistics To Table
    • Footprint Statistics To Table

    [*]Areal Overlay Weights toolset:

    • Area Weights To Table
    • Feature Weights To Table
    • Footprint Weights To Table

    [*]Areal Overlay Weights Analysis toolset:

    • Calculate Weighted Statistics
    • Partial Area Weights
    • Tabulate Weight Table

    [*]Point Overlay toolset:

    • Point Overlay Polygon To Table
    • Point Overlay Raster To Table

    [*]Selection and Area Processing toolset:

    • Aggregate Raster to Percent Grids
    • Shrink Polygon Area
    • Tabulate Features To Percent
    • Tabulate Footprints To Percent
    • Weed Points

    DOWNLOAD

[hide]

http://pubs.usgs.gov/of/2010/1268/downloads/NACT.zip

[/hide]

for arcgis versions 9.3 and 9.3.1

  • Like 1
Link to comment
Share on other sites

Genetic Landscapes GIS ToolboxA new analysis approach in landscape genetics and phylogeography is the creation of “genetic landscapes” to visualize genetic structure across geographic space. The Genetic Landscapes GIS Toolbox contains four tools to map genetic landscapes and to summarize multiple genetic landscapes as average and variance surfaces in ArcGIS ® (Environmental Science Research Institute, Redlands, CA, USA). Together, these tools automate a series of calculations and data manipulations to create genetic landscape surfaces directly from tables containing genetic distance or diversity data and sample location coordinates.  This allows users with little GIS experience to create and analyze these complex raster surfaces with efficiency and accuracy.  The analysis steps implemented in the Landscape Genetics GIS Toolbox were originally developed for an ecoregional assessment of genetic divergence and diversity patterns of multiple species in southern California  (Vandergast et al., 2008).

manual :

[hide]

http://www.werc.usgs.gov/fileHandler.ashx?File=/Lists/Products/Attachments/4017/Genetic%20Landscapes%20GIS%20Toolbox%20Manual.pdf

[/hide]

TBX

arcgis 10

[hide]

http://www.werc.usgs.gov/fileHandler.ashx?File=/Lists/Products/Attachments/4017/MGL_Model_V10_8Aug2011.zip

[/hide]

arcgis 9.3

[hide]

http://www.werc.usgs.gov/fileHandler.ashx?File=/Lists/Products/Attachments/4017/MGL_Model_V93_15June2010.zip

[/hide]

Link to comment
Share on other sites

  • 4 weeks later...

Geonames Tools toolbox

original.aspx

The Geonames Tools toolbox is an Esri Defense toolbox for intelligence analysis. The zip file contains the tools and a template geodatabase with the schema needed to create a gazetteer style locator from National Geospatial-Intelligence Agency (NGA) UTF-8 encoded tab-delimited geonames text files.

The package includes two tools, with supporting scripts, and instructions for using the tools to create your geonames gazetteer locator.  The first tool loads data from a UTF-8 encoded, tab-delimited geonames text files into a feature class, updating the Admin, Country, and Feature codes in the process.  The second tool creates a gazetteer style locator from the feature class.  This locator can be used on a local machine, or published via ArcGIS for Server for use by multiple clients.

DOWNLOAD

[hide]

https://ago-item-storage.s3.amazonaws.com/763ede1bc09a4bc5846108b54dbcf7a5/Geonames.zip?AWSAccessKeyId=AKIAJS2Y2E72HYCOE7BA&Expires=1326177747&Signature=p28K0%2BqWoa6b3XXBXgp2IwsXClA%3D

[/hide]

or via

[hide]

http://www.arcgis.com/home/item.html?id=763ede1bc09a4bc5846108b54dbcf7a5

[/hide]

Link to comment
Share on other sites

  • 4 months later...

Here is a VBA macro which enable you going through selected features and calculate new values for a specified field.  :cheesy:

'-------------------------------------------------------------------------------

On Error GoTo EH

 

    Dim pDoc As IMxDocument

    Set pDoc = ThisDocument

    'GET THE LAYER THAT IS SELECTED IN THE TOC

    Dim pFeatLayer As IFeatureLayer

    Dim pFeatClass As IFeatureClass

    Dim pUnknown As IUnknown

    Set pUnknown = pDoc.SelectedLayer

        If pUnknown Is Nothing Then

            MsgBox "Must have a selected in the table of contents."

            Exit Sub

        End If

    Set pFeatLayer = pUnknown

    Set pFeatClass = pFeatLayer.FeatureClass

 

    'FIND THE FIELD Parcel

    Dim pCalc As ICalculator

    Dim pTable As ITable

    Dim pField As IField

    Dim intFldIndex As Integer

    Set pTable = pFeatClass

    intFldIndex = pTable.FindField("Parcel")

        If intFldIndex = -1 Then

            MsgBox "There must be a field named Parcel in the layer"

            Exit Sub

        End If

    'PERFORM THE CALCULATION FOR THE WAYPOINTNO FIELD

    Set pCalc = New Calculator

    Dim pCursor As ICursor

    'Get a cursor for the selected features

    Dim pFSel As IFeatureSelection

    Set pFSel = pFeatLayer

    Dim pSelSet As ISelectionSet2

    Set pSelSet = pFSel.SelectionSet

    If pSelSet.Count = 0 Then

      MsgBox "Please select features to update"

      Exit Sub

    End If

    pSelSet.Update Nothing, False, pCursor

        With pCalc

            Set .Cursor = pCursor

                .Expression = ThisDocument.ParcelID.Text

                .Field = "Parcel"

        End With

    pCalc.Calculate

    Set pCursor = Nothing

   

    ThisDocument.ParcelID.Text = Val(ThisDocument.ParcelID.Text) + 1

    Exit Sub

EH:

    MsgBox Err.Number & "  " & Err.Description

with a little changes ESRI Discussion Forums

Link to comment
Share on other sites

  • 4 months later...
  • 3 weeks later...

Arcgis 10 Model builder has been developed since 9.3. and has much more capabilities than before; and you can see several additional options like iterations in there; They are so much helpful. Although creating them is a little hard for beginners like me, the result can save lots of time and energy.

Due to the importance of those newly added options, I decided to ask you my friends to kindly share the models you think can ease many problems.

Regards,

To add to this I would like to mention that ArcGIS 10.1 has got improved features. Specific to Geoprocessing tools you can pakage the tool box and share the tool package as we could earlier share the map package. Yes we designing the model could be bit complex when you are not familiar with the Geoprocessing models. For someone who has been working with Geoprocessing models and tools since earlier version of ArcGIS 9x would find the model tools and model iterators as a good aid for designing the models.

Regards,

Harshal

  • Like 1
Link to comment
Share on other sites

  • 1 year later...
Urban Network Analysis: A Toolbox for ArcGIS 10

 

The City Form Lab has released a state-of-the-art toolbox for urban network analysis. As the first of its kind, this ArcGIS toolbox can be used to compute five types of graph analysis measures on spatial networks: Reach; Gravity; BetweennessCloseness; and Straightness. Redundancy Tools that come with the software, additionally calculate the Redundancy Index, Redundant Paths, and the Wayfinding Index.

 

DOWNLOAD :

 

version 1.01

https://bitbucket.org/cityformlab/urban-network-analysis-toolbox/downloads/Urban%20Network%20Analysis%20Toolbox%201.01.zip
  • Like 2
Link to comment
Share on other sites

  • 6 months later...
The Build Elevation Mosaic Tools toolbox

 

BuildElevationMosaicsToolbox_10_2_2_13.p

 

Building mosaic dataset makes it simple to publish collections of elevation data files as elevation, slope, aspect, and hillshade layer services, so they do not have to be re-created for each use. This approach reduces data duplication because the source files do not need to be copied to be used in the mosaic dataset. They can be used from their existing locations as long as ArcGIS for Server can access them as a data store.

When publishing the results, you can reduce the number of services by applying the raster function templates included with the tools in this toolbox. These function templates modify pixel values on the fly to show derived views of the elevation data, such as percent slope, aspect, and hillshade. The client simply chooses which function to view from the DTM service.

 

DOWNLOAD

https://github.com/Esri/solutions-geoprocessing-toolbox/releases/tag/v10.2.2.1
  • Like 3
Link to comment
Share on other sites

  • 5 months later...

Please renew link

Genetic Landscapes GIS Toolbox

and

Landscape Connectivity and Pattern (LCaP) metrics

:lol:

 

I think Lurker won't be able to renew link server itself because this is something under the control of USGS.

But, with a bit of research, at least 3 seconds you should be able to that link for the Genetic Landscapes GIS Toolbox:

Their last version is based on ArcGIS 10.1

 

;)

 

darksabersan.

  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.

Disable-Adblock.png

 

If you enjoy our contents, support us by Disable ads Blocker or add GIS-area to your ads blocker whitelist