Import Variables by Spatial Join (Territory Design)
Summary
Joins external variables to the Territory Solution by spatial intersection.
Usage
-
Any Integer, SmallInteger, Double and Single field from an importing table can be used as in_variables.
Syntax
ImportVariablesBySpatialJoin_TD_td (in_territory_solution_layer, in_layer, in_variables)
Parameter | Explanation | Data Type |
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 |
Code Sample
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)
Environments
This tool does not use any geoprocessing environments
Related Topics
Licensing Information
ArcGIS for Desktop Basic: Requires Business Analyst
ArcGIS for Desktop Standard: Requires Business Analyst
ArcGIS for Desktop Advanced: Requires Business Analyst
3/25/2014