-
Notifications
You must be signed in to change notification settings - Fork 0
/
indices_vegetacion.m
137 lines (128 loc) · 4.96 KB
/
indices_vegetacion.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
%definir directorio de trabajo
%setear en este directorio
%Nombre del Proceso
%se desean guardar las variables en .mat?savemat 0:no, 1:si
%INDICES={"NDVI","SR","DVI","SAVI","TNDI","NDWI","EVI","TGDVI"}
function [IndiceVegetacion, INFO,R,UTM, R_l]=indices_vegetacion(BaseDir,MTLDIR,savemat,Nombre_Proceso,CorteX,CorteY,INDICES,Lsavi)
[n m]=size(INDICES);
cd(BaseDir);
var_mat=savemat;
Carpeta_output='Output';%salida, guardar resultados
i=1;
Landsat=5;
Carpeta_img=strcat(BaseDir,'/img_',Nombre_Proceso);
%Nombres bandas:[blue,green,red,NIR,SWIR,-]
hemisferio='S';
%reflactancia NIR:R1
Banda=4;
[R_l(:,:,1),L_l(:,:,1),DN7(:,:,1),UTM,COD_SAT_IMG,INFO.nir,R.nir]=reflactancia(Banda,Landsat,Carpeta_img,MTLDIR,hemisferio,Nombre_Proceso,CorteX,CorteY);
%reflactancia ROJA:R 2
Banda=3;
[R_l(:,:,2),L_l(:,:,2),DN7(:,:,2),UTM,COD_SAT_IMG,INFO.red,R.red]=reflactancia(Banda,Landsat,Carpeta_img,MTLDIR,hemisferio,Nombre_Proceso,CorteX,CorteY);
R_l(:,:,3)=zeros(size(R_l(:,:,1)));
R_l(:,:,4)=zeros(size(R_l(:,:,1)));
R_l(:,:,5)=zeros(size(R_l(:,:,1)));
for i=1:m
switch INDICES{1,i}
case 'TGDVI'
%reflactancia AZUL:R 3
Banda=1;
[R_l(:,:,3),L_l(:,:,3),DN7(:,:,3),UTM,COD_SAT_IMG,INFO.blue,R.blue]=reflactancia(Banda,Landsat,Carpeta_img,MTLDIR,hemisferio,Nombre_Proceso,CorteX,CorteY);
%reflactancia SWIR:R 4
case {'NDWI','MSI','II'}
Banda=5;
[R_l(:,:,4),L_l(:,:,4),DN7(:,:,4),UTM,COD_SAT_IMG,INFO.swir,R.swir]=reflactancia(Banda,Landsat,Carpeta_img,MTLDIR,hemisferio,Nombre_Proceso,CorteX,CorteY);
case 'NDSI'
Banda=2;
[R_l(:,:,5),L_l(:,:,5),DN7(:,:,5),UTM,COD_SAT_IMG,INFO.ndsi,R.ndsi]=reflactancia(Banda,Landsat,Carpeta_img,MTLDIR,hemisferio,Nombre_Proceso,CorteX,CorteY);
Banda=5;
[R_l(:,:,4),L_l(:,:,4),DN7(:,:,4),UTM,COD_SAT_IMG,INFO.swir,R.swir]=reflactancia(Banda,Landsat,Carpeta_img,MTLDIR,hemisferio,Nombre_Proceso,CorteX,CorteY);
end
end
IndiceVegetacion.NDVI=0;
IndiceVegetacion.SR=0;
IndiceVegetacion.DVI=0;
IndiceVegetacion.SAVI=0;
IndiceVegetacion.TNDI=0;
IndiceVegetacion.NDWI=0;
IndiceVegetacion.EVI=0;
IndiceVegetacion.TGDVI=0;
IndiceVegetacion.SAVI_03=0;
IndiceVegetacion.SAVI_05=0;
IndiceVegetacion.MSI=0;
IndiceVegetacion.II=0;
IndiceVegetacion.NDSI=0;
for i=1:m
switch INDICES{1,i}
case 'NDVI'
Numerador=R_l(:,:,1)-R_l(:,:,2);
Denominador=R_l(:,:,1)+R_l(:,:,2);
IndiceVegetacion.NDVI=Numerador./Denominador;
INFO_x=INFO.nir;
case 'SR'
IndiceVegetacion.SR=R_l(:,:,1)./(R_l(:,:,2));
INFO_x=INFO.nir;
case 'DVI'
IndiceVegetacion.DVI=R_l(:,:,1)-R_l(:,:,2);
INFO_x=INFO.nir;
case 'SAVI_03'
L=0.3;
Numerador=R_l(:,:,1)-R_l(:,:,2);
Denominador=R_l(:,:,1)+R_l(:,:,2)+L;
IndiceVegetacion.SAVI_03=(Numerador./Denominador)*(1+L);
INFO_x=INFO.nir;
case 'SAVI_05'
L=0.5
Numerador=R_l(:,:,1)-R_l(:,:,2);
Denominador=R_l(:,:,1)+R_l(:,:,2)+L;
IndiceVegetacion.SAVI_05=(Numerador./Denominador)*(1+L);
INFO_x=INFO.nir;
case 'TNDI'
Numerador=R_l(:,:,1)-R_l(:,:,2);
Denominador=R_l(:,:,1)+R_l(:,:,2);
pre_TNDI=(Numerador./Denominador) +1;
IndiceVegetacion.TNDI=sqrt(pre_TNDI);
INFO_x=INFO.nir;
case 'NDWI'
Numerador=R_l(:,:,1)-R_l(:,:,4);
Denominador=R_l(:,:,1)+R_l(:,:,4);
IndiceVegetacion.NDWI=Numerador./Denominador;
INFO_x=INFO.swir;
case 'EVI'
G=2.5;
L=1;
C_1=6;
C_2=7.5;
Numerador=R_l(:,:,1)-R_l(:,:,2);
Denominador=R_l(:,:,1)+C_1*R_l(:,:,2)-C_2*R_l(:,:,3)+L;
IndiceVegetacion.EVI=G*Numerador./Denominador;
INFO_x=INFO.nir;
case 'TGDVI'
La_1=0.56e-6;%en metros
La_2=0.66e-6;
La_3=0.83e-6;
Numerador_1=R_l(:,:,1)-R_l(:,:,2);
Denominador_1=La_3-La_2;
Numerador_2=R_l(:,:,2)-R_l(:,:,3);
Denominador_2=La_2-La_1;
pre_TGDVI=Numerador_1./Denominador_1-Numerador_2./Denominador_2;
%pasar a 0 valores menores que 0
pre_TGDVI(pre_TGDVI<0)=0;
IndiceVegetacion.TGDVI=pre_TGDVI;
INFO_x=INFO.blue;
case 'MSI'
IndiceVegetacion.MSI=R_l(:,:,4)./R_l(:,:,1);
case 'II'
IndiceVegetacion.II=(R_l(:,:,1)-R_l(:,:,4))./(R_l(:,:,1)+R_l(:,:,4));
case 'NDSI'
Numerador=R_l(:,:,5)-R_l(:,:,4);
Denominador=R_l(:,:,5)+R_l(:,:,4);
IndiceVegetacion.NDSI=Numerador./Denominador;
INFO_x=INFO.swir;
end
end
if var_mat==1
savefile=strcat(BaseDir,'/',Carpeta_output,'/',Nombre_Proceso,'/',COD_SAT_IMG,'.mat');
save(savefile,'R_l','L_l','DN7','UTM','IndiceVegetacion','R','INFO');
end
end