
本文共 3444 字,大约阅读时间需要 11 分钟。
������������������NDVI���������������������
ENNVIH-IDL���������ENVISh���������������������������������������������������GEE���������������������������NDVI���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������
������������
���������������Landsat-8���������������������������������������������������������������������������������������������������������������������������������������
- ������������44���������45���������������������������������������������������������������������������������
- ������������������������������������������������������NASA���������������������������������������������������������
������������
������������������������������������������������������
Land Surface Emissivity���������������������������������
������������������������������������������������������������������������������������������������������������������������������Blackbody Radiance������������������������
���������������������������������������������������������������������������������������������������������Land Surface Temperature������������������������������
���������������������������������������agnostic radiance���������������������������������������������������������������������
���������������������������������������������
// ������������������������������LSE���function LSECalculation(SRImage) { var NDVI = SRImage.normalizedDifference(['B5','B4']); // ������write-up������������������������44���45��������������������������������������������������� ... return lse;}// ������������������������BBR���function BBRCalculation(t, up, down, lse, rad) { var temp = (1 - lse).multiply(down).multiply(t); var bbrad = rad.subtract(temp).divide(lse.multiply(t)); return bbrad;}// ���������������������������LST���function LSTCalculation(bbrad) { var temp = bbrad.multiply(77489).divide(bbrad).subtract(bbrad).add(1).log(); var lst = temp.multiply(132108).divide(temp).subtract(273); return lst;}// ���������var l8lsr = ee.Image('LANDSAT/LC08/C01/T1_SR/LC08_129038_20170501'), l8raw = ee.Image('LANDSAT/LC08/C01/T1/LC08_129038_20170501'), lse = LSECalculation(l8lsr), rad = ee.Algorithms.Landsat.calibratedRadiance(l8raw).select('B10');var t = 0.76, // ���������������NASA������������ up = 1.95, down = 3.2, bbrad = BBRCalculation(t, up, down, lse, rad), lst = LSTCalculation(bbrad);
������������
������������������GEE���������������������������������������������������������������������������������������������������������������������
- JavaScript������������������������������������������������������������
- ������������������������������GEE������������������������������������������
- ������
image.divide
���������������������������������������������������image.divide(image.multiply(image))
������
������������������������������������������
������������������
������������������������������������������������������������������������������������NDVI������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������
������������������GEE���������������������������������������������������������������������������������������������������
发表评论
最新留言
关于作者
