4 Star 33 Fork 14

fungis/python-gdal-test

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
16_波段计算-NDVI为例.py 1.01 KB
一键复制 编辑 原始数据 按行查看 历史
fungis 提交于 2年前 . 波段计算-NDVI为例
# -*- coding: utf-8 -*-
"""
@File : 16_波段计算-NDVI为例.py
@Author : fungis@163.com
@notice :
"""
import os
from osgeo import gdal_array as ga
# Landset8 NDVI=(float(b5)-float(b4))/(float(b5)+float(b4))
# 红光波段
RED_FILE = r'E:\gisData\LC08_L1TP_123037_20200209_20200211_01_T1\LC08_L1TP_123037_20200209_20200211_01_T1_B4.TIF'
# 近红外波段
NIR_FILE = r'E:\gisData\LC08_L1TP_123037_20200209_20200211_01_T1\LC08_L1TP_123037_20200209_20200211_01_T1_B5.TIF'
# 输出路径
result_target = r'./results/images/ndvi2.tif'
RED_data = ga.LoadFile(RED_FILE).astype("float32")
NIR_data = ga.LoadFile(NIR_FILE).astype("float32")
ga.numpy.seterr(all="ignore")
ndvi = (NIR_data - RED_data) / (RED_data + NIR_data)
result_array = ga.numpy.nan_to_num(ndvi)
if not os.path.exists(result_target[:result_target.rindex('/')]):
# os.mkdir创建路径
os.makedirs(result_target[:result_target.rindex('/')])
out = ga.SaveArray(result_array, result_target, format="GTiff", prototype=RED_FILE) # 投影信息prototype
Loading...
马建仓 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

搜索帮助