ArcGIS Pro

Big improvements for field management in Geoprocessing in ArcGIS Pro 3.2

Approximate Reading Time: 15 minutes

If you’ve ran tools like Add Spatial Join, Export Features, or Append before you may have seen or used the field map parameter.

The geoprocessing field map parameter controls how attributes are transferred, mapped, or matched between datasets. You can use the field map to modify the attribute fields, perform calculations, concatenations, truncate field values, or perform field matching.

The field map in ArcGIS Pro 3.1 and earlier

For those familiar with the field map parameter, you may be used to the previous layout:

The field map parameter in ArcGIS Pro 3.1
The field map parameter in ArcGIS Pro 3.1

The field map listed the output (or modified) fields on the left side of the control, and on the right, you could view or modify each field’s Properties (name, alias, etc.), Source and Merge Rule.

Why change the field map design?

Over the last several years we received feedback about the usability of the control, so we wanted to make it more user-friendly and add additional capabilities. For example, if your dataset had 50+ fields, you might have found scrolling and sorting within the control’s screen “real-estate” difficult. For those who were new to or used the field map infrequently, you may have not realized you could switch between the Source and Properties tabs. Or you may have asked yourself, “what does the Merge Rule mean when I am not using the Merge tool”? We also received several requests from the ArcGIS Pro Ideas Community to either change or enhance the field map with additional features.

Starting in summer 2022, we reviewed all requirements, evaluated several design alternatives, and begun working on a new field map design. All of this preparation lead us to ArcGIS Pro 3.2, where we updated the field map parameter’s user interface and added a few additional capabilities.

The field map parameter in ArcGIS Pro 3.2
The field map parameter in ArcGIS Pro 3.2

In this blog, we’ll dive into what’s new, what’s the same, and walk through an example of how to use the updated field map parameter.

What will stay the same?

Although the user interface looks different, the field map parameter is still used for the same purpose, meaning your workflows will not change dramatically, and any models or scripts created in previous releases will continue to work.

For those of you who use the tools with a field map parameter in Python, the arcpy objects and workflow did not change. You can still create and specify the overall field map parameter using arcpy.FieldMappings classes, and configure each output field in an arcpy.FieldMap class.

The Field Map parameter in ArcGIS Pro 3.2

Field mapping on the tool dialog

In ArcGIS Pro 3.2, when you open a tool with a field map parameter, you may notice that it now displays a list of field names with a small icon to the left of the field name, indicating the field type. There is a number to the right of the field name, indicating the number of source fields (if more than one) mapped to that field. If a field has zero source fields, a warning warning icon will display, indicating the field is missing a source.

Note: Fields with no source fields will have NULL values in the output or modified dataset.

Field Map
The field map parameter

At the top of the control there are three buttons: Add Fields Add Fields, Edit Edit (opens the Field Properties window), and a menu menu with additional options. Use the menu to Show Field Aliases, Load Load an existing field map saved as a file, Export Export as a string (.fieldmap file), or  Reset Reset.

Watch this short demo of the field map parameter:

 

The Field Properties Window

Click on the Edit Edit button at the top of the control or to the right of a selected (or hovered) field to open the Field Properties window. Here, you can perform all tasks related to field management and mapping in one space.

View or edit a fields Properties such as the name, alias, type, length and allow NULL values. Perform field matching by modifying a field’s source field, that is the field from the input dataset that will transfer to the output field. Calculate statistics, concatenate source fields, or perform other actions by choosing an associated Action for the source fields.

There are also some notable changes from the previous field map. Merge Rules are now referred to as Actions, because merging is associated with specific tools and behaviors in Pro. The Join action was renamed Concatenate to describe its function more precisely and eliminate any confusion, as joins are also associated with specific tools.

The Field Properties window
The Field Properties window

Watch this short demo of the Field Properties window:

 

Example: Append

Suppose you work for the GIS department in Wilson, NC. You are given datasets for the street centerlines that are split in 2: one for the city streets and one for the county streets.

Your task is to combine them into a single dataset.

You can combine the datasets into a comprehensive layer using the Append tool, which updates an existing target dataset by loading in all the features or records from input datasets.

city_streets and county_streets in Wilson, NC
The city_streets and county_streets datasets in Wilson, NC

Compare the datasets

First, open the attribute tables for the two datasets so we can see how they differ:

attribute tables for the city_streets
The attribute table for the city_streets dataset. N = 2,752
Attribute table for county_streets
The attribute table for the county_streets dataset. N = 2,354

Reconcile the field differences using the field map

Find the Append tool in the Geoprocessing pane, and specify the parameters as follows:

Append tool
Append tool with steps

(1) For the Input Datasets use the city_streets

(2) For the Target Dataset use county_streets

(3) For the Field Matching Type choose Use field map to reconcile field differences
Note: If you ran the tool with the default parameter value Input fields must match target fields, the tool will fail with an error, since as we have seen the schema does not match.

(3) Click the Edit Edit button to open the Field Properties

The Field Properties window in Append

In the Field Properties window, the Fields list contains all fields from county_streets (the Target Dataset).

But all fields, except MILE, have a warning warning next to it! This indicates that these fields have no source fields. As shown above, the schema of the Input Dataset (city_streets) does not match the schema of the Target Dataset (county_streets). As a result, any field with a different name between the two datasets cannot be automatically matched, resulting in the no source fields. Add source fields to these fields prior to running Append, or the field will be composed of all NULL values for the input records.

Note: Hover your mouse over the warning to view a message about it.

The Field Properties window
The Field Properties window

You may have noticed the screenshot of the Field Properties window opened in the Append tool does not match previous screenshots. Let’s explore the differences.

Set Actions and Source Fields

Let’s set the Actions and Source fields to reconcile the differences between the Target and Input datasets.

We’ll start with matching the DATEBUILT field to the MO (month) and YR (year) fields. Recall how the DATEBUILT field stores the month and year of construction with a MM/YYYY format.

We can use DATEBUILT as the source field for both MO and YR by slicing the text:

Add and slice a source field
Add and slice a source field

(1) Hover the DATEBUILT field in the input fields list and click on the slice scissor to open the Slice Text dialog

(2) The first character starts at position 0, so to get the first and second character of DATEBUILT, set the Text Start at 0 and Text End at 1. Then click the Add

(3) We now have a new source field, with the text positions in brackets, indicating its start and end character.

Not Shown: (4) Repeat the same steps above for the YR field, using 3 and 6 for the Text Start and Text End (this will exclude the slash “/” ) to get the four-character Year.

Next, add source fields to the NAME field. Recall in the table above that the city_streets dataset’s street name is split into 3 fields.

Concatenate 3 Source Fields with a space
Concatenate 3 Source Fields with a space

(1) Set DIREC, STREET, and TYPE as the source fields for the NAME
Note: Move around the tags using drag-and-drop to adjust the order.

(2) Click the Action drop-down and choose Concatenate.
This will combine the values from these three fields together with a delimiter. The field map uses a comma delimiter by default, but we’ll use a space.

The rest of the field matching is straight forward. We will set the fields as followed:

In the end, we should have a field map with no warnings, where every field in city_streets (input dataset) has been set as a source in county_streets (target dataset).

Click OK to finish applying these settings in the Field Properties window.

Field map with reconciled field differences.
The field map with reconciled field differences. The (3) next to the NAME field indicates it has 3 source fields.

Result

Run the tool and open the attribute table of the county_streets.

The street centerlines from the city_streets dataset have been appended to the county_streets dataset as additional rows of data. The attribute differences were rectified, so no information was lost in the process.

The updated county_streets dataset
The updated county_streets dataset

Example: Spatial Join

Next, you are given two datasets: the point locations of schools and the police districts.

Your task is to figure out which police districts service the city’s schools, and transfer the school information to their respective district.

Schools and Police Districts
The schools and policedistricts datasets in the City of Wilson, NC

Open the Spatial Join tool to join the schools to the police district based on a spatial relationship.

Specify the following parameters:

Spatial Join tool with steps
The Spatial Join tool with steps

(1) Set the Target Features to the PoliceDistrict

(2) Set the Join Features to the schools

(3) Specify the Output Feature Class.

(4) Set the Match Option to Contains

(5) Expand the field map parameter to view all fields. Then select all fields except for the BEAT field and remove them from the fields list by clicking the remove Remove button.
Note: For the Spatial Join tool, the field map includes all fields from both the target and join features.

(6) Click the Edit Edit button to open the Field Properties

Use the Add Fields dialog

Use the Add Fields Add Fields button to quickly add fields with an action and source field. This button has two parts: the main Add Fields Add Fields button that opens a dialog, and a drop-down to add a new, blank field.

Click on the Add Fields Add Fields button:

Add Fields
Add Fields

(1) Click on the Table drop-down and choose schools to view this dataset’s fields.

(2) For Select Field(s) choose the Students and Teachers fields.

(3) For Select Action(s) choose Sum
Note:
You will only be able to select actions that are applicable to the field’s type.

(4) Click Add.
This will add 2 new fields for the sum of the number of students and teachers in each police district. It will not sum the Students and Teachers fields together.

Not Shown: (5 ) Re-open Add Fields Add Fields:
This time for Select Field(s) choose the School_Name field and for Select Action(s) choose Concatenate. Click Add to add this field to the field map. This will create a new field with a comma separated list of school names in each police district.

The field map will display three new fields that will be in the Spatial Join output feature class: Students_Sum and Teachers_Sum, and School_Name_Join. Each field in the field map has an associated action and source field.

New fields added using the Add Fields button
New fields added using the Add Fields button

Note: You can rename any of these fields, which were named based on the selected input field and action, to something more meaningful to you.

Result

Run the Spatial Join tool.

Open the attribute table to see the result:

Spatial Join result
The Spatial Join result

Summary

We hope you can use this blog as a reference if you would like to learn how to use the field map in ArcGIS Pro 3.2. You can even apply most of these steps to the older field map interface in Pro 3.1 and earlier.

We appreciate your feedback! Please drop by the ArcGIS Pro Ideas Community Page to make enhancement and tool requests.

About the author

Margaret is a Product Engineer on the Geoprocessing team. Her passion for GIS began with her interest in human-environmental relationships, and her graduate studies utilized spatial analysis to study the growing impact of flood-induced cascading disasters caused by sea level rise. Margaret leverages her foundation in research methodologies and spatial analysis techniques in her role at Esri, where she creates written content and demonstrations on technical concepts and functions in ArcGIS Pro. She also contributes to refining and redesigning geoprocessing tools and functions with additional capabilities and improved usability. In her personal life, Margaret is a loving cat parent to three cats, and enjoys swimming and snowboarding.

Connect:
Subscribe
Notify of
2 Comments
Oldest
Newest
Inline Feedbacks
View all comments

Next Article

Dig into the 2022 U.S. Census of Agriculture

Read this article