有效设备属性

此 ArcGIS 3.0 文档已 存档,并且不再对其进行更新。 其中的内容和链接可能已过期。 请参阅最新文档

摘要

以下属性是在公共设施网络中使用 Describe 时由 validDevices 对象返回的。

了解有关子网的详细信息

属性

属性说明数据类型
assetGroupCode
(只读)

有效设备的资产组代码。

Integer
assetTypes
(只读)

assetTypes 对象。 此对象可用于检索有效设备资产类型的 assetTypeCodeassetTypeCode 为有效设备资产类型代码的整数值。

Object

代码示例

公共设施网络有效设备属性(独立脚本)

检索有效设备的 assetTypes 对象的资产类型代码。

# Import required modules
import arcpy

# Describe functions on a Utility Network
UN = "C:\\Projects\\MyProject\\unowner.sde\\Naperville.UNOWNER.Naperville\\Naperville.UNOWNER.Naperville" 
d = arcpy.Describe(UN)

# Domain Network properties
domnets = d.domainNetworks

# For each domain network in the utility network
for dom in domnets:
    # For each tier in the domain network
    for tier in dom.tiers:
        # Print the valid device Properties        
        for vd in tier.validDevices:
            print(" -- Valid Devices Properties -- ")
            print("Asset Group Code: {0} \n".format(vd.assetGroupCode))
            print(" - Asset Type Properties - ")
            for at in vd.assetTypes:
                print("Asset Type Code: {0}".format(at.assetTypeCode))

在本主题中