テリトリー レベルの追加(Add Territory Level) (テリトリー デザイン)
サマリ
新しいテリトリー レベルを、選択したテリトリー階層に追加します。
使用法
-
[新規テリトリー レベル名] は、オプションのパラメータです。ATDConfig.xml ファイルのデフォルト値の代わりに、シャープ記号「#」を指定できます。
構文
AddTerritoryLevel_TD_td (in_territory_solution_layer, {in_level_name})
パラメータ | 説明 | データ タイプ |
in_territory_solution_layer |
新しいテリトリー レベルを追加するテリトリー ソリューション レイヤ。 | GP TD Layer |
in_level_name (オプション) |
新しいテリトリー レベル名。 | String |
コードのサンプル
AddTerritoryLevel_TD(テリトリー レベルの追加)の例(Python ウィンドウ)
次の Python ウィンドウ スクリプトは、イミディエイト モードでこのツールを使用する方法を示しています。
import arcgisscripting
gp = arcgisscripting.create()
gp.AddTerritoryLevel_TD("new layer", "Regions")
AddTerritoryLevel_TD(テリトリー レベルの追加)の例 2(スタンドアロン スクリプト)
次のスタンドアロン スクリプトで、このツールの使用方法を示します。
# Import system modules
import arcgisscripting
gp = arcgisscripting.create()
# Set local variables
solution = "new layer"
level = "Regions"
# Execute tool
gp.AddTerritoryLevel_TD(solution, level)
環境
このツールはジオプロセシング環境を使用していません
関連トピック
ライセンス情報
ArcGIS for Desktop Basic: 次のものが必要 Business Analyst
ArcGIS for Desktop Standard: 次のものが必要 Business Analyst
ArcGIS for Desktop Advanced: 次のものが必要 Business Analyst
5/20/2014