ArcMap

If you are stuck at "if" – Part 1

If-then-else logic is a simple yet powerful concept for performing different actions based on different conditions. If-then-else logic can be explained like this:

IF some condition is true, THEN
   perform an action;
ELSE the condition is false,
   perform a different action.

This is a three part blog which talks about different examples of if-then-else conditions and ways to implement it in ArcGIS.

Part 1 – Gives examples of quick and dirty ways of using the Calculate Value tool to create branches using if statements in a model.

Part 2 – Gives an example of creating and connecting an if-then-else script tool for branching in a model. The If Product license exists example of Calculate value
from part 1 has been converted into script tools to explain the concepts.

Part 3 –Gives three case examples of using script tools in a model. This part highlights the use of various capabilities of ModelBuilder such as:


Examples of using the Calculate Value tool to create branches using if-else logic
In this blog part we cover five examples of using if-then-else logic code in the Calculate Value tool. There are various reasons to use either Calculate Value or a script tool for branching such as:

Reasons to use Calculate Value tool:

Or there are reasons to use a Script tool:

Where to start?

Just in case you are new to ModelBuilder you might want to start with the following topic and tutorials:

Now that you are comfortable with the ModelBuilder interface and vocabulary you can get started with this blog by downloading the models from here.

You can access the Calculate Value tool in ModelBuilder from the Insert > Model Only tools menu or right click side menu. Calculate Value tool returns a value based on a specified Python expression. Learn more about the tool by clicking here.


Example 1 – If Product License Exists
Tools have different license level requirements. Some tools run at ArcView level while others need an ArcInfo license. If you want to run tools based on product license levels in a model a quick way to check is by using if logic in Calculate Value tool.

The following example uses the Erase tool if the ArcInfo license is available and uses a combination of multiple tools to execute the same simple task as the Erase tool if the license is not available. You need to have some knowledge of the license level requirement for each tool. You can easily check this from the individual tool documentation.

The check is especially important, if you are sharing the models with your peers as the product level could be different from one user to another, and using this license level check can significantly minimizes the processing time, especially if it is a big model or large data.

For all examples the if-then-else code in Calculate Value tool is written in Python using ArcPy, a Python site package that encompasses and further enhances the arcgisscripting module. This example uses the ArcPy ProductInfo function to check the availability of the product license and sets the Boolean output parameter to true or false based on the if condition.

If Product License ExistsCondition Expression

x("%ProductToCheck%")

Code Block

def x(ProductToCheck): import arcpy if arcpy.ProductInfo() == ProductToCheck: return "true" else: return "false"
If Product License Does Not ExistCondition Expression;

x("%ProductToCheck%")

Code Block

def x(ProductToCheck): import arcpy if arcpy.ProductInfo() == ProductToCheck: return "false" else: return "true"

Example 2 – If Extension Exists
Esri offers a wide range of optional extensions that can dramatically expand the capabilities of ArcGIS. Some of these ArcGIS tools are packaged in different extensions. The following example executes the Geographically Weighted Regression tool from Spatial Statistics toolbox. Geographically Weighted Regression requires an ArcInfo license or the Spatial Analyst extension or the Geostatistical Analyst extension. The example model checks to see if an ArcInfo license is available just as in the previous example and if the license is not available checks to see if either the Spatial or Geostats extension is available using the Calculate Value tool. The Boolean outputs (True and False) are passed to the Merge Branch, a tool often used in if-then-else logic. Merge Branch takes any number of inputs and these inputs can be of any data type (feature layer, Boolean, String, Double, and so on). When Merge Branch executes, it examines the list of inputs, and outputs the first valid value it finds. In the case of Booleans, it examines the list and outputs the True if any of the inputs are true. If none of the inputs are true, the output of Merge Branch is
false.

If neither the product license (ArcInfo) nor any of the two extensions are available the tool does not execute.

The example uses the CheckExtension acrpy function to check the availability of the extension and CheckOutExtension function to check out the extension for use.

If Extension ExistsCondition Expression;

getExtension()

Code Block

def getExtension(): import arcpy if arcpy.CheckExtension("Spatial") == "Available": arcpy.CheckOutExtension("Spatial") return "true" elif arcpy.CheckExtension("Geostats") == "Available": arcpy.CheckOutExtension("Geostats") return "true" else: return "false"

Example 3 – If Feature Class Exists
In this example the Calculate Value tool checks if a feature class exists in a workspace and if it exists, adds a field, adds a string value of “Existing “using the Calculate Field tool. If it does not exists the model copies the feature class from a backup location, adds a field, calculates that field with values of the date and time that it was copied and then the two feature classes are input to Merge Branch tool. Merge Branch examines which one has been updated with a valid value and outputs the feature class to merge with the other two feature classes.

The example uses the Exists arcpy function to check if the feature class exists.

If Feature Class ExistsCondition Expression;

x("%FeatureClassToCheck%", "%Workspace%")

Code Block

def x(FeatureClassToCheck, Workspace): import arcpy arcpy.env.workspace = Workspace if arcpy.Exists(FeatureClassToCheck): return "true" else: return "false"
If Feature Class Does Not ExistCondition Expression;

x("%FeatureClassToCheck%", "%Workspace%")

Code Block

def x(FeatureClassToCheck, Workspace): import arcpy arcpy.env.workspace = Workspace if arcpy.Exists(FeatureClassToCheck): return "false" else: return "true"

Example 4 – If the input is Point, Polyline or Polygon Features Class
If you want to find whether the input feature class is a point, line or polygon you can use a simple if logic in the Calculate Value tool. For example if the input feature class is a polygon then the Feature To Point tool converts the input into a point features class and uses it for a network analysis. If the input is points, it uses the point feature class directly into the network analysis. You can check if the input is a Line or a Point in the similar way as shown in the example below.

The example uses the Describe function to describe the shape type of the data.

If Feature Type ExistsCondition Expression;

x(r"%InputFeatureClass%")

Code Block

def x(InputFeatureClass): import arcpy desc = arcpy.Describe(InputFeatureClass) type = desc.shapeType if type == "Polygon": return "true" else: return "false"

Example 5 – If Feature Type Exists
You can check whether the input to your model is a shapefile or a feature class from a geodatabase using the Calculate Value tool as shown in this example. It checks to see if the input is a shapefile then adds a field and calculates area before calculating population density for the block groups. If it is a feature class from a geodatabase the area field already exists and the model can directly proceed to calculate population density. You can extend the same logic to find whether the input is a layer file or a feature layer in the map’s table of content.

The example uses the Describe to describe the data type of the data.

If input is a ShapefileCondition Expression;

x(r"%InputData%")

Code Block

def x(InputData): import arcpy desc = arcpy.Describe(InputData) type = desc.datatype if type == "ShapeFile": return "true" else: return "false"
If input is a Feature ClassCondition Expression;

x(r"%InputData%")

Code Block

def x(InputData): import arcpy desc = arcpy.Describe(InputData) type = desc.datatype if type == "FeatureClass": return "true" else: return "false"

Next Article

Basemap Releases Include Over 300 New and Updated Communities

Read this article