使用 gdal 时是否可以设置数据类型(Byte、Float32)。在 gdal 2.1 中栅格化?目前,我使用 gdal。转换为字节,但这效率低下。
tif = my/target.tif
shp = my/source.shp
tiftemp = my/temp/solution.tif
rasterizeOptions = gdal.RasterizeOptions(xRes=20, yRes=20, allTouched=True etc.)
gdal.Rasterize(tiftemp, shp, options=rasterizeOptions)
#translate to Byte data type (not supported by Rasterize?)
gdal.Translate(tif, tiftemp, outputType=gdal.GDT_Byte,
creationOptions=['COMPRESS=PACKBITS')
我知道
可以使用subprocess.check_call('gdal_rasterize', '-ot', 'byte' ...)
但如果可能的话,我宁愿避免这种情况。有什么想法吗?
这已在 GDAL 2.1.3 中修复。以前,数据类型是硬编码的,不会在 Python 绑定中公开。请参阅 https://trac.osgeo.org/gdal/ticket/6710。
如果你在 gdal 2.1.2 中,请使用 gdal。光栅化选项() 就像你在命令行上使用它一样:
opts_str = '-ot Byte'
rast_opts = gdal.RasterizeOptions(options=opts_str)