美文网首页遥感
使用arcpy把hdf格式的遥感影像转换为TIFF格式

使用arcpy把hdf格式的遥感影像转换为TIFF格式

作者: 两只cows | 来源:发表于2018-10-10 21:31 被阅读466次

import arcpy

import os

try:

    for dirpath, dirnames, filenames in os.walk("D:\\researchdata\\MODISdown\\MYD11A1\\LST2003-2017"): 

        for file in filenames :

            if os.path.splitext(file)[1] == '.hdf':

                arcpy.ExtractSubDataset_management("D:\\researchdata\\MODISdown\\MYD11A1\\LST2003-2017\\"+file, "D:\\researchdata\\MODISdown\\MYD11A1\\TIFF2003-2009\\"+os.path.splitext(file)[0]+".tif", "0")

        break

except:

    print "Extract Subdataset example failed."

    print arcpy.GetMessages()

相关文章

网友评论

    本文标题:使用arcpy把hdf格式的遥感影像转换为TIFF格式

    本文链接:https://www.haomeiwen.com/subject/ugwmaftx.html