摘要
公共设施网络中的 systemJunctionSource 对象支持下列属性。
属性
属性 | 说明 | 数据类型 |
name (只读) | 系统交汇点源的名称。 | String |
sourceID (只读) | 系统交汇点源的 ID。 | Integer |
sourceType (只读) | 系统交汇点源的类型。 | String |
代码示例
以下独立 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\\mygdb.USER1.Naperville\\mygdb.USER1.ElectricNetwork"
d = arcpy.Describe(UN)
# System junction source properties
sjsources = d.systemJunctionSource
print("*** - System Junction Source properties - ***")
print(f"Name: {sjsources.name}")
print(f"ID: {sjsources.sourceID}")
print(f"Type: {sjsources.sourceType} \n")