Business Analyst ライセンスで利用できます。
概要
テリトリー ソリューションのレポートを生成します。
使用法
各統計フィールド変数の形式は、「‘変数' Calc」にする必要があります。ここで、「Calc」は、ATDConfig.xml ファイルで指定されたテリトリー デザイン演算のうちの 1 つです。
各データ フィールド変数およびチャート変数の形式は、「‘変数'」にする必要があります。
レポート フォルダーの場所は、デフォルトでは、現在の Business Analyst プロジェクトの「Reports」フォルダーの下です。
構文
arcpy.td.CreateTerritoryReport_td(in_territory_solution_layer, {in_stat_fields}, {in_data_fields}, {in_chart_fields}, {in_report_location}, {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_location (オプション) | レポート フォルダーの場所。 | Folder |
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)
環境
このツールは、ジオプロセシング環境を使用しません。
ライセンス情報
- Basic: 次のものが必要 Business Analyst
- Standard: 次のものが必要 Business Analyst
- Advanced: 次のものが必要 Business Analyst