Business Analyst ライセンスで利用できます。
概要
既存のソリューションと新しい基本単位レイヤーに基づいて、新規テリトリー ソリューションを作成します。
新規ソリューションには、テリトリー階層、変数、制限、およびベースのテリトリー ソリューションの他のオプションが含まれます。
使用法
任意のポリゴン レイヤーまたはポイント レイヤーを、新しいテリトリー ソリューションの基本単位レイヤーとして使用できます。
基本単位レイヤーのフィールド String、Integer、SmallInteger、Double、Single、Date、OID、GlobalID、GUID を、表示フィールドとして使用できます。デフォルト値は、基本単位レイヤーの表示フィールドです。基本単位レイヤーの表示フィールドが定義されていない場合、最初の適切なフィールドが適用されます。
テリトリー ソリューションの場所は、デフォルトでは、現在の Business Analyst プロジェクトの「Territories」フォルダーの下です。
テリトリー ソリューション名を指定しない場合、そのデフォルト値が生成されます。
構文
arcpy.td.ImportTerritorySolution_TD(in_territory_solution_layer, in_alignment_layer, {in_display_field}, {in_territory_solution_location}, {in_territory_solution_name})
パラメーター | 説明 | データ タイプ |
in_territory_solution_layer | インポート元のテリトリー ソリューション レイヤー。 | GP TD Layer |
in_alignment_layer | 新しいテリトリー ソリューションの基本単位レイヤー。 | Feature Layer |
in_display_field (オプション) | テリトリー ソリューションの表示フィールド。 | Field |
in_territory_solution_location (オプション) | テリトリー ソリューションの位置。 | String |
in_territory_solution_name (オプション) | テリトリー ソリューションの名前。 | String |
コードのサンプル
ImportTerritorySolution_TD (テリトリー ソリューションのインポート) の例 (Python ウィンドウ)
次の Python ウィンドウ スクリプトは、イミディエイト モードでこのツールを使用する方法を示しています。
import arcgisscripting
gp = arcgisscripting.create()
gp.ImportTerritorySolution_TD("new layer", "ZIPCodes_zp", "NAME", "C:/BA Output/Project/Default Project/Territories/", "new layer2")
ImportTerritorySolution_TD (テリトリー ソリューションのインポート) の例 2 (スタンドアロン スクリプト)
次のスタンドアロン スクリプトで、このツールの使用方法を示します。
# Import system modules
import arcgisscripting
gp = arcgisscripting.create()
# Set local variables
solution = "new layer"
alignmentLayer = "ZIPCodes_zp"
displayField = "NAME"
solutionLocation = "C:/BA Output/Project/Default Project/Territories/"
solutionName = "new layer2"
# Execute tool
gp.ImportTerritorySolution_TD(solution, alignmentLayer, displayField, solutionLocation, solutionName)
環境
このツールは、ジオプロセシング環境を使用しません。
ライセンス情報
- Basic: 次のものが必要 Business Analyst
- Standard: 次のものが必要 Business Analyst
- Advanced: 次のものが必要 Business Analyst