属性結合による変数のインポート(Import Variables by Attribute Join) (テリトリー デザイン)

ライセンス レベル:BasicStandardAdvanced

サマリ

属性結合によって外部変数をテリトリー ソリューションに結合します。

使用法

構文

ImportVariablesByAttributeJoin_TD_td (in_territory_solution_layer, in_table, in_field_territories, in_field_table, in_variables)
パラメータ説明データ タイプ
in_territory_solution_layer

変数のインポート先のテリトリー ソリューション レイヤ。

GP TD Layer
in_table

変数のインポート元のテーブル。

Table
in_field_territories

基本単位レイヤの結合フィールド。

Field
in_field_table

インポート テーブルの結合フィールド。

Field
in_variables
[in_variables,...]

入力テーブルからインポートする一連のフィールド。

Field

コードのサンプル

ImportVariablesByAttributeJoin_TD(属性結合による変数のインポート)の例(Python ウィンドウ)

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

import arcgisscripting
gp = arcgisscripting.create()
gp.ImportVariablesByAttributeJoin_TD("new layer", "C:/database.lyr", "ID", "ID", "AREA;TOTPOP_CY")
ImportVariablesByAttributeJoin_TD(属性結合による変数のインポート)の例 2(スタンドアロン スクリプト)

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

# Import system modules
import arcgisscripting
gp = arcgisscripting.create()

# Set local variables
solution = "new layer"
table = "C:/database.lyr"
joinFieldAlignmentLayer = "ID"
joinFieldTable = "ID"
variables = "AREA;TOTPOP_CY"

# Execute tool
gp.ImportVariablesByAttributeJoin_TD(solution, table, joinFieldAlignmentLayer, joinFieldTable, variables)

環境

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

関連トピック

ライセンス情報

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