Feature Class properties
Resumen
The Describe function returns the following properties for feature classes. The Table and Dataset property groups are also supported. The Editor Tracking property group is supported if editor tracking has been enabled for this feature class.
For a feature class, the Describe dataType property returns a value of "FeatureClass".
Propiedades
| Propiedad | Explicación | Tipo de datos |
|---|---|---|
|
featureType (Solo lectura) |
The feature type of the feature class.
|
String |
|
hasM (Solo lectura) |
Indicates whether the geometry is m-value enabled. |
Boolean |
|
hasZ (Solo lectura) |
Indicates whether the geometry is z-value enabled. |
Boolean |
|
hasSpatialIndex (Solo lectura) |
Indicates whether the feature class has a spatial index. Nota:Compressed datasets do not have a spatial index on the shape column and will return |
Boolean |
|
shapeFieldName (Solo lectura) |
The name of the geometry field. |
String |
|
shapeType (Solo lectura) |
The geometry shape type.
|
String |
|
size (Solo lectura) |
The size of the feature class in bytes. |
Integer |
|
splitModel (Solo lectura) |
The split model that is set for the feature class.
|
String |
Muestra de código
Feature class properties example
The following stand-alone script displays 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))