Export Boundaries And Variables (Territory Design)
摘要
Exports data and geometries to an external feature class.
用法
-
The Territory Level must be at format: Level_Name[Level_Index]
The Feature class must be one of following types: shape file (SHP), Personal Geo database (MDB), Geo database (GDB)
There is an option to select any summarized field, Including: Summary, Maximum, Minimum, Average, Median, Standard Deviation, and Percent of Total. These summarized fields represent the apportioned data within a Territory.
语法
参数 | 说明 | 数据类型 |
in_territory_solution_layer |
The Territory Solution layer whose data is to be exported. | GP TD Layer |
in_level |
The Territory level to export. | String |
out_feature_class |
The Feature Class to which territories are exported. | String |
in_variables [in_variables,...] (可选) |
The Territory Level Variables that are to be exported. | GP Value Table |
in_geometry_type (可选) |
The Geometry type of the features that are to be exported. It should be specified for point-based Alignment Layers.
| Boolean |
代码实例
The following Python window script demonstrates how to use Business Analyst geoprocessing tool in immediate mode.
import arcgisscripting
gp = arcgisscripting.create()
gp.ExportBoundariesAndVariables_TD("new layer", "Territories[1]", "C:/Temp/data.shp", "AREA_SUM;TOTPOP_CY_SUM" , "POLYGON")
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"
level = "Territories[1]"
featureclass = "C:/Temp/data.shp"
variables = "AREA_SUM;TOTPOP_CY_SUM"
geometry = "POLYGON"
# Execute tool
gp.ExportBoundariesAndVariables_TD(solution, level, featureclass, variables, geometry)