Junction Source (arcpy)
摘要
提供有关网络数据集中交汇点源的信息。
属性
属性 | 说明 | 数据类型 |
name (只读) |
The name of the feature class associated with this network source. | String |
sourceID (只读) |
The unique identifier of this network source within the network dataset. | Integer |
sourceType (只读) |
The type of network source. This property returns the following keywords:
| String |
elementType (只读) |
Network element type of the network source. This property returns the following keywords:
| String |
connectivityPolicies (读写) |
The network dataset junction Connectivity Policies object. This object can be used to determine connectivity information, such as connectivity policies and connectivity groups, used by the junction sources of the network dataset. | Object |
elevationFieldName (只读) | The field name in the feature class associated with the given junction feature source that is used as the elevation field when determining connectivity at coincident vertices. | String |
代码实例
交汇点源属性示例
显示网络数据集中交汇点源的信息。
# Name: NDSJunctionSourceProperties_ex01.py
# Description: Print the information about the junction sources defined for the
# network dataset
import arcpy
import sys
# Set workspace
arcpy.env.workspace = "C:/Data/Paris.gdb/Transportation"
#Create a Describe object from the network dataset
desc = arcpy.Describe("ParisMultimodal_ND")
justify = 35
print ("------- Junction sources")
#Get all the junction sources for the network dataset
junctions = desc.junctionSources
if not junctions:
print " %*s" % (justify, "(No junction sources)")
sys.exit(0)
for junction in junctions:
print (" %*s: %s" % (justify, "Source Name" , junction.name))
print (" %*s: %s" % (justify, "Source ID" , str(junction.sourceID)))
print (" %*s: %s" % (justify, "Source Type", junction.sourceType))
print (" %*s: %s" % (justify, "Element Type", junction.elementType))
print (" %*s: %s" % (justify, "Elevation Field",
junction.elevationFieldName))
print(" ")
9/15/2013