美文网首页
2.3 显示遥感影像

2.3 显示遥感影像

作者: 葛中曦 | 来源:发表于2019-03-02 19:00 被阅读0次
    from osgeo import gdal
    import matplotlib.pyplot as plt
    ds = gdal.Open(r"C:\Users\HP\Desktop\raster\GLASS01B02.V04.A2015225.2017269.hdfout.LAI.tif").ReadAsArray()#需要注意后面的.ReadAsArray()
    im = plt.imshow(ds)
    plt.colorbar(im)
    

    相关文章

      网友评论

          本文标题:2.3 显示遥感影像

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