4 Star 31 Fork 13

fungis/python-gdal-test

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
01_栅格文件展示.py 654 Bytes
一键复制 编辑 原始数据 按行查看 历史
fungis 提交于 2022-10-14 14:30 . 变量名称修改
# -*- coding: utf-8 -*-
"""
@File : 01_栅格文件展示.py
@Author : fungis@163.com
@notice :
"""
# 导入gdal,注意导入的名称
from matplotlib import pyplot as plt
from osgeo import gdal # 或者直接用import gdal
raster_path = r'./data-use/tif/NDVI_201405_bm.tif'
# 读取影像
dataset = gdal.Open(raster_path)
# 打开波段1(注意:用索引1,而不是0,来获取第一个波段)
band = dataset.GetRasterBand(1)
band_array = band.ReadRaster() # 一维像元矩阵
location_array = band.ReadAsArray() # 二维行列像元矩阵
# cmap='gray'以灰度图形式展示
plt.imshow(band.ReadAsArray(), cmap='gray')
plt.show()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/fungiser/python-gdal-test.git
git@gitee.com:fungiser/python-gdal-test.git
fungiser
python-gdal-test
python-gdal-test
master

搜索帮助