テリトリーを商圏へエクスポート(Export Territories to Trade Areas) (テリトリー デザイン)

ライセンス レベル:BasicStandardAdvanced

サマリ

テリトリーを Business Analyst 商圏にエクスポートします。

テリトリーをエクスポートすると、Business Analyst は商圏作成ウィザード内でテリトリー ポリゴンを読み取ることができます。

使用法

構文

ExportTerritoriesToTradeAreas_td (in_territory_solution_layer, in_level, {in_export_territory}, {in_ta_name})
パラメータ説明データ タイプ
in_territory_solution_layer

エクスポートするテリトリー ソリューション レイヤ。

GP TD Layer
in_level

エクスポートするテリトリー レベル。

String
in_export_territory
(オプション)

(指定した形式で)エクスポートするテリトリーの名前、または指定したレベルからすべてのテリトリーをエクスポートするキーワード。

  • ALL_TERRITORIES_FROM_LEVEL このレベルからすべてのテリトリーをエクスポートします。
String
in_ta_name
(オプション)

商圏の名前。

String

コードのサンプル

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

import arcgisscripting
gp = arcgisscripting.create()
gp.ExportTerritoriesToTradeAreas_TD("new layer", "Territories[1]", "ALL_TERRITORIES_FROM_LEVEL", "New Trade Area")

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

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

# Set local variables
solution = "new layer"
level = "Territories[1]"
territory = "ALL_TERRITORIES_FROM_LEVEL"
name = "New Trade Area"

# Execute tool
gp.ExportTerritoriesToTradeAreas_TD(solution, level, territory, name)

環境

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

関連トピック

ライセンス情報

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