标注 | 说明 | 数据类型 |
输入要素类 | 要重新匹配的地理编码要素类。 | Feature Class |
Where 子句 | 用于选择要素子集的 SQL 表达式。 | SQL Expression |
派生输出
标注 | 说明 | 数据类型 |
更新后的输入要素类 | 更新后的地理编码要素类。 | Feature Class |
重新匹配地理编码要素类中的地址。
Rematching addresses in the geocoded feature class using the ArcGIS World Geocoding Service requires an ArcGIS Online for organizations organizational account, and it consumes credits. 组织账户必须具有足够的配额,才能完成整个重新匹配请求。
当活动门户为 ArcGIS Online 且输入定位器为 ArcGIS World Geocoding Service 时,工具顶部将提供配额估算。
在更新地理编码器的新数据后,使用此工具运行匹配过程,以使用新数据更新地理编码要素类。
输入要素类必须是地理编码地址工具创建的要素类,或者是对地址表进行地理编码的过程。
标注 | 说明 | 数据类型 |
输入要素类 | 要重新匹配的地理编码要素类。 | Feature Class |
Where 子句 | 用于选择要素子集的 SQL 表达式。 | SQL Expression |
标注 | 说明 | 数据类型 |
更新后的输入要素类 | 更新后的地理编码要素类。 | Feature Class |
arcpy.geocoding.RematchAddresses(in_geocoded_feature_class, in_where_clause)
名称 | 说明 | 数据类型 |
in_geocoded_feature_class | 要重新匹配的地理编码要素类。 | Feature Class |
in_where_clause | 用于选择要素子集的 SQL 表达式。有关 SQL 语法的详细信息,请参阅帮助主题在 ArcGIS 中使用的查询表达式的 SQL 参考。 | SQL Expression |
名称 | 说明 | 数据类型 |
out_geocoded_feature_class | 更新后的地理编码要素类。 | Feature Class |
The following Python window script demonstrates how to use the RematchAddresses function in immediate mode.
# Rematch unmatched addresses in a geocoded feature class.
# Import system modules
import arcpy
arcpy.env.workspace = "C:/ArcTutor/Geocoding/atlanta.gdb"
# Set local variables:
where_clause = "Status = 'U' "
geocoded_feature_class = "geocode_result"
arcpy.geocoding.RematchAddresses(geocoded_feature_class, where_clause)