Import Variables by Spatial Join (Territory Design)

许可等级:BasicStandardAdvanced

摘要

Joins external variables to the Territory Solution by spatial intersection.

用法

语法

ImportVariablesBySpatialJoin_TD_td (in_territory_solution_layer, in_layer, in_variables)
参数说明数据类型
in_territory_solution_layer

The Territory Solution layer to which to import variables.

GP TD Layer
in_layer

The Source layer from which to import variables.

Feature Layer
in_variables
[in_variables,...]

The Set of fields to import from the input table.

Field

代码实例

ImportVariablesBySpatialJoin_TD example (Python window)

The following Python window script demonstrates how to use the tool in immediate mode.

import arcgisscripting
gp = arcgisscripting.create()
gp.ImportVariablesBySpatialJoin_TD("new layer", "C:/layer.lyr", "AREA;TOTPOP_CY")
ImportVariablesBySpatialJoin_TD example 2 (stand-alone script)

The following stand-alone script demonstrates how to use the tool.

# Import system modules
import arcgisscripting
gp = arcgisscripting.create()

# Set local variables
solution = "new layer"
layer = "C:/layer.lyr"
variables = "AREA;TOTPOP_CY"

# Execute tool
gp.ImportVariablesBySpatialJoin_TD(solution, layer, variables)

环境

此工具不使用任何地理处理环境

相关主题

许可信息

ArcGIS for Desktop Basic: 需要 Business Analyst
ArcGIS for Desktop Standard: 需要 Business Analyst
ArcGIS for Desktop Advanced: 需要 Business Analyst
4/27/2014