Aggregated Lines for SubnetLine properties
Summary
The properties below are returned by the aggregatedLinesForSubnetLine object when using Describe on a utility network.
Properties
| Property | Explanation | Data Type |
|---|---|---|
|
assetGroupCode (Read only) |
The asset group code of the aggregated line for the SubnetLine class. |
Integer |
|
assetTypes (Read only) |
The |
Object |
Code sample
Utility network aggregated lines for subnetline properties example (stand-alone script)
Retrieve the asset type code for the assetTypes object for an aggregated line.
# 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}")
# Aggregated Lines for SubnetLine Properties
for al in tier.aggregatedLinesForSubnetLine:
print(" -- Aggregated Lines for SubnetLine Properties -- ")
print(f"Asset Group Code: {al.assetGroupCode} \n")
print(" - Asset Type Properties - ")
for at in al.assetTypes:
print(f"Asset Type Code: {at.assetTypeCode} \n")