テリトリー レポートの作成(Create Territory Report) (テリトリー デザイン)

ライセンス レベル:BasicStandardAdvanced

サマリ

テリトリー ソリューションのレポートを生成します。

使用法

構文

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})
パラメータ説明データ タイプ
in_territory_solution_layer

レポートで使用されるテリトリー ソリューション レイヤ。

GP TD Layer
in_stat_fields
[in_stat_fields,...]
(オプション)

レポートの統計セクションに含まれる変数。

GP Value Table
in_data_fields
[in_data_fields,...]
(オプション)

レポートのデータ セクションに含まれる変数。

GP Value Table
in_chart_fields
[in_chart_fields,...]
(オプション)

レポートのチャート セクションに含まれる変数。

GP Value Table
in_report_folder
(オプション)

レポート フォルダの場所。

String
in_report_name
(オプション)

レポート ファイルの名前。

String
in_report_title
(オプション)

レポートのタイトル。

String

コードのサンプル

次の Python ウィンドウ スクリプトは、イミディエイト モードで Business Analyst ジオプロセシング ツールを使用する方法を示しています。

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")

次のスタンドアロン スクリプトで、このツールの使用方法を示します。

# 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)

環境

このツールはジオプロセシング環境を使用していません

関連トピック

ライセンス情報

ArcGIS for Desktop Basic: 次のものが必要 Business Analyst
ArcGIS for Desktop Standard: 次のものが必要 Business Analyst
ArcGIS for Desktop Advanced: 次のものが必要 Business Analyst
5/20/2014