Business Analyst ライセンスで利用できます。
概要
詳細なサマリー レポートを作成します。
詳細レポートには、レベル全体またはテリトリー レベル内の個々のテリトリーを表示できます。このレポートは、選択したテリトリーとそのレベルのスナップショットをすばやく示すために不可欠です。
使用法
テリトリーの形式は、「テリトリー名[テリトリー OID]」にする必要があります。
テリトリー レベルの形式は、「レベル名[レベル インデックス]」にする必要があります。
各統計フィールド変数の形式は、「‘変数' Calc」にする必要があります。ここで、「Calc」は、ATDConfig.xml ファイルで指定されたテリトリー デザイン演算のうちの 1 つです。
各データ フィールド変数の形式は、「‘変数'」にする必要があります。
レポート フォルダーの場所は、デフォルトでは、現在の Business Analyst プロジェクトの「Reports」フォルダーの下です。
構文
arcpy.td.CreateDetailedTerritoryReport_td(in_territory_solution_layer, in_level, in_territories, {in_stat_fields}, {in_data_fields}, {in_report_location}, {in_report_name}, {in_report_title})
パラメーター | 説明 | データ タイプ |
in_territory_solution_layer | レポートで使用されるテリトリー ソリューション レイヤーです。 | GP TD Layer |
in_level | 入力テリトリー レベル。 | String |
in_territories [in_territories,...] | レポートに含まれるテリトリー名のリスト。 | String |
in_stat_fields [in_stat_fields,...] (オプション) | レポートの統計セクションに含まれる変数。 | GP Value Table |
in_data_fields [in_data_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.CreateDetailedTerritoryReport_TD("new layer", "Territories[1]", "Territory 1[1];Territory 2[2]", "'Count';'AREA_SUM' SUM;'AREA_SUM' MIN;'TOTPOP_CY_SUM' MAX", "'Count';'AREA_SUM';'TOTPOP_CY_SUM'", "C:/BA Output/Project/Default Project/Reports/", "New Report" , "The Detailed Territory Report of New Territory Solution")
次のスタンドアロン スクリプトで、このツールの使用方法を示します。
# Import system modules
import arcgisscripting
gp = arcgisscripting.create()
# Set local variables
solution = "new layer"
level = "Territories[1]"
territories = "Territory 1[1];Territory 2[2]"
statistics = "'Count';'AREA_SUM' SUM;'AREA_SUM' MIN;'TOTPOP_CY_SUM' MAX"
data = "'Count';'AREA_SUM';'TOTPOP_CY_SUM'"
folder = "C:/BA Output/Project/Default Project/Reports/"
name = "New Report"
title = "The Detailed Territory Report of New Territory Solution"
# Execute tool
gp.CreateDetailedTerritoryReport_TD(solution, level, territories, statistics, data, folder, name, title)
環境
このツールは、ジオプロセシング環境を使用しません。
ライセンス情報
- Basic: 次のものが必要 Business Analyst
- Standard: 次のものが必要 Business Analyst
- Advanced: 次のものが必要 Business Analyst