ListDomains

サマリー

ジオデータベースに属する属性ドメインをリストします。

構文

ListDomains (workspace)
パラメーター説明データ タイプ
workspace

A geodatabase.

String
戻り値
データ タイプ説明
Domain

Domain オブジェクトを含むリスト。 各 Domain オブジェクトには、ドメイン情報を取得するプロパティが含まれています。

コードのサンプル

ListDomains の例 1

すべてのワークスペース ドメインをリストおよび説明します。

import arcpy

domains = arcpy.da.ListDomains("C:/Boston/Boston.gdb")

for domain in domains:
    print('Domain name: {0}'.format(domain.name))
    if domain.domainType == 'CodedValue':
        coded_values = domain.codedValues
        for val, desc in coded_values.items():
            print('{0} : {1}'.format(val, desc))
    elif domain.domainType == 'Range':
        print('Min: {0}'.format(domain.range[0]))
        print('Max: {0}'.format(domain.range[1]))

関連トピック


このトピックの内容