Свойства инженерной сети

Сводка

Функция Describe возвращает следующие свойства инженерной сети.

Инженерная сеть возвращает dataType "Utility Network".

Более подробно об инженерной сети

Свойства

ВладениеОбъяснениеТип данных
associationSource
(только чтение)

Объект associationSource. Объект может использоваться для получения свойств источников соединений.

Object
categories
(только чтение)

Объект categories. Объект может использоваться для получения свойств категорий инженерной сети.

Object
createDirtyAreaForAnyAttributeUpdate
(только чтение)

Создаются ли измененные области в случае обновлении атрибутов при включенной топологии сети.

  • True - измененные области создаются при изменении атрибутов.
  • False - измененные области не создаются при изменении атрибутов.

Boolean
creationTime
(только чтение)

Дата и время создания инженерной сети.

DateTime
domainNetworks
(только чтение)

Объект domainNetworks. Объект может использоваться для получения свойств специализированных сетей.

Object
globalID
(только чтение)

Global-ID инженерной сети.

String
minimalDirtyAreaSize
(только чтение)

Минимальный размер измененных областей топологии сети.

Integer
networkAttributes
(только чтение)

Объект networkAttributes. Объект может использоваться для получения свойств атрибутов сети.

Object
proVersion
(только чтение)

Версия ArcGIS Pro, используемая для построения инженерной сети.

String
schemaGeneration
(только чтение)

Значение создания схемы для входной инженерной сети.

Integer
serviceTerritoryFeatureClassName
(только чтение)

Название полигонального класса объектов, использующегося для задания экстента инженерной сети.

String
systemJunctionSource
(только чтение)

Объект systemJunctionSource. Объект может использоваться для получения свойств источников системных соединений.

Object
terminalConfigurations
(только чтение)

Объект terminalConfigurations. Объект может использоваться для получения свойств конфигурации терминалов.

Object

Пример кода

Пример свойств инженерной сети (автономный скрипт)

Этот автономный скрипт Python выводит отчет о некоторых свойствах инженерных сетей.

'''****************************************************************************
Name:        DescribeUtilityNetworkProperties.py
Description: This script reports the properties of a utility network
Created by:  Esri
****************************************************************************'''

# Import required modules
import arcpy

# Describe function on a Utility Network
UN = "C:\\MyProject\\databaseConn.sde\\pro21.USER1.Naperville\\pro21.USER1.ElectricNetwork"
d = arcpy.Describe(UN)

# Top level UN properties
print("Creation Time: {0}".format(d.creationTime))
print("Pro Version: {0}".format(d.proVersion))
print("Global ID: {0}".format(d.globalId))
print("Properties: {0}".format(d.properties))
print("Schema generation: {0}".format(d.schemaGeneration))
print("Minimal dirty area size: {0}".format(d.minimalDirtyAreaSize))
print("Create Dirty Area For Any Attribute Update: {0}".format(d.createDirtyAreaForAnyAttributeUpdate))
print("")

# Association source properties
asources = d.associationSource
print("*** - Assocation Sources properties - ***")
print("Name: {0}".format(asources.name))
print("ID: {0}".format(asources.sourceID))
print("Type: {0} \n".format(asources.sourceType))

# System junction source properties
sjsources = d.systemJunctionSource
print("*** - System Junction Source properties - ***")
print("Name: {0}".format(sjsources.name))
print("ID: {0}".format(sjsources.sourceID))
print("Type: {0} \n".format(sjsources.sourceType))

# Domain Network properties
domnets = d.domainNetworks
for dom in domnets:
    print("*** - Domain Network properties - ***")
    print("Creation Time: {0}".format(dom.creationTime))
    print("Release Number: {0}".format(dom.releaseNumber))
    print("Is Structure Network: {0}".format(dom.isStructureNetwork))
    print("Domain Network ID: {0}".format(dom.domainNetworkId))
    print("Domain Network Name: {0}".format(dom.domainNetworkName))
    print("Domain Network Alias Name: {0}".format(dom.domainNetworkAliasName))
    print("Subnetwork Table Name: {0}".format(dom.subnetworkTableName))
    print("Subnetwork Label Field Name: {0}".format(dom.subnetworkLabelFieldName))
    print("Tier Definition: {0}".format(dom.tierDefinition))
    print("Subnetwork Controller Type: {0} \n".format(dom.subnetworkControllerType))

# Network Attribute properties
netattrs = d.networkAttributes
for na in netattrs:
    print("*** - Network Attribute properties - ***")
    print("ID: {0}".format(na.Id))
    print("Name: {0}".format(na.name))
    print("Data Type: {0}".format(na.dataType))
    print("Usage Type: {0}".format(na.usageType))
    print("isEmbedded: {0}".format(na.isEmbedded))
    print("isApportionable: {0}".format(na.isApportionable))
    print("isOverridable: {0}".format(na.isOverridable))
    print("Domain name: {0}".format(na.domainName))
    print("bitPosition: {0}".format(na.bitPosition))
    print("bitSize: {0}".format(na.bitSize))
    print("Junction Weight ID: {0}".format(na.junctionWeightId))
    print("Edge Weight ID: {0} \n".format(na.edgeWeightId))

    # For each attribute assignment in the attribute assignments object:
    try:
        unas = na.assignments
        for una in unas:
            print(" -- Attribute Assignment Properties -- ")
            print("Utility Network Assignment Attribute ID: {0}".format(una.networkAttributeId))
            print("Utility Network Assignment Attribute Source Name: {0} \n".format(una.networkSourceName))
            # For each field evaluator in the attribute evaluator object:
            print(" - Field Evaluator Properties - ")
            fe = una.evaluator
            print("Field Evaluator Type: {0}".format(fe.evaluatorType))
            print("Field Evaluator Name: {0} \n".format(fe.fieldName))
    except:
        print("{0} does not have any attribute assignments \n".format(na.name))

# Terminal Configuration properties
termconfigs = d.terminalConfigurations
for tc in termconfigs:
    print("*** - Terminal Configuration Properties - ***")
    print("ID: {0}".format(tc.terminalConfigurationId))
    print("Name: {0}".format(tc.terminalConfigurationName))
    print("Traversability Model: {0}".format(tc.traversabilityModel))
    print("Default Configuration: {0} \n".format(tc.defaultConfiguration))

    # For each terminal in the terminals object:
    for t in tc.terminals:
        print(" -- Terminal Properties -- ")
        print("Terminal ID: {0}".format(t.terminalId))
        print("Terminal Name: {0}".format(t.terminalName))
        print("Terminal Is Upstream: {0} \n".format(t.isUpstreamTerminal))

    # For each configuration in the valid configurations object:
    try:
        for lc in tc.validConfigurations:
            print(" - Configuration Properties - ")
            print("Configuration Id: {0}".format(lc.id))
            print("Configuration Name: {0}".format(lc.name))
            print("Description: {0} \n".format(lc.description))
            try:
                for tp in lc.terminalPaths:
                    print("From terminal id: {0}".format(tp.fromTerminalId))
                    print("To terminal id: {0}".format(tp.toTerminalId))
    except:
        print("{0} does not have any valid configurations \n".format(t.terminalName))

# Categories properties
categories = d.categories
for cat in categories:
    print("*** - Categories properties - ***")
    print("Category creation time: {0}".format(cat.creationTime))
    print("Category Name: {0} \n".format(cat.name))