属性
属性 | 说明 | 数据类型 |
bandCount (只读) | 栅格数据集内的波段数。 | Integer |
compressionType (只读) | 压缩类型
| String |
format (只读) | 栅格格式
| String |
permanent (只读) | 指示栅格的永久状态:False 表示临时栅格;True 表示永久栅格。 | Boolean |
sensorType (只读) | 用于捕获图像的传感器类型。 | String |
代码示例
以下独立脚本显示栅格数据集的一些属性。
import arcpy
# Create a Describe object from the raster dataset
#
desc = arcpy.Describe("\\cacheqa1\Datasets\temp\FGDB.gdb\hrrr1")
# Print some raster dataset properties
#
print("Band Count: %d" % desc.bandCount)
print("Compression Type: %s" % desc.compressionType)
print("Raster Format: %s" % desc.format)
print("Permanent: %s" % desc.permanent)
print("Sensor Type: %s" % desc.sensorType)