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

Network Source

  • Resumen
  • Propiedades
  • Muestra de código

Resumen

Provides information about the network sources in the network dataset. Network sources can be of four types; edge sources, junction sources, turn sources, and system junction sources. Use the sourceType property to identify the type of network source.

Based on the type of the network source, the network source object can support additional properties specific to that source type. Edge sources and junction sources supports additonal properties along with the properties supported by the network source object. Turn sources and system junction sources do not support any additional properties.

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

Muestra de código

Network Source Properties Example

Displays information for network sources in the network dataset..

# Name: NDSNetworkSourceProperties_ex01.py
# Description: Print the information about the network sources 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 ("------- Network sources") 

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

for source in sources:
    print ("%*s: %s" % (justify, "Source Name" , source.name)) 
    print ("%*s: %s" % (justify, "Source ID" , str(source.sourceID))) 
    print ("%*s: %s" % (justify, "Source Type", source.sourceType))
    print ("%*s: %s" % (justify, "Element Type", source.elementType))
    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