Create Territory Report (Territory Design)

Lizenzstufe:BasicStandardAdvanced

Zusammenfassung

Generates a report for a Territory Solution.

Verwendung

Syntax

CreateTerritoryReport_TD_td (in_territory_solution_layer, {in_stat_fields}, {in_data_fields}, {in_chart_fields}, {in_report_folder}, {in_report_name}, {in_report_title})
ParameterErläuterungDatentyp
in_territory_solution_layer

The Territory Solution layer to be used in the Report.

GP TD Layer
in_stat_fields
[in_stat_fields,...]
(optional)

The variables to be included inside the Statistics section of the report.

GP Value Table
in_data_fields
[in_data_fields,...]
(optional)

The variables to be included inside the Data section of the report.

GP Value Table
in_chart_fields
[in_chart_fields,...]
(optional)

The variables to be included inside the Chart section of the Report.

GP Value Table
in_report_folder
(optional)

The location of the Report Folder.

String
in_report_name
(optional)

The name of the Report file.

String
in_report_title
(optional)

The title of the Report.

String

Codebeispiel

The following Python window script demonstrates how to use Business Analyst geoprocessing tool in immediate mode.

import arcgisscripting
gp = arcgisscripting.create()
gp.CreateTerritoryReport_TD("new layer", "'Count';'AREA_SUM' SUM;'AREA_SUM' MIN;'TOTPOP_CY_SUM' MAX", "'Count';'AREA_SUM';'TOTPOP_CY_SUM'", "'Count';'AREA_SUM';'TOTPOP_CY_SUM'", "C:/BA Output/Project/Default Project/Reports/", "New Report" , "The Territory Report of New Territory Solution")

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"
statistics = "'Count';'AREA_SUM' SUM;'AREA_SUM' MIN;'TOTPOP_CY_SUM' MAX"
data = "'Count';'AREA_SUM';'TOTPOP_CY_SUM'"
chart = "'Count';'AREA_SUM';'TOTPOP_CY_SUM'"
folder = "C:/BA Output/Project/Default Project/Reports/"
name = "New Report"
title = "The Territory Report of New Territory Solution"

# Execute tool
gp.CreateTerritoryReport_TD(solution, statistics, data, chart, folder, name, title)

Umgebung

Dieses Werkzeug verwendet keine Geoverarbeitungsumgebungen.

Verwandte Themen

Lizenzierungsinformationen

ArcGIS for Desktop Basic: Erfordert Business Analyst
ArcGIS for Desktop Standard: Erfordert Business Analyst
ArcGIS for Desktop Advanced: Erfordert Business Analyst
4/26/2014