Resumen
La función Describir devuelve las siguientes propiedades para los Archivos Prj.
Un archivo Prj devuelve un tipo de datos de "PrjFile".
Propiedades
Propiedad | Explicación | Tipo de datos |
spatialReference (Sólo lectura) | The SpatialReference class instance of the .prj file | SpatialReference |
Muestra de código
Prj File properties example (stand-alone script)
The following stand-alone script displays some SpatialReference class properties for a prj file.
import arcpy
# Create a Describe Object from a prj file.
#
desc = arcpy.Describe("C:\data\mexico.prj")
# Print some properties of the SpatialReference class object.
#
SR = desc.spatialReference
print "Name: " + SR.name
print "Type: " + SR.type
print "isHighPrecision: " + str(SR.isHighPrecision)
print "scaleFactor: " + str(SR.scaleFactor)