arcpy-栅格转其他格式
Posted yzhyingcool
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了arcpy-栅格转其他格式相关的知识,希望对你有一定的参考价值。
import arcpy in_format=arcpy.GetParameterAsText(0) out_format=arcpy.GetParameterAsText(1) out_folder=arcpy.GetParameterAsText(3) arcpy.env.workspace=arcpy.GetParameterAsText(2) rasters=arcpy.ListRasters("*",) arcpy.RasterToOtherFormat_conversion(rasters,out_folder,out_format)
注意栅格名称中不要出现中文字符。
RasterToOtherFormat_conversion帮助页:http://desktop.arcgis.com/zh-cn/arcmap/10.3/tools/conversion-toolbox/raster-to-other-format.htm
以上是关于arcpy-栅格转其他格式的主要内容,如果未能解决你的问题,请参考以下文章