範囲ドメインの値を設定(Set Value For Range Domain) (データの管理)

サマリ

既存の範囲ドメインの最小値と最大値を設定します。

使用法

構文

SetValueForRangeDomain_management (in_workspace, domain_name, min_value, max_value)
パラメータ説明データ タイプ
in_workspace

更新対象のドメインを含むジオデータベース。

Workspace
domain_name

更新対象の範囲ドメインの名前。

String
min_value

範囲ドメインの最小値。

String
max_value

範囲ドメインの最大値。

String

コードのサンプル

Set Value for Range Domain(範囲ドメインの値を設定)の例(Python ウィンドウ)

次の Python ウィンドウ スクリプトは、Set Value for Range Domain(範囲ドメインの値を設定)関数をイミディエイト モードで使用する方法を、例を挙げて示したものです。

import arcpy
from arcpy import env
env.workspace =  "C:/data"
arcpy.SetValueForRangeDomain_management("montgomery.gdb", "RotAngle", 0, 359)
Set Value for Range Domain(範囲ドメインの値を設定)の例 2(スタンドアロン スクリプト)

次のスタンドアロン スクリプトは、範囲属性ドメインを作成するワークフローの一部として、Set Value for Range Domain(範囲ドメインの値を設定)関数を使用する方法を示しています。

# Name: CreateRangeDomain.py
# Purpose: Create an attribute domain to constrain valid rotation angle
# 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
    dWorkspace = "montgomery.gdb"
    domName = "RotAngle2"
    domDesc = "Valid rotation angle"
    minRange = 0
    maxRange = 359
    inFeatures = "Montgomery.gdb/Water/fittings"
    inField = "ANGLE"
 
    # Process: Create the range domain
    arcpy.CreateDomain_management(dWorkspace, domName, domDesc, "LONG", "RANGE")
 
    # Process: Set the minimum and maximum values for the range domain
    arcpy.SetValueForRangeDomain_management(dWorkspace, domname, minRange, maxRange)
 
    # Process: Constrain the fitting rotation angle
    arcpy.AssignDomainToField_management( inFeatures, inField, domName)
 
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