Entering values with the keyboard is not the only way you can edit values in a table. In some cases, you might want to perform a mathematical calculation to set a field value for a single record or even all records. You can perform simple as well as advanced calculations on all or selected records. In addition, you can calculate area, length, perimeter, and other geometric properties on fields in attribute tables. The sections below include examples of using the field calculator. Calculations can be performed using either Python or VBScript.
Python is the recommended scripting language for ArcGIS. Use Python if you want access to geoprocessing functionality, including feature geometry. The adoption of Python as the scripting language for ArcGIS 10.0 provides many opportunities for performing calculations.
Strings are supported by a series of Python string functions, including capitalize, rstrip, and replace.
Capitalize the first character of the string in the field CITY_NAME.
!CITY_NAME!.capitalize()
Strip any white space from the end of the string in the field CITY_NAME.
!CITY_NAME!.rstrip()
Replace any occurrences of "california" with "California" found in the field STATE_NAME.
!STATE_NAME!.replace("california", "California")
Characters in a string field can be accessed by indexing and slicing in Python. Indexing fetches characters at an index position; slicing fetches a group of characters.
Example | Explanation | Result |
!fieldname![0] | The first character. | "a" |
!fieldname![-2] | The second-last character. | "e" |
!fieldname![1:4] | The second, third, fourth, and fifth characters. | "bcd" |
Python also supports the string formatting using the % operator.
Combine FieldA and FieldB separated by a colon.
"%s:%s" % (!FieldA!, !FieldB!)
Python provides tools for processing numbers. Python also supports a number of numeric and mathematical functions, including math, cmath, decimal, random, itertools, functools, and operator.
Operator | Explanation | Example | Result |
x + y | x plus y | 1.5 + 2.5 | 4 |
x - y | x minus y | 3.3 - 2.2 | 1.1 |
x * y | x times y | 2.0 * 2.2 | 4.4 |
x / y | x divided by y | 4.0 / 1.25 | 3.2 |
x // y | x divided by y (floor division) | 4.0 / 1.25 | 3 |
x % y | x modulo y | 8 % 3 | 2 |
-x | negative expression of x | x = 5 | -5 |
-x | |||
+x | x is unchanged | x = 5 | 5 |
+x | |||
x ** y | x raised to the power of y | 2 ** 3 | 8 |
Multiplication
!Rank! * 2
Calculate volume of a sphere given a radius field.
4 / 3 * math.pi * !Radius! ** 3
With Python expressions and the Code Block parameter, you can:
How the code block is used is determined by the parser used. The Field Calculator supports Python and VB Script parsers.
Parser |
Code Block |
---|---|
Python |
Supports Python functionality. The code block is expressed using Python functions (def). Geometry properties are expressed using geoprocessing objects such as Point objects where appropriate. |
VB Script |
Calculations are performed using VBScript. |
Python functions are defined using the def keyword followed by the name of the function and the function’s input parameters. Values are returned from the function using a return statement. The function name is your choice (don't use spaces or leading numbers).
Remember, Python enforces indentation as part of the syntax. Use two or four spaces to define each logical level. Align the beginning and end of statement blocks, and be consistent.
Round a field's value to two decimal places.
Expression:
round(!area!,2)
Parser: Python
Use the math module to help convert meters to feet. The conversion is raised to the power of 2 and multiplied by the area.
Parser: Python Expression:
MetersToFeet((float!shape.area))
Code Block:
1 def MetersToFeet(area): 2 return math.pow(3.2808,2) * area
Classify based on field values.
Parser: Python Expression:
Reclass(!WELL_YIELD!)
Code Block:
1 def Reclass(WellYield): 2 if (WellYield >= 0 and WellYield <= 10): 3 return 1 4 elif (WellYield > 10 and WellYield <= 20): 5 return 2 6 elif (WellYield > 20 and WellYield <= 30): 7 return 3 8 elif (WellYield > 30): 9 return 4
For more on converting geometry units, see the section 'Geometry unit conversions' below.
Calculate the area of a feature.
Parser: Python Expression:
!shape.area!
Calculate the maximum X-coordinate of a feature.
Parser: Python Expression:
!shape.extent.XMax!
Calculate the vertex count of a feature.
Parser: Python Expression:
MySub(!shape!)
Code Block:
1 def MySub(feat): 2 partnum = 0 3 4 # Count the number of points in the current multipart feature 5 partcount = feat.partCount 6 pntcount = 0 7 8 # Enter while loop for each part in the feature (if a singlepart feature 9 # this will occur only once) 10 # 11 while partnum < partcount: 12 part = feat.getPart(partnum) 13 pnt = part.next() 14 15 # Enter while loop for each vertex 16 # 17 while pnt: 18 pntcount += 1 19 pnt = part.next() 20 21 # If pnt is null, either the part is finished or there is an 22 # interior ring 23 # 24 if not pnt: 25 pnt = part.next() 26 partnum += 1 27 return pntcount
For a point feature class, shift the x coordinate of each point by 100.
Parser: Python Expression:
shiftXCoordinate(!SHAPE!)
Code Block:
1 def shiftXCoordinate(shape): 2 shiftValue = 100 3 point = shape.getPart(0) 4 point.X += shiftValue 5 return point
Shape and length properties of the geometry field can be modified with unit types expressed with an @ sign.
If the data is stored in a geographic coordinate system and a linear unit (for example, feet) is supplied, the length calculation will be converted using a geodesic algorithm.
Converting the areal units on data in a geographic coordinate system will yield questionable results since decimal degrees are not consistent across the globe.
Calculate a feature's length in yards.
Parser: Python Expression:
!shape.length@yards!
Calculate a feature's area in acres.
Parser: Python Expression:
!shape.area@acres!
Calculate the current date.
Parser: Python Expression:
time.strftime("%d/%m/%Y")
Calculate the current date and time.
Parser: Python Expression:
time.strftime("%d/%m/%Y %H:%M")
Return the three right-most characters.
Parser: Python Expression:
!SUB_REGION![-3:]
Replace any cases of an uppercase "P" with a lowercase "p".
Parser: Python Expression:
!STATE_NAME!.replace("P","p")
Concatenate two fields with a space separator
Parser: Python Expression:
!SUB_REGION! + " " + !STATE_ABBR!
The following examples show different ways to convert words so that each word has the first character capitalized and the rest of the letters in lowercase.
Parser: Python Expression:
' '.join([i.capitalize() for i in !STATE_NAME!.split(' ')])
Parser: Python Expression:
1 string.capwords(!STATE_NAME!, ' ') 2 3 Expression Type: 4 import string 5 6 Parser: 7 Python 8 9 Expression: 10 MySub(!STATE_NAME!) 11 12 Code Block: 13 def MySub(myfieldname): 14 import string 15 return string.capwords(myfieldname, ' ')
Calculate a sequential ID or number based on an interval.
Parser: Python Expression:
autoIncrement()
Code Block:
1 rec=0 2 def autoIncrement(): 3 global rec 4 pStart = 1 #adjust start value, if req'd 5 pInterval = 1 #adjust interval value, if req'd 6 if (rec == 0): 7 rec = pStart 8 else: 9 rec = rec + pInterval 10 return rec
Calculate the accumulative value of a numeric field.
Parser: Python Expression:
accumulate(!FieldA!)
Code Block:
1 total = 0 2 def accumulate(increment): 3 global total 4 if total: 5 total += increment 6 else: 7 total = increment 8 return total
Calculate the percentage increase of a numeric field.
Parser: Python Expression:
percentIncrease(float(!FieldA!))
Code Block:
1 lastValue = 0 2 def percentIncrease(newValue): 3 global lastValue 4 if lastValue: 5 percentage = ((newValue - lastValue) / lastValue) * 100 6 else: 7 percentage = 0 8 lastValue = newValue 9 return percentage
Use the numpy site-package to calculate random float values between 0.0 and 1.0.
Parser: Python Expression:
getRandomValue()
Code Block:
1 import numpy.random as R 2 3 def getRandomValue(): 4 return R.random()