Business Analyst ライセンスで利用できます。
概要
テリトリー データベースからテリトリー階層全体をインポートします。
使用法
データベースからテリトリー階層をインポートするフィールドとレベル名は、名前フィールド {ID フィールド} {レベル名}; ... という形式で指定する必要があります。
- レベルは、最下位レベルから最上位レベルまでをコントロールで定義する必要があります。たとえば、Territories、Regions、Areas などです。
- 名前フィールド - テリトリー名のデータベース フィールド。インポートされたテリトリーの名前は、このフィールドに格納されます。このパラメーターは必須です。
- ID フィールド - テリトリー ID のデータベース フィールド。インポートされたテリトリーの ID は、このフィールドに格納されます。このパラメーターはオプションです。テリトリー名を ID として使用する場合は、代わりにシャープ記号「#」を指定できます。
- レベル名 - 指定したレベルの名前。このパラメーターはオプションです。ATDConfig.xml ファイルから読み込んだデフォルトのレベル名を使用する場合は、代わりにシャープ記号「#」を指定できます。
基本単位レイヤーのフィールド String、Integer、SmallInteger、Double、Single、Date、OID、GlobalID、GUID、XML を、基本単位レイヤーの結合フィールドとして使用できます。
基本単位レイヤーのフィールド String、Integer、SmallInteger、Double、Single、Date、OID、GlobalID、GUID、XML を、データベースの結合フィールドとして使用できます。
構文
arcpy.td.ImportTerritoriesFromDatabase_TD(in_territory_solution_layer, in_database, in_fields_map, {in_al_join_field}, {in_table_join_field})
パラメーター | 説明 | データ タイプ |
in_territory_solution_layer | テリトリーのインポート先のテリトリー ソリューション レイヤー。 | GP TD Layer |
in_database | テリトリー階層データを含むテーブル。 | Table |
in_fields_map [in_fields_map,...] | データベースからテリトリー階層をインポートするフィールドと、レベル名。 | Fields Map |
in_al_join_field (オプション) | インポートされたテーブルと結合する、基本単位レイヤーのフィールド。 | Field |
in_table_join_field (オプション) | 基本単位レイヤーと結合する、インポートされたテーブルのフィールド。 | Field |
コードのサンプル
ImportTerritoriesFromDatabase (テリトリーをデータベースからインポート) の例 (Python ウィンドウ)
次の Python ウィンドウ スクリプトは、イミディエイト モードでこのツールを使用する方法を示しています。
import arcgisscripting
gp = arcgisscripting.create()
gp.ImportTerritoriesFromDatabase_TD("new layer", "C:/Data/TerritoryHierarchy.dbf", "Territorie Territo_ID Territories;Regions Regions_ID Regions", "ID", "ID")
ImportTerritoriesFromDatabase (テリトリーをデータベースからインポート) の例 2 (スタンドアロン スクリプト)
次のスタンドアロン スクリプトで、このツールの使用方法を示します。
# Import system modules
import arcgisscripting
gp = arcgisscripting.create()
# Set local variables
solution = "new layer"
database = "C:/Data/TerritoryHierarchy.dbf"
fieldsMap = "Territory Territory_ID Territories;Regions Regions_ID Regions"
alJoinField = "ID"
dbJoinField = "ID"
# Execute tool
gp.ImportTerritoriesFromDatabase_TD(solution, database, fieldsMap, alJoinField, dbJoinField)
環境
このツールは、ジオプロセシング環境を使用しません。
ライセンス情報
- Basic: 次のものが必要 Business Analyst
- Standard: 次のものが必要 Business Analyst
- Advanced: 次のものが必要 Business Analyst