Summary
Geocodes a table of addresses. This process requires a table that stores the addresses you want to geocode and an address locator or a composite address locator. This tool matches the addresses against the address locator and saves the result for each input record in a new point feature class. When using the ArcGIS World Geocoding Service, this operation may consume credits.
Illustration
Usage
You can geocode addresses that are stored in a single field or are split into multiple fields. A single input field stores the complete address, for example, 303 Peachtree St NE, Atlanta, GA 30308. Multiple fields are supported if the input addresses are split into multiple fields, such as Address, City, State, and ZIP for a general United States address.
Some locators support multiple input addresses fields, such as Address, Address2, and Address3. In this case, the address component can be separated into multiple fields, and the address fields will be concatenated together at the time of geocoding. For example, 100, Main St, and Apt 140 across three fields, or 100 Main St and Apt 140 across two fields, would both become 100 Main St Apt 140 when geocoding.
The output feature class is saved in the same spatial reference as the address locator. Changing the spatial reference of the output feature class is possible by setting a different output coordinate system in the tool's environment settings.
The output feature class, by default, stores a copy of the input address and additional information such as score, status, and matched address of each record. The addresses can be rematched using either the Rematch Addresses tool or the Interactive Rematch dialog box in ArcMap. Editing addresses in the input address table will not change the result in the output feature class once the matching process finishes and the feature class is created.
-
Set the Dynamic Output Feature Class parameter to true (checked) if you want the matching result in the output feature class to be updated automatically when the input address table is updated. A relationship class is created for the input table and the output feature class. When an address in the input table is changed in an editing session in ArcMap, the address will be geocoded again immediately and the related record in the output feature class will be updated with the new geocoding result. The automatic update is also supported for adding a new record or deleting an existing record in the input table.
An ArcGIS Online for organizations subscription is required to match a table of addresses using the ArcGIS World Geocoding Service. See Working with ArcGIS Online World Geocoding Service for more information.
Syntax
GeocodeAddresses(in_table, address_locator, in_address_fields, out_feature_class, {out_relationship_type}, {country}, {location_type})
Parameter | Explanation | Data Type |
in_table | The table of addresses to geocode. | Table View |
address_locator | The address locator to use to geocode the table of addresses. | Address Locator |
in_address_fields [input_address_field, table_field_name] |
Each field mapping in this parameter is in the format input_address_field, table_field_name where input_address_field is the name of the input address field specified by the address locator, and table_field_name is the name of the corresponding field in the table of addresses you want to geocode. You can specify one single input field that stores the complete address, for example, 303 Peachtree St NE, Atlanta, GA 30308. Alternatively, you can specify multiple fields if the input addresses are split into different fields such as Address, City, State, and ZIP for a general United States address. Some locators support multiple input addresses fields, such as Address, Address2, and Address3. In this case, the address component can be separated into multiple fields, and the address fields will be concatenated together at the time of geocoding. For example, 100, Main St, and Apt 140 across three fields, or 100 Main St and Apt 140 across two fields, would both become 100 Main St Apt 140 when geocoding. If you choose not to map an optional input address field used by the address locator to a field in the input table of addresses, specify that there is no mapping by using <None> in place of a field name. | Field Info |
out_feature_class | The output geocoded feature class or shapefile. | Feature Class |
out_relationship_type (Optional) | Indicates whether to create a static copy of the address table inside the geocoded feature class or to create a dynamically updated geocoded feature class.
| Boolean |
country [country,...] (Optional) | Geocoding will be limited to the selected countries. When no country is used, geocoding will be performed against all supported countries. Making a country selection will improve the accuracy of geocoding in most cases. If a field representing countries is in the Input Table and is mapped to the CountryCode Input Address Field, the country value from the Input Table will override the Country parameter. The input value should be specified as ISO 3166-1 3-character country codes. This parameter is not supported for all locators. | String |
location_type (Optional) | Specifies the preferred output geometry for PointAddress matches. The options are the street side location, which can be used for routing, or the rooftop or parcel centroid for the address. If the preferred location does not exist in the data, the default location will be returned instead. For geocode results where Addr_type=PointAddress, the X,Y attribute values describe the coordinates of the address along the street, while the DisplayX and DisplayY values describe the rooftop, or building centroid, coordinates. See the REST API web help for more details about the locationType parameter for geocodeAddresses. This parameter is not supported for all locators.
| String |
Code sample
GeocodeAddresses example (Python window)
The following Python window script demonstrates how to use the GeocodeAddress function in immediate mode using multiline geocoding.
import arcpy
arcpy.env.workspace = "C:/ArcTutor/Geocoding/Atlanta.gdb"
# Set local variables:
address_table = "customers"
address_locator = "C:/ArcTutor/Geocoding/Atlanta"
address_fields = "Street Address;City City;State State;ZIP Zip"
geocode_result = "geocode_result"
arcpy.GeocodeAddresses_geocoding(address_table, address_locator, address_fields,
geocode_result, 'STATIC')
GeocodeAddresses example (Python window)
The following Python window script demonstrates how to use the GeocodeAddress function in immediate mode using singleline geocoding.
import arcpy
arcpy.env.workspace = "C:/ArcTutor/Geocoding/Atlanta.gdb"
# Set local variables:
address_table = "customers"
address_locator = "C:/ArcTutor/Geocoding/Atlanta"
address_fields = "'Single Line Input' SINGLELINE"
geocode_result = "singleline_geocode_result"
arcpy.GeocodeAddresses_geocoding(address_table, address_locator, address_fields,
geocode_result, 'STATIC')
Environments
Licensing information
- Basic: Limited
- Standard: Yes
- Advanced: Yes