Propiedades FeatureClass
Resumen
La función Describir devuelve las siguientes propiedades para las Clases de entidad. Las Propiedades de la tabla y las Propiedades del dataset también son compatibles.
Una Clase de entidad devuelve un tipo de datos de "FeatureClass".
Propiedades
Propiedad | Explicación | Tipo de datos |
featureType (Sólo lectura) |
The feature type of the feature class.
| String |
hasM (Sólo lectura) |
Indicates if the geometry is m-value enabled. | Boolean |
hasZ (Sólo lectura) |
Indicates if the geometry is z-value enabled. | Boolean |
hasSpatialIndex (Sólo lectura) |
Indicates if the feature class has a spatial index. | Boolean |
shapeFieldName (Sólo lectura) |
The name of the Shape field. | String |
shapeType (Sólo lectura) |
The geometry shape type.
| String |
Ejemplo de código
FeatureClass properties example (stand-alone script)
The following stand-alone script displays some feature class properties.
import arcpy # Create a Describe object from the feature class # desc = arcpy.Describe("C:/data/arch.dgn/Point") # Print some feature class properties # print "Feature Type: " + desc.featureType print "Shape Type : " + desc.shapeType print "Spatial Index: " + str(desc.hasSpatialIndex)
7/10/2012