ArcGIS Desktop

  • Documentation
  • Support

  • My Profile
  • Aide
  • Sign Out
ArcGIS Desktop

ArcGIS Online

La plateforme cartographique de votre organisation

ArcGIS Desktop

Un SIG professionnel complet

ArcGIS Enterprise

SIG dans votre entreprise

ArcGIS for Developers

Outils de création d'applications de localisation

ArcGIS Solutions

Modèles d'applications et de cartes gratuits pour votre secteur d'activité

ArcGIS Marketplace

Téléchargez des applications et des données pour votre organisation.

  • Documentation
  • Support
Esri
  • Se connecter
user
  • Mon profil
  • Déconnexion

ArcMap

  • Accueil
  • Commencer
  • Carte
  • Analyser
  • Gérer les données
  • Outils
  • Extensions

System Junction Source

  • Résumé
  • Propriétés
  • Exemple de code

Résumé

Provides information about system junction sources in a network dataset.

Propriétés

PropriétéExplicationType de données
name
(Lecture seule)

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

String
sourceID
(Lecture seule)

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

Integer
sourceType
(Lecture seule)

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

  • EdgeFeature
  • JunctionFeature
  • SystemJunction
  • TurnFeature
  • NetworkSource

String
elementType
(Lecture seule)

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

  • Edge
  • Junction
  • Turn

String
elevationFieldName
(Lecture seule)

The field name that is used as the elevation field when determining connectivity at coincident vertices.

String

Exemple de code

System Junction Source Properties Example

Displays information for system junction sources in the network dataset.

# Name: NDSSystemJunctionSourceProperties_ex01.py
# Description: Print the information about the system junction 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 ("------- System junction source")

#SDC network datasets do not have system junction source.
networktype = desc.networkType 
if networktype.lower() == "sdc": 
    print ("%*s" % (justify, "(No system junction source)")) 
    sys.exit(0)

#Get the system junction source for the network dataset.
sjSource = desc.systemJunctionSource 
if not sjSource: 
    print ("%*s" % (justify, "(No system junction sources)")) 
    sys.exit(0) 

print ("%*s: %s" % (justify, "Source Name" , sjSource.name)) 
print ("%*s: %s" % (justify, "Source ID" , str(sjSource.sourceID))) 
print ("%*s: %s" % (justify, "Source Type", sjSource.sourceType))
print ("%*s: %s" % (justify, "Element Type", sjSource.elementType))
print (" %*s: %s" % (justify, "Elevation Field",sjSource.elevationFieldName))
print (" ")

ArcGIS Desktop

  • Accueil
  • Documentation
  • Support

ArcGIS Platform

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

A propos d'Esri

  • A propos de la société
  • Carrières
  • Blog des initiés
  • Conférence des utilisateurs
  • Sommet des développeurs
Esri
Donnez-nous votre avis.
Copyright © 2018 Esri. | Confidentialité | Légal