ArcGIS Desktop

  • 文档
  • 支持

  • My Profile
  • 帮助
  • Sign Out
ArcGIS Desktop

ArcGIS Online

专为贵组织打造的制图平台

ArcGIS Desktop

全面的专业性 GIS

ArcGIS Enterprise

面向企业的 GIS

ArcGIS for Developers

用于构建位置感知应用程序的工具

ArcGIS Solutions

适用于行业的免费模板地图和应用程序

ArcGIS Marketplace

获取适用于组织的应用程序和数据

  • 文档
  • 支持
Esri
  • 登录
user
  • 我的个人资料
  • 登出

ArcMap

  • 主页
  • 入门
  • 地图
  • 分析
  • 管理数据
  • 工具
  • 扩展模块

Edge Source Properties

  • 摘要
  • 属性
  • 代码示例

摘要

提供有关网络数据集中边源的信息。

属性

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

与该网络源相关的要素类名称。

String
sourceID
(只读)

网络数据集内此网络源的唯一标识符。

Integer
sourceType
(只读)

网络源类型。此属性返回以下关键字:

  • EdgeFeature
  • JunctionFeature
  • SystemJunction
  • TurnFeature
  • NetworkSource

String
elementType
(只读)

网络源的网络元素类型。此属性返回以下关键字:

  • 边
  • 交汇点
  • 转弯

String
fromElevationFieldName
(只读)

The field name in the feature class associated with the given edge feature source that is used as the from elevation field when determining connectivity at coincident end vertices.

String
toElevationFieldName
(只读)

The field name in the feature class associated with the given edge feature source that is used as the to elevation field when determining connectivity at coincident end vertices.

String
connectivityPolicies
(只读)

The network dataset edge Connectivity Policies object. This object can be used to determine connectivity information, such as connectivity policies and connectivity groups, used by the edge sources of the network dataset.

Object
sourceDirections
(只读)

The Network Source Directions object. This object can be used to determine directions properties specific to a particular edge source. The sourceDirections property is available only if the network dataset supports directions which can be determined using the supportsDirections property.

Object

代码示例

边源属性示例

显示网络数据集中边源的信息。

# Name: NDSAttributeProperties_ex01.py
# Description: Print the information about edge 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 ("------- Edge sources") 

# Get all the edge sources for the network dataset
edgeSources = desc.edgeSources 

if not edgeSources: 
    print " %*s" % (justify, "(No edge sources)")    
    sys.exit(0) 

for edgeSource in edgeSources: 
    print (" %*s: %s" % (justify, "Source Name" , edgeSource.name))
    print (" %*s: %s" % (justify, "Source ID" , str(edgeSource.sourceID))) 
    print (" %*s: %s" % (justify, "Source Type", edgeSource.sourceType))
    print (" %*s: %s" % (justify, "Element Type", edgeSource.elementType))
    print (" %*s: %s" % (justify, "From Elevation Field",
                         edgeSource.fromElevationFieldName))
    print (" %*s: %s" % (justify, "To Elevation Field",
                         edgeSource.toElevationFieldName))
    print(" ")

ArcGIS Desktop

  • 主页
  • 文档
  • 支持

ArcGIS 平台

  • ArcGIS Online
  • ArcGIS Desktop
  • ArcGIS Enterprise
  • ArcGIS for Developers
  • ArcGIS Solutions
  • ArcGIS Marketplace

关于 Esri

  • 关于我们
  • 招贤纳士
  • 内部人员博客
  • 用户大会
  • 开发者峰会
Esri
分享您的想法。
Copyright © 2018 Esri. | 隐私政策 | 法律声明