Propiedades de topología

Resumen

La función Describir devuelve las siguientes propiedades para las Topologías. Las Propiedades del dataset también son compatibles.

Una topología devuelve un tipo de datos de "Topología".

Propiedades

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

The cluster tolerance of the topology

Double
featureClassNames
(Sólo lectura)

A Python list containing the names of the feature classes participating in the topology

String
maximumGeneratedErrorCount
(Sólo lectura)

The maximum number of errors to generate when validating a topology

Double
ZClusterTolerance
(Sólo lectura)

The z cluster tolerance of the topology

Double

Muestra de código

Topology properties example (stand-alone script)

The following stand-alone script displays properties for a topology.

import arcpy

# Create a Describe object from a topology.
#
desc = arcpy.Describe("C:/data/moad.gdb/East/ParkZones_topology")

# Print some topology properties
#
print("%-27s %s" % ("ClusterTolerance:", desc.clusterTolerance))
print("%-27s %s" % ("ZClusterTolerance:", desc.ZClusterTolerance))
print("%-27s %s" % ("FeatureClassNames:", desc.featureClassNames))
print("%-27s %s" % ("MaximumGeneratedErrorCount:", desc.maximumGeneratedErrorCount))