データとテリトリーのエクスポート(Export Data and Territories) (テリトリー デザイン)
サマリ
テリトリー データベースと基本単位レイヤのレコードを外部フィーチャクラスとしてエクスポートします。
テリトリー基本単位レイヤのエクスポートは、特に異なるデータベースから属性を結合させる場合に便利です。
使用法
-
フィーチャクラスのタイプは、シェープ ファイル(SHP)、パーソナル ジオデータベース(MDB)、ファイル ジオデータベース(GDB)のうちのいずれかである必要があります。
構文
ExportDataAndTerritories_td (in_territory_solution_layer, out_feature_class, {in_fields}, {in_geometry_type})
パラメータ | 説明 | データ タイプ |
in_territory_solution_layer |
エクスポートされるデータを含むテリトリー ソリューション レイヤ。 | GP TD Layer |
out_feature_class |
テリトリーのエクスポート先のフィーチャクラスのタイプ。 | String |
in_fields (オプション) |
エクスポートするフィールド。 | GP Value Table |
in_geometry_type (オプション) |
出力ジオメトリのタイプ。
| Boolean |
コードのサンプル
次の Python ウィンドウ スクリプトは、イミディエイト モードで Business Analyst ジオプロセシング ツールを使用する方法を示しています。
import arcgisscripting
gp = arcgisscripting.create()
gp.ExportDataAndTerritories_TD("new layer", "C:/Temp/data.shp", "AREA;TOTPOP_CY", "POLYGON")
次のスタンドアロン スクリプトで、このツールの使用方法を示します。
# Import system modules
import arcgisscripting
gp = arcgisscripting.create()
# Set local variables
solution = "new layer"
featureclass = "C:/Temp/data.shp"
fields = "AREA;TOTPOP_CY"
geometry = "POLYGON"
# Execute tool
gp.ExportDataAndTerritories_td(solution, featureclass, fields, geometry)
環境
このツールはジオプロセシング環境を使用していません
関連トピック
ライセンス情報
ArcGIS for Desktop Basic: 次のものが必要 Business Analyst
ArcGIS for Desktop Standard: 次のものが必要 Business Analyst
ArcGIS for Desktop Advanced: 次のものが必要 Business Analyst
5/20/2014