条件属性

摘要

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

了解有关设置追踪功能的详细信息

属性

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

条件是否将 Or 条件用于 combine using 参数。

  • True - combine using 参数使用 Or 条件。
  • False - combine using 参数不使用 Or 条件。 这意味着 combine using 参数可能使用 And 条件,或者在没有多个条件的情况下无值。

Boolean
isSpecificValue
(只读)

条件是否使用特定值来终止追踪。

  • True - 条件设置为特定值。
  • False - 条件未设置为特定值。

Boolean
name
(只读)

用于条件的网络属性或类别的名称 - 例如,Device status

String
operator
(只读)

用于条件的运算符 - 例如,等于或大于等于。

String
type
(只读)

使用的条件的类型 - 例如,使用特定值或网络属性。

String
value
(只读)

用于条件的网络属性或类别的特定值。

Integer

代码示例

公共设施网络函数和条件属性示例(独立脚本)

以下独立 Python 脚本可打印某些公共设施网络属性的报告。

# 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:
    print(f"Domain Network Name: {dom.domainNetworkName}")
    
    # For each tier in the domain network
    for tier in dom.tiers:
        print(f"Tier Name: {tier.name}")
                
        # Update Subnetwork Trace Configuration Properties     
        ust = tier.updateSubnetworkTraceConfiguration

        # Functions Properties
        print(" - Functions Properties - ")
        for f in ust.functions:
            # Try to get these properties if the exist, else, print the empty list
            try:
                print(f"Function Type: {f.functionType}")
                print(f"Function Network Attribute Name: {f.networkAttributeName}")
                print(f"Function Summary Attribute Name: {f.summaryAttributeName} \n")
                # Function Conditions
                print(" - Function Conditions - ")
                for fc in f.conditions:
                    print(f"Name: {fc.name}")
                    print(f"Type: {fc.type}")
                    print(f"Operator: {fc.operator}")
                    print(f"Value: {fc.value}")
                    print(f"CombineUsingOr: {fc.combineUsingOr}")
                    print(f"Is Specific Value: {fc.isSpecificValue} \n")
            except:
                print("Skipped functions properties. \n")

在本主题中