テーブル → ドメイン(Table To Domain) (データの管理)
サマリ
テーブルからの値を使って、コード値ドメインを作成または更新します。
使用法
-
ドメインは、[ドメインの作成(Create Domain)] ツールを使って作成できます。
-
ワークスペース ドメインは、ArcCatalog またはカタログ ウィンドウでも管理できます。[データベース プロパティ] ダイアログ ボックスの [ドメイン] タブを使用して、ドメインを作成および変更できます。
構文
TableToDomain_management (in_table, code_field, description_field, in_workspace, domain_name, {domain_description}, {update_option})
パラメータ | 説明 | データ タイプ |
in_table |
ドメイン値を取得するデータベース テーブル。 | Table View |
code_field |
ドメイン コード値を取得する、データベース テーブルのフィールド。 | Field |
description_field |
ドメインの説明の値を取得する、データベース テーブルのフィールド。 | Field |
in_workspace |
作成または更新するドメインを含むワークスペース。 | Workspace |
domain_name |
作成または更新するドメインの名前。 | String |
domain_description (オプション) |
作成または更新するドメインの説明。既存ドメインの説明は、更新されません。 | String |
update_option (オプション) |
ドメインがすでに存在する場合、ドメインの更新方法を指定します。
| String |
コードのサンプル
TableToDomain(テーブル → ドメイン)の例(Python ウィンドウ)
次の Python ウィンドウ スクリプトは、TableToDomain(テーブル → ドメイン)関数をイミディエイト モードで使用する方法を、例を挙げて示したものです。
import arcpy from arcpy import env env.workspace = "C:/data" arcpy.TableToDomain_management ("diameter.dbf", "code", "descript", "montgomery.gdb", "diameters", "Valid pipe diameters")
TableToDomain(テーブル → ドメイン)の例 2(スタンドアロン スクリプト)
次のスタンドアロン スクリプトは、ワークフローの一部として、TableToDomain(テーブル → ドメイン)関数を使用します。
#Name: TableToDomain.py # Purpose: Update an attribute domain to constrain valid pipe material values #Author: ESRI # Import system modules import arcpy from arcpy import env try: # Set the workspace (to avoid having to type in the full path to the data every time) env.workspace = "C:/data" #Set local parameters domTable = "diameter.dbf" codeField = "code" descField = "descript" dWorkspace = "Montgomery.gdb" domName = "diameters" domDesc = "Valid pipe diameters" # Process: Create a domain from an existing table arcpy.TableToDomain_management(domTable, codeField, descField, dWorkspace, domName, domDesc) except Exception, e: # If an error occurred, print line number and error message import traceback, sys tb = sys.exc_info()[2] print "Line %i" % tb.tb_lineno print e.message
環境
関連項目
ライセンス情報
ArcView: はい
ArcEditor: はい
ArcInfo: はい
7/10/2012