FeatureClass properties
Summary
The Describe function returns the following properties for Feature Classes. Table Properties and Dataset Properties are also supported.
A Feature Class returns a dataType of "FeatureClass".
Properties
| Property | Explanation | Data Type |
| featureType (Read Only) |
The feature type of the feature class.
| String |
| hasM (Read Only) |
Indicates if the geometry is m-value enabled. | Boolean |
| hasZ (Read Only) |
Indicates if the geometry is z-value enabled. | Boolean |
| hasSpatialIndex (Read Only) |
Indicates if the feature class has a spatial index. | Boolean |
| shapeFieldName (Read Only) |
The name of the Shape field. | String |
| shapeType (Read Only) |
The geometry shape type.
| String |
Code Sample
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)
10/28/2011