ArcGIS Desktop

  • Documentación
  • Soporte

  • My Profile
  • Ayuda
  • Sign Out
ArcGIS Desktop

ArcGIS Online

La plataforma de representación cartográfica para tu organización

ArcGIS Desktop

Un completo SIG profesional

ArcGIS Enterprise

SIG en tu empresa

ArcGIS for Developers

Herramientas para crear aplicaciones basadas en la ubicación

ArcGIS Solutions

Plantillas de aplicaciones y mapas gratuitas para tu sector

ArcGIS Marketplace

Obtén aplicaciones y datos para tu organización.

  • Documentación
  • Soporte
Esri
  • Iniciar sesión
user
  • Mi perfil
  • Cerrar sesión

ArcMap

  • Inicio
  • Introducción
  • Cartografiar
  • Analizar
  • Administrar datos
  • Herramientas
  • Extensiones

Junction Source

  • Resumen
  • Propiedades
  • Muestra de código

Resumen

Provides information about junction sources in a network dataset.

Propiedades

PropiedadExplicaciónTipo de datos
name
(Sólo lectura)

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

String
sourceID
(Sólo lectura)

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

Integer
sourceType
(Sólo lectura)

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

  • EdgeFeature
  • JunctionFeature
  • SystemJunction
  • TurnFeature
  • NetworkSource

String
elementType
(Sólo lectura)

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

  • Edge
  • Junction
  • Turn

String
connectivityPolicies
(Lectura y escritura)

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
(Sólo lectura)

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

Muestra de código

Junction Source Properties Example

Displays information for junction sources in the network dataset.

# 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(" ")

ArcGIS Desktop

  • Inicio
  • Documentación
  • Soporte

Plataforma ArcGIS

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

Acerca de Esri

  • Quiénes somos
  • Empleo
  • Blog interno
  • Conferencia de usuarios
  • Cumbre de desarrolladores
Esri
Díganos su opinión.
Copyright © 2018 Esri. | Privacidad | Legal