サマリー
ジオデータベースに属する属性ドメインをリストします。
構文
ListDomains (workspace)
パラメーター | 説明 | データ タイプ |
workspace | The geodatabase from which domain information will be returned. | String |
コードのサンプル
すべてのワークスペース ドメインをリストおよび説明します。
import arcpy
domains = arcpy.da.ListDomains("C:/Boston/Boston.gdb")
for domain in domains:
print(f"Domain name: {domain.name}")
if domain.domainType == "CodedValue":
coded_values = domain.codedValues
for val, desc in coded_values.items():
print(f"{val} : {desc}")
elif domain.domainType == "Range":
print(f"Min: {domain.range[0]}")
print(f"Max: {domain.range[1]}")