Geoprocessing tool to create an address locator
Address locators can be created in any file folder you specify.
The role of a reference dataset defines the role that it plays as reference data for the address locator. The address locator styles provided with ArcGIS use the following values to describe the roles of reference datasets:
Custom locator styles or locator styles provided by third parties may define different roles for reference data feature classes and tables. Refer to their documentation for information on the roles that they define for reference datasets.
Composite address locators cannot be created using this tool. Use the Create Composite Address Locator tool to create a composite address locator.
Parameter | Explanation |
---|---|
in_address_locator_style |
The address locator style on which to base the new address locator.
|
in_field_map |
The mapping of reference data fields used by the address locator style to fields in the reference datasets. Fields with an asterisk (*) next to their names are required by the address locator style. To determine the alias name for a reference data field used by a locator style, open the Create Address Locator tool dialog box and choose the locator style. The name that appears in the Field Name column of the Field Map control is the field's alias name. |
config_keyword (Optional) |
The configuration keyword that determines the storage parameters of the table in a Relational Database Management System (RDBMS)—enterprise and file geodatabases only. |
enable_suggestions (Optional) |
Allows character-by-character auto-complete suggestions to be generated for user input in a client application. This capability facilitates the interactive search user experience by reducing the number of characters that need to be typed before a suggested match is obtained. The idea is that a client application can provide a list of suggestions which is updated with each character entered by a user until the place they are looking for is returned in the list. Only the locator styles provided by Esri can be used to build locators with suggestions enabled. The suggestion functionality is only exposed when such a locator is published as a geocode service. Locators with suggestions enabled can only be saved in a file folder; they cannot be saved in a geodatabase.
|
CreateAddressLocator example (stand-alone script)
The following Python script demonstrates how to use the CreateAddressLocator function.
# Create a street address locator using a street centerline feature class # in a file geodatabase as reference data. # The new address locator will be created in a separate file folder. # Import system modules import arcpy arcpy.env.workspace = "C:/ArcTutor/Geocoding/atlanta.gdb" Atlanta_AddressLocator_OutputPath = "C:/ArcTutor/Geocoding/Atlanta" arcpy.CreateAddressLocator_geocoding("US Address - Dual Ranges", "streets 'Primary Table'", "'Feature ID' OBJECTID VISIBLE NONE;'*From Left' L_F_ADD VISIBLE NONE;'*To Left' L_T_ADD VISIBLE NONE;'*From Right' R_F_ADD VISIBLE NONE;'*To Right' R_T_ADD VISIBLE NONE;'Prefix Direction' PREFIX VISIBLE NONE;'Prefix Type' PRE_TYPE VISIBLE NONE;'*Street Name' NAME VISIBLE NONE;'Suffix Type' TYPE VISIBLE NONE;'Suffix Direction' SUFFIX VISIBLE NONE;'Left City or Place' CITYL VISIBLE NONE;'Right City or Place' CITYR VISIBLE NONE;'Left ZIP Code' ZIPL VISIBLE NONE;'Right ZIP Code' ZIPR VISIBLE NONE;'Left State' STATE_ABBR VISIBLE NONE;'Right State' STATE_ABBR VISIBLE NONE", Atlanta_AddressLocator_OutputPath, "", "DISABLED")
There are no tags for this item.
There are no credits for this item.
There are no use limitations for this item.