Geoprocessing tool that creates street or intersection addresses from point locations in a feature class.
The input feature class must contain point shapes with valid XY coordinates. Addresses will not be returned on points with null coordinates.
The output feature class will contain the same number of records as in the input feature class. Additional fields containing the result addresses are added to the feature class. The names of the fields are prefixed with REV_. If an address cannot be found, the fields will contain empty values.
If the spatial reference of the input feature class is different from the address locator, the address locator will transform the coordinates on the fly and try to find the match. The output feature class will be saved in the same spatial reference as the input feature class. Changing the spatial reference of the output feature class is possible by setting a different output coordinate system in the tool's environment settings.
If a point in the input feature class fails to return an address, it means there are no features in the address locator that can be associated with the input point. Here are a few common causes for the unmatched points:
You can increase the search distance so that the chance to find the nearest address is greater, or use a different address locator that contains more features or covers a larger area to match the input points.
An ArcGIS Online for organizations subscription is required if you reverse geocode a feature class using the ArcGIS World Geocoding Service. See Working with the ArcGIS Online World Geocoding Service for more information.
Parameter | Explanation |
---|---|
in_features |
A point feature class or layer from which addresses are returned based on the features' point location. |
out_feature_class |
The output feature class. |
address_type (Optional) |
Indicates whether to return addresses for the points as street addresses or intersection addresses if the address locator supports intersection matching.
|
search_distance |
The distance used to search for the nearest address or intersection for the point location. Some locators use optimized distance values that do not support overriding the search distance parameter. |
feature_type (Optional) |
Limits the possible match types returned. Single or multiple values can be selected. If a single value is selected, the search tolerance for the input feature type is 500 meters. If multiple values are included, the default search distances specified in the feature type hierarchy table are applied. See the REST API web help for more details about the featureTypes parameter for reverseGeocode. This parameter is not supported for all locators.
|
location_type (Optional) |
This parameter is available for locators that support the locationType parameter. It specifies the preferred output geometry for PointAddress matches. The options for this parameter are a side of street location, which can be used for routing, or the location that represents 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 with 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 thelocationType parameter for geocodeAddresses.. This parameter is not supported for all locators
|
ReverseGeocode example (Python window)
The following Python window script demonstrates how to use the ReverseGeocode function in immediate mode.
# Import system modules import arcpy arcpy.env.workspace = "C:/ArcTutor/Geocoding/atlanta.gdb" # Set local variables: input_feature_class = "geocode_result" address_locator = "C:/ArcTutor/Geocoding/Atlanta.loc" result_feature_class = "customers_with_address" arcpy.ReverseGeocode_geocoding(input_feature_class, address_locator, result_feature_class, "ADDRESS", "100 Meters")
There are no tags for this item.
There are no credits for this item.
There are no use limitations for this item.