ArcGIS Desktop

  • ArcGIS Pro
  • ArcMap

  • My Profile
  • ヘルプ
  • Sign Out
ArcGIS Desktop

ArcGIS Online

組織のマッピング プラットフォーム

ArcGIS Desktop

完全なプロ仕様の GIS

ArcGIS Enterprise

エンタープライズ GIS

ArcGIS for Developers

位置情報利用アプリの開発ツール

ArcGIS Solutions

各種業界向けの無料のテンプレート マップおよびテンプレート アプリケーション

ArcGIS Marketplace

組織で使えるアプリとデータを取得

  • ドキュメント
  • サポート
Esri
  • サイン イン
user
  • マイ プロフィール
  • サイン アウト

Help

  • ホーム
  • はじめに
  • マップ
  • 解析
  • データ管理
  • ツール
  • その他...

Turn Source

  • サマリー
  • プロパティ
  • コードのサンプル

サマリー

Provides information about turn sources in a network dataset.

プロパティ

プロパティ説明データ タイプ
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:

  • EdgeFeature
  • JunctionFeature
  • SystemJunction
  • TurnFeature
  • NetworkSource

String
elementType
(読み取り専用)

Network element type of the network source. This property returns the following keywords:

  • Edge
  • Junction
  • Turn

String

コードのサンプル

Turn Source Properties example

Displays information for turn sources in the network dataset.

# Name: NDSTurnSourceProperties_ex01.py
# Description: Print the information about the turn sources defined for the 
#              network dataset

import arcpy
import sys

# Set workspace
arcpy.env.workspace = "C:/Data/SanFrancisco.gdb/Transportation"

#Create a Describe object from the network dataset
desc = arcpy.Describe("Streets_ND")

justify = 35
print ("------- Turn sources") 

#Get all the turn sources for the network dataset
turns = desc.turnSources

#Not all network datasets can have turn sources.
if not turns:
    print ("%*s" % (justify, "(No turn sources)")) 
    sys.exit(0)

for turnSource in turns: 
    print ("%*s: %s" % (justify, "Source Name" , turnSource.name)) 
    print ("%*s: %s" % (justify, "Source ID" , str(turnSource.sourceID))) 
    print ("%*s: %s" % (justify, "Source Type", turnSource.sourceType))
    print ("%*s: %s" % (justify, "Element Type", turnSource.elementType))
    print (" ")

ArcGIS Desktop

  • ホーム
  • ドキュメント
  • サポート

ArcGIS プラットフォーム

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

Esri について

  • 会社概要
  • 採用情報
  • Esri ブログ
  • ユーザ カンファレンス
  • デベロッパ サミット
Esri
ご意見・ご感想をお寄せください。
Copyright © 2019 Esri. | プライバシー | リーガル