Tutorial - Creating Tools With ModelBuilder
Tutorial - Creating Tools With ModelBuilder
This tutorial takes you step-by-step through the process of creating Complexity:
Beginner
a model tool. In this tutorial, the model built in the Executing tools
Data Requirement:
in ModelBuilder tutorial is made into a useful tool by exposing model ArcGIS Tutorial Data Setup
variables as model parameters. Goal:
Learn how to create a model
For a broad overview of creating model tools, see A quick tour of tool.
creating tools with ModelBuilder.
It is assumed that you have installed ArcGIS Desktop (ArcView, ArcEditor, or ArcInfo) before you
begin this tutorial. The data required for this tutorial (included on the ArcGIS Desktop CD) by
default is installed in C:\arcgis\ArcTutor. The tutorial scenario is fictitious, and the original data
has been adapted for the tutorial.
To avoid corrupting the original data, copy the ModelBuilder folder from C:\arcgis\ArcTutor to the
C drive on your computer. If you are copying the data to another drive or location, make sure to
use that drive for all the steps below.
Steps:
1. Open the map document.
2. Create the model.
3. Expose tool parameters.
4. Create model parameters.
5. Rename model elements.
6. Set model parameter order.
7. Set model parameter type.
8. Set filters on model parameters.
9. Set symbology for output data.
10. Manage intermediate data.
11. Change general model properties.
12. Document the model.
Steps:
1. Start ArcMap by clicking Start > All Programs > ArcGIS > ArcMap 10.
2. On the ArcMap - Getting Started dialog box, click Existing Maps > Browse for more.
The Open ArcMap Document dialog box appears.
3. Browse to C:\ModelBuilder folder, select Extract Vegetation.mxd, and click Open .
This opens the Extract Vegetation.mxd.
1 of 14 2/12/2015 11:57 PM
Tutorial: Creating tools with ModelBuilder http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//002w000...
If the model was saved previously, open the model by right-clicking the model and selecting Edit.
If this model was saved after the model was run in the "Executing tools in ModelBuilder tutorial,"
the model elements may have a drop shadow around them. To remove the drop shadows, validate
the entire model by clicking the Validate Entire Model button on the ModelBuilder toolbar.
Double-click the example model from the Catalog window. The tool dialog box opens but shows
no parameters, as illustrated below.
If you run the tool by clicking OK, the model will run. The output of the model (ClippedFC ) will
not be added to the ArcMap table of contents, even though Add To Display was checked for the
output variable. The reason is that when a model is run from its tool dialog box, the Add To
Display setting is ignored. To add the output to the display, you must make the output variable a
model parameter.
Another reason for creating model parameters is that you want to run the model with different
inputs without having to open ModelBuilder every time, as illustrated below.
2 of 14 2/12/2015 11:57 PM
Tutorial: Creating tools with ModelBuilder http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//002w000...
Once the model parameters have been created, you can execute the model from its tool dialog
box, supplying different values for the Input Roads , Buffer Distance, Input Vegetation, Output
Clipped Feature Class , and XY Tolerance parameters. You don't have to open ModelBuilder each
time you want to run the model—you can use the tool dialog box instead. An added advantage of
running a model from its tool dialog box is that a result in the Results window is created;
running a model within ModelBuilder does not create a result in the Results window.
The remaining steps will expose model variables as parameters so they appear on the model tool
dialog box as shown above.
3 of 14 2/12/2015 11:57 PM
Tutorial: Creating tools with ModelBuilder http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//002w000...
4. Right-click Clip .
5. Click Make Variable > From Parameter > XY Tolerance.
The letter P appears beside the variable, indicating it is a model parameter. This model
parameter then also appears on the model tool dialog box.
2. Create model parameters for the following variables (do not make a model parameter
for BufferedFC ):
PlanA_Roads
vegetype
XY T olerance
ClippedFC
4 of 14 2/12/2015 11:57 PM
Tutorial: Creating tools with ModelBuilder http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//002w000...
Steps:
1. Right-click PlanA_Roads and click Rename.
2. Type Input Roads and click OK.
The name of the variable changes to Input Roads.
3. Rename the remaining variables as follows:
Rename Distance [value or field] to Buffer Distance.
Rename vegetype to Input Vegetation.
Rename ClippedFC to Output Clipped Feature Class.
4. Save the model. You do not need to exit ModelBuilder.
5. Double-click the model from the Catalog window to open the model tool dialog box. You
may have to move or minimize the ModelBuilder window to access the Catalog window.
The model tool dialog box should look similar to the illustration below. The order of the
parameters may be different on your dialog box, but this is not an issue since you'll
change the order below.
You can execute your tool by clicking OK, but it is suggested that you choose a
different output feature class before executing. The tool executes, and the output
feature class is added to the ArcMap table of contents. Unlike running a model within
5 of 14 2/12/2015 11:57 PM
Tutorial: Creating tools with ModelBuilder http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//002w000...
ModelBuilder, running the model from its dialog box does not change the model
diagram.
Steps:
1. In ModelBuilder, click Model > Model Properties .
2. Click the Parameters tab.
3. Choose the Input Roads parameter and move it to the top using the Up and Down arrow
buttons on the right side.
4. Change the position of other parameters as shown below:
Steps:
1. In ModelBuilder, click Model > Model Properties .
2. Click the Parameters tab.
3. Click the cell under the Type category for XY T olerance . A list appears with two options.
For this example, keep XY T olerance as an optional parameter and the rest as a required
parameter type as shown in the illustration below.
6 of 14 2/12/2015 11:57 PM
Tutorial: Creating tools with ModelBuilder http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//002w000...
Steps:
1. Click Model > Model Properties .
2. Click the Parameters tab.
3. Choose Input Roads and click the cell under the Filter category.
4. Choose the Feature Class filter.
The Feature Class dialog box opens.
5. Uncheck all the types except Polyline and click OK.
6. Click OK on the Model Properties dialog box to apply the filter.
7 of 14 2/12/2015 11:57 PM
Tutorial: Creating tools with ModelBuilder http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//002w000...
Steps:
1. In the ModelBuilder window, right-click Output Clipped Feature Class and click
Properties .
2. Click the Layer Symbology tab.
3. Browse the layer file from the ToolData folder that you copied in C:\ModelBuilder
\ToolData.
4. Choose OutputSymbology.lyr and click Add .
8 of 14 2/12/2015 11:57 PM
Tutorial: Creating tools with ModelBuilder http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//002w000...
5. Click OK.
Steps:
9 of 14 2/12/2015 11:57 PM
Tutorial: Creating tools with ModelBuilder http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//002w000...
Double-click the model from the Catalog window to open the model tool dialog box. Since
the model was saved with the predefined values, all the parameters on the dialog box are
10 of 14 2/12/2015 11:57 PM
Tutorial: Creating tools with ModelBuilder http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//002w000...
filled in. You can change the value of any parameter here by entering a new value. Click
OK to run. The final output of the model (Output Clipped Feature Class ) is added to the
display by default, and the model messages are posted in the Results window. To see your
results, uncheck the Vegetation Type layer in the map document table of contents.
Steps:
1. Right click the model in Catalog window and click Item Description.
This opens the Item Description window, displaying the Description page.
2. Click the Edit button on the Item Description window
This opens the documentation editor to enter the item description.
3. Type in appropriate description for each item in this model and click the Save button.
To learn more about documenting take A quick tour of documenting tools and toolboxes
Additional analysis
If you want to do some analysis with the model, you can add the Summary Statistics tool to get
a summary table of affected area by vegetation type within the buffer polygons around the
proposed roads.
The steps below will also show you how to use a model as a tool inside another model.
Steps:
1. Open a new model by clicking the ModelBuilder button on the ArcMap Standard
toolbar.
11 of 14 2/12/2015 11:57 PM
Tutorial: Creating tools with ModelBuilder http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//002w000...
2. Now that you have created a model tool, you can use it just like any other tool. You can
add the model tool to a new model by dragging it from the Catalog window into the new
model, as illustrated below.
Since the model tool had predefined values for input and output parameters, it is added to
the new model with input and output variables (the blue and green ovals). Note that not all
parameters of the model tool are exposed when added in another model. Also, the original
names of the input datasets have been used. You can make variables and rename them as
described earlier in this tutorial.
3. Open the Search window (if not already open in ArcMap) by clicking Geoprocessing >
Search For Tools .
This opens the Search window.
4. In the Search window, type Summary Statistics and click the Search button .
5. Drag the tool into the model.
6. Double-click the Summary Statistics element to open the tool dialog box.
7. For the Input Table parameter, click the arrow and choose Output Clipped Feature Class
with a blue recycle icon next to it. This recycle icon means it is a variable in the
model.
8. For the Output Table parameter, browse to the output geodatabase (C:\ModelBuilder
\Scratch\Output.gdb), type AffectedVegetation for the name, then click Save.
9. For the Statistic Field(s) parameter, choose Shape_Area from the list.
10. Click the cell next to Shape_Area under Statistic Type and choose SUM from the drop
down list.
11. For the Case field parameter, choose VEG_TYPE from the list.
The completed model with the Summary Statistics dialog box is illustrated below.
12 of 14 2/12/2015 11:57 PM
Tutorial: Creating tools with ModelBuilder http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//002w000...
Related Topics
Essential vocabulary: Executing tools in ModelBuilder
9/13/2011
13 of 14 2/12/2015 11:57 PM
Tutorial: Creating tools with ModelBuilder http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//002w000...
14 of 14 2/12/2015 11:57 PM