描述
Describe 函数可返回 Prj 文件的以下属性。
Prj 文件可返回 “PrjFile” 的 dataType。
属性
属性 | 说明 | 数据类型 |
spatialReference (只读) | prj 文件的 SpatialReference 类实例 | SpatialReference |
代码示例
以下独立脚本显示了一些 prj 文件的 SpatialReference 类属性。
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))