Label | Explanation | Data Type |
Geography Level
| The geography level that will be used to define the trade area. | String |
Output Feature Class
| The output feature containing the trade area. | Feature Class |
Input Type
(Optional) | Specifies whether the geography IDs will be from a table or a list.
| String |
Geography IDs Table
(Optional) | The input table with IDs that will be used to select geographies that will define the trade area. | Table View |
Geography Key Field
(Optional) | A field in the Geography IDs Table parameter value that identifies the records that will be included in the output. | Field |
Geography IDs List
(Optional) | The input list of comma-separated geography IDs. | String |
Summarize Duplicate IDs
(Optional) | Specifies whether duplicate fields in the table containing matching geography IDs will be summarized.
| Boolean |
Group Field
(Optional) | The field that will be used to perform a group by operation. | Field |
Dissolve Output Features
(Optional) | Specifies whether the output will be dissolved based on the Group Field parameter value.
| Boolean |
Available with Business Analyst license.
Summary
Creates trade areas based on predefined named statistical areas. This tool does not consume credits.
Illustration
Usage
Standard geographies are trade areas based on standardized administrative boundaries. In the United States, this includes layers such as states, counties, ZIP Codes, block groups, census tracts, core-based statistical areas (CBSA), designated market areas (DMA), and places. Each country dataset offers administrative boundaries that can vary. Individual trade areas are created for each unique geography, for example, each state or each ZIP Code that you select.
When the Input Type parameter is set to List, the maximum number of features generated is 1000.
There is no maximum features limitation when the Input Type parameter is set to Table.
The table can be in any format supported by ArcGIS Pro, for example, a comma- or tab-delimited text file (.txt) or a Microsoft Excel file.
One layer can contain several trade areas, for example, one whole layer containing a collection of counties.
-
The list of IDs must be in a table or list format.
In the list format, the ID items must be separated by commas.
The geography ID for the entire country trade area is 01.
When the Input Type parameter is set to Table, the associated Geography Key Field parameter value must be a text field.
Parameters
arcpy.ba.StandardGeographyTA(geography_level, out_feature_class, {input_type}, {in_ids_table}, {geography_key_field}, {ids_list}, {summarize_duplicates}, {group_field}, {dissolve_output})
Name | Explanation | Data Type |
geography_level | The geography level that will be used to define the trade area. | String |
out_feature_class | The output feature containing the trade area. | Feature Class |
input_type (Optional) | Specifies whether the geography IDs will be from a table or a list.
| String |
in_ids_table (Optional) | The input table with IDs that will be used to select geographies that will define the trade area. | Table View |
geography_key_field (Optional) | A field in the in_ids_table parameter value that identifies the records that will be included in the output. | Field |
ids_list (Optional) | The input list of comma-separated geography IDs. | String |
summarize_duplicates (Optional) | Specifies whether duplicate fields in the table containing matching geography IDs will be summarized.
| Boolean |
group_field (Optional) | The field that will be used to perform a group by operation. | Field |
dissolve_output (Optional) | Specifies whether the output will be dissolved based on the group_field parameter value.
| Boolean |
Code sample
The following Python window script demonstrates how to use the StandardGeographyTA function:
import arcpy
arcpy.ba.StandardGeographyTA("US.ZIP5", r"C:\Temp\Output.gdb\StdGeogTradeAreas",
None, None, "92111,92117,92122", "USE_FIRST", None,
"DISSOLVE")
Environments
Licensing information
- Basic: Requires Business Analyst
- Standard: Requires Business Analyst
- Advanced: Requires Business Analyst