ArcGIS Desktop

  • ArcGIS Pro
  • ArcMap

  • My Profile
  • Hilfe
  • Sign Out
ArcGIS Desktop

ArcGIS Online

Die Mapping-Plattform für Ihre Organisation

ArcGIS Desktop

Ein vollständiges professionelles GIS

ArcGIS Enterprise

GIS in Ihrem Unternehmen

ArcGIS for Developers

Werkzeuge zum Erstellen standortbezogener Apps

ArcGIS Solutions

Kostenlose Karten- und App-Vorlagen für Ihre Branche

ArcGIS Marketplace

Rufen Sie Apps und Daten für Ihre Organisation ab.

  • Dokumentation
  • Support
Esri
  • Anmelden
user
  • Eigenes Profil
  • Abmelden

ArcMap

  • Startseite
  • Erste Schritte
  • Karte
  • Analysieren
  • Verwalten von Daten
  • Werkzeuge
  • Erweiterungen

Turn Source

  • Zusammenfassung
  • Eigenschaften
  • Codebeispiel

Zusammenfassung

Provides information about turn sources in a network dataset.

Eigenschaften

EigenschaftErklärungDatentyp
name
(Nur lesen)

The name of the feature class associated with this network source.

String
sourceID
(Nur lesen)

The unique identifier of this network source within the network dataset.

Integer
sourceType
(Nur lesen)

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

  • EdgeFeature
  • JunctionFeature
  • SystemJunction
  • TurnFeature
  • NetworkSource

String
elementType
(Nur lesen)

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

  • Edge
  • Junction
  • Turn

String

Codebeispiel

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

  • Startseite
  • Dokumentation
  • Support

ArcGIS Plattform

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

Über Esri

  • Über uns
  • Karriere
  • Esri Blog
  • User Conference
  • Developer Summit
Esri
Wir sind an Ihrer Meinung interessiert.
Copyright © 2019 Esri. | Datenschutz | Rechtliches