forked from GERSL/Fmask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lndhdrread.m
372 lines (330 loc) · 19.3 KB
/
lndhdrread.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
function [Lmax,Lmin,Qcalmax,Qcalmin,Refmax,Refmin,ijdim_ref,ijdim_thm,reso_ref,...
reso_thm,ul,bbox,zen,azi,zc,Lnum,doy]=lndhdrread(fullfile_path,filename)
% Revisions:
% Add Landsat 9 (Shi 2/17/2022)
% Read in the latitude and longtitude for automate downloading DEM (Shi 7/9/2017)
% Read in the product level for Landsat data (Shi 28/03/2016)
% Read in the metadata for Landsat 8 (Zhe 04/04/2013)
% Read in the old or new metadata for Landsat TM/ETM+ images (Zhe 10/18/2012)
% [Lmax,Lmin,Qcalmax,Qcalmin,Refmax,Refmin,ijdim_ref,ijdim_thm,reso_ref,...
% reso_thm,ul,zen,azi,zc,Lnum,doy]=lndhdrread(filename)
% Where:
% Inputs:
% filename='L*MTL.txt';
% Outputs:
% 1) Lmax = Max radiances;
% 2) Lmin = Min radiances;
% 3) Qcalmax = Max calibrated DNs;
% 4) Qcalmin = Min calibrated DNs;
% 5) ijdim_ref = [nrows,ncols]; % dimension of optical bands
% 6) ijdim_ref = [nrows,ncols]; % dimension of thermal band
% 7) reo_ref = 28/30; % resolution of optical bands
% 8) reo_thm = 60/120; % resolution of thermal band
% 9) ul = [upperleft_mapx upperleft_mapy];
% 10) zen = solar zenith angle (degrees);
% 11) azi = solar azimuth angle (degrees);
% 12) zc = Zone Number
% 13) Lnum = 4,5,or 7; Landsat sensor number
% 14) doy = day of year (1,2,3,...,356);
% 15) pro_type=PRODUCT_TYPE (L1G: DEM bias; others: no DEM bias).
%
%%
% open and read hdr file
fid_in=fopen(fullfile(fullfile_path,filename),'r');
geo_char=fscanf(fid_in,'%c',inf);
fclose(fid_in);
geo_char=geo_char';
geo_str=strread(geo_char,'%s');
% initialize Refmax & Refmin
Refmax = -1;
Refmin = -1;
% Identify Landsat Number (Lnum = 4, 5, 7, or 8)
LID=char(geo_str(strmatch('SPACECRAFT_ID',geo_str)+2));
Lnum=str2double(LID(end-1));
if Lnum >= 4 && Lnum <=7
% determine the metadata type "old" or "new"
if isempty(strmatch('LANDSAT_SCENE_ID',geo_str)) == false % "new" MTL.txt
% read in LMAX
Lmax_B1 = str2double(geo_str(strmatch('RADIANCE_MAXIMUM_BAND_1',geo_str)+2));
Lmax_B2 = str2double(geo_str(strmatch('RADIANCE_MAXIMUM_BAND_2',geo_str)+2));
Lmax_B3 = str2double(geo_str(strmatch('RADIANCE_MAXIMUM_BAND_3',geo_str)+2));
Lmax_B4 = str2double(geo_str(strmatch('RADIANCE_MAXIMUM_BAND_4',geo_str)+2));
Lmax_B5 = str2double(geo_str(strmatch('RADIANCE_MAXIMUM_BAND_5',geo_str)+2));
if Lnum==7
Lmax_B6 = str2double(geo_str(strmatch('RADIANCE_MAXIMUM_BAND_6_VCID_1',geo_str)+2));
else
Lmax_B6 = str2double(geo_str(strmatch('RADIANCE_MAXIMUM_BAND_6',geo_str)+2));
end
Lmax_B7 = str2double(geo_str(strmatch('RADIANCE_MAXIMUM_BAND_7',geo_str)+2));
Lmax=[Lmax_B1,Lmax_B2,Lmax_B3,Lmax_B4,Lmax_B5,Lmax_B6,Lmax_B7];
% Read in LMIN
Lmin_B1 = str2double(geo_str(strmatch('RADIANCE_MINIMUM_BAND_1',geo_str)+2));
Lmin_B2 = str2double(geo_str(strmatch('RADIANCE_MINIMUM_BAND_2',geo_str)+2));
Lmin_B3 = str2double(geo_str(strmatch('RADIANCE_MINIMUM_BAND_3',geo_str)+2));
Lmin_B4 = str2double(geo_str(strmatch('RADIANCE_MINIMUM_BAND_4',geo_str)+2));
Lmin_B5 = str2double(geo_str(strmatch('RADIANCE_MINIMUM_BAND_5',geo_str)+2));
if Lnum==7
Lmin_B6 = str2double(geo_str(strmatch('RADIANCE_MINIMUM_BAND_6_VCID_1',geo_str)+2));
else
Lmin_B6 = str2double(geo_str(strmatch('RADIANCE_MINIMUM_BAND_6',geo_str)+2));
end
Lmin_B7 = str2double(geo_str(strmatch('RADIANCE_MINIMUM_BAND_7',geo_str)+2));
Lmin=[Lmin_B1,Lmin_B2,Lmin_B3,Lmin_B4,Lmin_B5,Lmin_B6,Lmin_B7];
% Read in QCALMAX
Qcalmax_B1 = str2double(geo_str(strmatch('QUANTIZE_CAL_MAX_BAND_1',geo_str)+2));
Qcalmax_B2 = str2double(geo_str(strmatch('QUANTIZE_CAL_MAX_BAND_2',geo_str)+2));
Qcalmax_B3 = str2double(geo_str(strmatch('QUANTIZE_CAL_MAX_BAND_3',geo_str)+2));
Qcalmax_B4 = str2double(geo_str(strmatch('QUANTIZE_CAL_MAX_BAND_4',geo_str)+2));
Qcalmax_B5 = str2double(geo_str(strmatch('QUANTIZE_CAL_MAX_BAND_5',geo_str)+2));
if Lnum==7
Qcalmax_B6 = str2double(geo_str(strmatch('QUANTIZE_CAL_MAX_BAND_6_VCID_1',geo_str)+2));
else
Qcalmax_B6 = str2double(geo_str(strmatch('QUANTIZE_CAL_MAX_BAND_6',geo_str)+2));
end
Qcalmax_B7 = str2double(geo_str(strmatch('QUANTIZE_CAL_MAX_BAND_7',geo_str)+2));
Qcalmax=[Qcalmax_B1,Qcalmax_B2,Qcalmax_B3,Qcalmax_B4,Qcalmax_B5,Qcalmax_B6,Qcalmax_B7];
% Read in QCALMIN
Qcalmin_B1 = str2double(geo_str(strmatch('QUANTIZE_CAL_MIN_BAND_1',geo_str)+2));
Qcalmin_B2 = str2double(geo_str(strmatch('QUANTIZE_CAL_MIN_BAND_2',geo_str)+2));
Qcalmin_B3 = str2double(geo_str(strmatch('QUANTIZE_CAL_MIN_BAND_3',geo_str)+2));
Qcalmin_B4 = str2double(geo_str(strmatch('QUANTIZE_CAL_MIN_BAND_4',geo_str)+2));
Qcalmin_B5 = str2double(geo_str(strmatch('QUANTIZE_CAL_MIN_BAND_5',geo_str)+2));
if Lnum==7
Qcalmin_B6 = str2double(geo_str(strmatch('QUANTIZE_CAL_MIN_BAND_6_VCID_1',geo_str)+2));
else
Qcalmin_B6 = str2double(geo_str(strmatch('QUANTIZE_CAL_MIN_BAND_6',geo_str)+2));
end
Qcalmin_B7 = str2double(geo_str(strmatch('QUANTIZE_CAL_MIN_BAND_7',geo_str)+2));
Qcalmin=[Qcalmin_B1,Qcalmin_B2,Qcalmin_B3,Qcalmin_B4,Qcalmin_B5,Qcalmin_B6,Qcalmin_B7];
% Read in nrows & ncols of optical bands
Sample_ref = str2double(geo_str(strmatch('REFLECTIVE_SAMPLES',geo_str)+2));
Line_ref = str2double(geo_str(strmatch('REFLECTIVE_LINES',geo_str)+2));
% record ijdimension of optical bands
ijdim_ref=[Line_ref,Sample_ref];
Sample_thm = str2double(geo_str(strmatch('THERMAL_SAMPLES',geo_str)+2));
Line_thm = str2double(geo_str(strmatch('THERMAL_LINES',geo_str)+2));
% record thermal band dimensions (i,j)
ijdim_thm=[Line_thm,Sample_thm];
% Read in resolution of optical and thermal bands
reso_ref = str2double(geo_str(strmatch('GRID_CELL_SIZE_REFLECTIVE',geo_str)+2));
reso_thm = str2double(geo_str(strmatch('GRID_CELL_SIZE_THERMAL',geo_str)+2));
% Read in UTM Zone Number
zc=str2double(geo_str(strmatch('UTM_ZONE',geo_str)+2));
% Read in Solar Azimuth & Elevation angle (degrees)
azi=str2double(geo_str(strmatch('SUN_AZIMUTH',geo_str)+2));
zen=90-str2double(geo_str(strmatch('SUN_ELEVATION',geo_str)+2));
% Read in upperleft mapx,y
ulx=str2double(geo_str(strmatch('CORNER_UL_PROJECTION_X_PRODUCT',geo_str)+2));
uly=str2double(geo_str(strmatch('CORNER_UL_PROJECTION_Y_PRODUCT',geo_str)+2));
ul=[ulx,uly];
% Read in date of year
char_doy=char(geo_str(strmatch('LANDSAT_SCENE_ID',geo_str)+2));
doy=str2double(char_doy(15:17));
% Read in latidtude and longtitude.
ul_lat=str2double(geo_str(strmatch('CORNER_UL_LAT_PRODUCT',geo_str)+2));
ul_lon=str2double(geo_str(strmatch('CORNER_UL_LON_PRODUCT',geo_str)+2));
ur_lat=str2double(geo_str(strmatch('CORNER_UR_LAT_PRODUCT',geo_str)+2));
ur_lon=str2double(geo_str(strmatch('CORNER_UR_LON_PRODUCT',geo_str)+2));
ll_lat=str2double(geo_str(strmatch('CORNER_LL_LAT_PRODUCT',geo_str)+2));
ll_lon=str2double(geo_str(strmatch('CORNER_LL_LON_PRODUCT',geo_str)+2));
lr_lat=str2double(geo_str(strmatch('CORNER_LR_LAT_PRODUCT',geo_str)+2));
lr_lon=str2double(geo_str(strmatch('CORNER_LR_LON_PRODUCT',geo_str)+2));
north=max(ul_lat,ur_lat);
south=min(ll_lat,lr_lat);
west=min(ul_lon,ll_lon);
east=max(ur_lon,lr_lon);
bbox=[north,south,west,east];
else % "old" MTL.txt
% read in LMAX
Lmax_B1 = str2double(geo_str(strmatch('LMAX_BAND1',geo_str)+2));
Lmax_B2 = str2double(geo_str(strmatch('LMAX_BAND2',geo_str)+2));
Lmax_B3 = str2double(geo_str(strmatch('LMAX_BAND3',geo_str)+2));
Lmax_B4 = str2double(geo_str(strmatch('LMAX_BAND4',geo_str)+2));
Lmax_B5 = str2double(geo_str(strmatch('LMAX_BAND5',geo_str)+2));
if Lnum==7
Lmax_B6 = str2double(geo_str(strmatch('LMAX_BAND61',geo_str)+2));
else
Lmax_B6 = str2double(geo_str(strmatch('LMAX_BAND6',geo_str)+2));
end
Lmax_B7 = str2double(geo_str(strmatch('LMAX_BAND7',geo_str)+2));
Lmax=[Lmax_B1,Lmax_B2,Lmax_B3,Lmax_B4,Lmax_B5,Lmax_B6,Lmax_B7];
% Read in LMIN
Lmin_B1 = str2double(geo_str(strmatch('LMIN_BAND1',geo_str)+2));
Lmin_B2 = str2double(geo_str(strmatch('LMIN_BAND2',geo_str)+2));
Lmin_B3 = str2double(geo_str(strmatch('LMIN_BAND3',geo_str)+2));
Lmin_B4 = str2double(geo_str(strmatch('LMIN_BAND4',geo_str)+2));
Lmin_B5 = str2double(geo_str(strmatch('LMIN_BAND5',geo_str)+2));
if Lnum==7
Lmin_B6 = str2double(geo_str(strmatch('LMIN_BAND61',geo_str)+2));
else
Lmin_B6 = str2double(geo_str(strmatch('LMIN_BAND6',geo_str)+2));
end
Lmin_B7 = str2double(geo_str(strmatch('LMIN_BAND7',geo_str)+2));
Lmin=[Lmin_B1,Lmin_B2,Lmin_B3,Lmin_B4,Lmin_B5,Lmin_B6,Lmin_B7];
% Read in QCALMAX
Qcalmax_B1 = str2double(geo_str(strmatch('QCALMAX_BAND1',geo_str)+2));
Qcalmax_B2 = str2double(geo_str(strmatch('QCALMAX_BAND2',geo_str)+2));
Qcalmax_B3 = str2double(geo_str(strmatch('QCALMAX_BAND3',geo_str)+2));
Qcalmax_B4 = str2double(geo_str(strmatch('QCALMAX_BAND4',geo_str)+2));
Qcalmax_B5 = str2double(geo_str(strmatch('QCALMAX_BAND5',geo_str)+2));
if Lnum==7
Qcalmax_B6 = str2double(geo_str(strmatch('QCALMAX_BAND61',geo_str)+2));
else
Qcalmax_B6 = str2double(geo_str(strmatch('QCALMAX_BAND6',geo_str)+2));
end
Qcalmax_B7 = str2double(geo_str(strmatch('QCALMAX_BAND7',geo_str)+2));
Qcalmax=[Qcalmax_B1,Qcalmax_B2,Qcalmax_B3,Qcalmax_B4,Qcalmax_B5,Qcalmax_B6,Qcalmax_B7];
% Read in QCALMIN
Qcalmin_B1 = str2double(geo_str(strmatch('QCALMIN_BAND1',geo_str)+2));
Qcalmin_B2 = str2double(geo_str(strmatch('QCALMIN_BAND2',geo_str)+2));
Qcalmin_B3 = str2double(geo_str(strmatch('QCALMIN_BAND3',geo_str)+2));
Qcalmin_B4 = str2double(geo_str(strmatch('QCALMIN_BAND4',geo_str)+2));
Qcalmin_B5 = str2double(geo_str(strmatch('QCALMIN_BAND5',geo_str)+2));
if Lnum==7
Qcalmin_B6 = str2double(geo_str(strmatch('QCALMIN_BAND61',geo_str)+2));
else
Qcalmin_B6 = str2double(geo_str(strmatch('QCALMIN_BAND6',geo_str)+2));
end
Qcalmin_B7 = str2double(geo_str(strmatch('QCALMIN_BAND7',geo_str)+2));
Qcalmin=[Qcalmin_B1,Qcalmin_B2,Qcalmin_B3,Qcalmin_B4,Qcalmin_B5,Qcalmin_B6,Qcalmin_B7];
% Read in nrows & ncols of optical bands
Sample_ref = str2double(geo_str(strmatch('PRODUCT_SAMPLES_REF',geo_str)+2));
Line_ref = str2double(geo_str(strmatch('PRODUCT_LINES_REF',geo_str)+2));
% record ijdimension of optical bands
ijdim_ref=[Line_ref,Sample_ref];
Sample_thm = str2double(geo_str(strmatch('PRODUCT_SAMPLES_THM',geo_str)+2));
Line_thm = str2double(geo_str(strmatch('PRODUCT_LINES_THM',geo_str)+2));
% record thermal band dimensions (i,j)
ijdim_thm=[Line_thm,Sample_thm];
% Read in resolution of optical and thermal bands
reso_ref = str2double(geo_str(strmatch('GRID_CELL_SIZE_REF',geo_str)+2));
reso_thm = str2double(geo_str(strmatch('GRID_CELL_SIZE_THM',geo_str)+2));
% Read in UTM Zone Number
zc=str2double(geo_str(strmatch('ZONE_NUMBER',geo_str)+2));
% Read in Solar Azimuth & Elevation angle (degrees)
azi=str2double(geo_str(strmatch('SUN_AZIMUTH',geo_str)+2));
zen=90-str2double(geo_str(strmatch('SUN_ELEVATION',geo_str)+2));
% Read in upperleft mapx,y
ulx=str2double(geo_str(strmatch('PRODUCT_UL_CORNER_MAPX',geo_str)+2));
uly=str2double(geo_str(strmatch('PRODUCT_UL_CORNER_MAPY',geo_str)+2));
ul=[ulx,uly];
% Read in date of year
char_doy=char(geo_str(strmatch('DATEHOUR_CONTACT_PERIOD',geo_str)+2));
doy=str2double(char_doy(4:6));
% Read in latidtude and longtitude.
ul_lat=str2double(geo_str(strmatch('PRODUCT_UL_CORNER_LAT',geo_str)+2));
ul_lon=str2double(geo_str(strmatch('PRODUCT_UL_CORNER_LON',geo_str)+2));
ur_lat=str2double(geo_str(strmatch('PRODUCT_UR_CORNER_LAT',geo_str)+2));
ur_lon=str2double(geo_str(strmatch('PRODUCT_UR_CORNER_LON',geo_str)+2));
ll_lat=str2double(geo_str(strmatch('PRODUCT_LL_CORNER_LAT',geo_str)+2));
ll_lon=str2double(geo_str(strmatch('PRODUCT_LL_CORNER_LON',geo_str)+2));
lr_lat=str2double(geo_str(strmatch('PRODUCT_LR_CORNER_LAT',geo_str)+2));
lr_lon=str2double(geo_str(strmatch('PRODUCT_LR_CORNER_LON',geo_str)+2));
north=max(ul_lat,ur_lat);
south=min(ll_lat,lr_lat);
west=min(ul_lon,ll_lon);
east=max(ur_lon,lr_lon);
bbox=[north,south,west,east];
end
elseif Lnum == 8 || Lnum == 9
% read in LMAX
Lmax_B2 = str2double(geo_str(strmatch('RADIANCE_MAXIMUM_BAND_2',geo_str)+2));
Lmax_B3 = str2double(geo_str(strmatch('RADIANCE_MAXIMUM_BAND_3',geo_str)+2));
Lmax_B4 = str2double(geo_str(strmatch('RADIANCE_MAXIMUM_BAND_4',geo_str)+2));
Lmax_B5 = str2double(geo_str(strmatch('RADIANCE_MAXIMUM_BAND_5',geo_str)+2));
Lmax_B6 = str2double(geo_str(strmatch('RADIANCE_MAXIMUM_BAND_6',geo_str)+2));
Lmax_B7 = str2double(geo_str(strmatch('RADIANCE_MAXIMUM_BAND_7',geo_str)+2));
Lmax_B9 = str2double(geo_str(strmatch('RADIANCE_MAXIMUM_BAND_9',geo_str)+2));
Lmax_B10 = str2double(geo_str(strmatch('RADIANCE_MAXIMUM_BAND_10',geo_str)+2));
Lmax=[Lmax_B2,Lmax_B3,Lmax_B4,Lmax_B5,Lmax_B6,Lmax_B7,Lmax_B9,Lmax_B10];
% read in LMIN
Lmin_B2 = str2double(geo_str(strmatch('RADIANCE_MINIMUM_BAND_2',geo_str)+2));
Lmin_B3 = str2double(geo_str(strmatch('RADIANCE_MINIMUM_BAND_3',geo_str)+2));
Lmin_B4 = str2double(geo_str(strmatch('RADIANCE_MINIMUM_BAND_4',geo_str)+2));
Lmin_B5 = str2double(geo_str(strmatch('RADIANCE_MINIMUM_BAND_5',geo_str)+2));
Lmin_B6 = str2double(geo_str(strmatch('RADIANCE_MINIMUM_BAND_6',geo_str)+2));
Lmin_B7 = str2double(geo_str(strmatch('RADIANCE_MINIMUM_BAND_7',geo_str)+2));
Lmin_B9 = str2double(geo_str(strmatch('RADIANCE_MINIMUM_BAND_9',geo_str)+2));
Lmin_B10 = str2double(geo_str(strmatch('RADIANCE_MINIMUM_BAND_10',geo_str)+2));
Lmin=[Lmin_B2,Lmin_B3,Lmin_B4,Lmin_B5,Lmin_B6,Lmin_B7,Lmin_B9,Lmin_B10];
% Read in QCALMAX
Qcalmax_B2 = str2double(geo_str(strmatch('QUANTIZE_CAL_MAX_BAND_2',geo_str)+2));
Qcalmax_B3 = str2double(geo_str(strmatch('QUANTIZE_CAL_MAX_BAND_3',geo_str)+2));
Qcalmax_B4 = str2double(geo_str(strmatch('QUANTIZE_CAL_MAX_BAND_4',geo_str)+2));
Qcalmax_B5 = str2double(geo_str(strmatch('QUANTIZE_CAL_MAX_BAND_5',geo_str)+2));
Qcalmax_B6 = str2double(geo_str(strmatch('QUANTIZE_CAL_MAX_BAND_6',geo_str)+2));
Qcalmax_B7 = str2double(geo_str(strmatch('QUANTIZE_CAL_MAX_BAND_7',geo_str)+2));
Qcalmax_B9 = str2double(geo_str(strmatch('QUANTIZE_CAL_MAX_BAND_9',geo_str)+2));
Qcalmax_B10 = str2double(geo_str(strmatch('QUANTIZE_CAL_MAX_BAND_10',geo_str)+2));
Qcalmax=[Qcalmax_B2,Qcalmax_B3,Qcalmax_B4,Qcalmax_B5,Qcalmax_B6,Qcalmax_B7,Qcalmax_B9,Qcalmax_B10];
% Read in QCALMIN
Qcalmin_B2 = str2double(geo_str(strmatch('QUANTIZE_CAL_MIN_BAND_2',geo_str)+2));
Qcalmin_B3 = str2double(geo_str(strmatch('QUANTIZE_CAL_MIN_BAND_3',geo_str)+2));
Qcalmin_B4 = str2double(geo_str(strmatch('QUANTIZE_CAL_MIN_BAND_4',geo_str)+2));
Qcalmin_B5 = str2double(geo_str(strmatch('QUANTIZE_CAL_MIN_BAND_5',geo_str)+2));
Qcalmin_B6 = str2double(geo_str(strmatch('QUANTIZE_CAL_MIN_BAND_6',geo_str)+2));
Qcalmin_B7 = str2double(geo_str(strmatch('QUANTIZE_CAL_MIN_BAND_7',geo_str)+2));
Qcalmin_B9 = str2double(geo_str(strmatch('QUANTIZE_CAL_MIN_BAND_9',geo_str)+2));
Qcalmin_B10 = str2double(geo_str(strmatch('QUANTIZE_CAL_MIN_BAND_10',geo_str)+2));
Qcalmin=[Qcalmin_B2,Qcalmin_B3,Qcalmin_B4,Qcalmin_B5,Qcalmin_B6,Qcalmin_B7,Qcalmin_B9,Qcalmin_B10];
% read in Refmax
Refmax_B2 = str2double(geo_str(strmatch('REFLECTANCE_MAXIMUM_BAND_2',geo_str)+2));
Refmax_B3 = str2double(geo_str(strmatch('REFLECTANCE_MAXIMUM_BAND_3',geo_str)+2));
Refmax_B4 = str2double(geo_str(strmatch('REFLECTANCE_MAXIMUM_BAND_4',geo_str)+2));
Refmax_B5 = str2double(geo_str(strmatch('REFLECTANCE_MAXIMUM_BAND_5',geo_str)+2));
Refmax_B6 = str2double(geo_str(strmatch('REFLECTANCE_MAXIMUM_BAND_6',geo_str)+2));
Refmax_B7 = str2double(geo_str(strmatch('REFLECTANCE_MAXIMUM_BAND_7',geo_str)+2));
Refmax_B9 = str2double(geo_str(strmatch('REFLECTANCE_MAXIMUM_BAND_9',geo_str)+2));
Refmax=[Refmax_B2,Refmax_B3,Refmax_B4,Refmax_B5,Refmax_B6,Refmax_B7,Refmax_B9];
% read in Refmin
Refmin_B2 = str2double(geo_str(strmatch('REFLECTANCE_MINIMUM_BAND_2',geo_str)+2));
Refmin_B3 = str2double(geo_str(strmatch('REFLECTANCE_MINIMUM_BAND_3',geo_str)+2));
Refmin_B4 = str2double(geo_str(strmatch('REFLECTANCE_MINIMUM_BAND_4',geo_str)+2));
Refmin_B5 = str2double(geo_str(strmatch('REFLECTANCE_MINIMUM_BAND_5',geo_str)+2));
Refmin_B6 = str2double(geo_str(strmatch('REFLECTANCE_MINIMUM_BAND_6',geo_str)+2));
Refmin_B7 = str2double(geo_str(strmatch('REFLECTANCE_MINIMUM_BAND_7',geo_str)+2));
Refmin_B9 = str2double(geo_str(strmatch('REFLECTANCE_MINIMUM_BAND_9',geo_str)+2));
Refmin=[Refmin_B2,Refmin_B3,Refmin_B4,Refmin_B5,Refmin_B6,Refmin_B7,Refmin_B9];
% Read in nrows & ncols of optical bands
Sample_ref = str2double(geo_str(strmatch('REFLECTIVE_SAMPLES',geo_str)+2));
Line_ref = str2double(geo_str(strmatch('REFLECTIVE_LINES',geo_str)+2));
% record ijdimension of optical bands
ijdim_ref=[Line_ref,Sample_ref];
Sample_thm = str2double(geo_str(strmatch('THERMAL_SAMPLES',geo_str)+2));
Line_thm = str2double(geo_str(strmatch('THERMAL_LINES',geo_str)+2));
% record thermal band dimensions (i,j)
ijdim_thm=[Line_thm,Sample_thm];
% Read in resolution of optical and thermal bands
reso_ref = str2double(geo_str(strmatch('GRID_CELL_SIZE_REFLECTIVE',geo_str)+2));
reso_thm = str2double(geo_str(strmatch('GRID_CELL_SIZE_THERMAL',geo_str)+2));
% Read in UTM Zone Number
zc=str2double(geo_str(strmatch('UTM_ZONE',geo_str)+2));
% Read in Solar Azimuth & Elevation angle (degrees)
azi=str2double(geo_str(strmatch('SUN_AZIMUTH',geo_str)+2));
zen=90-str2double(geo_str(strmatch('SUN_ELEVATION',geo_str)+2));
% Read in upperleft mapx,y
ulx=str2double(geo_str(strmatch('CORNER_UL_PROJECTION_X_PRODUCT',geo_str)+2));
uly=str2double(geo_str(strmatch('CORNER_UL_PROJECTION_Y_PRODUCT',geo_str)+2));
ul=[ulx,uly];
% Read in latidtude and longtitude.
ul_lat=str2double(geo_str(strmatch('CORNER_UL_LAT_PRODUCT',geo_str)+2));
ul_lon=str2double(geo_str(strmatch('CORNER_UL_LON_PRODUCT',geo_str)+2));
ur_lat=str2double(geo_str(strmatch('CORNER_UR_LAT_PRODUCT',geo_str)+2));
ur_lon=str2double(geo_str(strmatch('CORNER_UR_LON_PRODUCT',geo_str)+2));
ll_lat=str2double(geo_str(strmatch('CORNER_LL_LAT_PRODUCT',geo_str)+2));
ll_lon=str2double(geo_str(strmatch('CORNER_LL_LON_PRODUCT',geo_str)+2));
lr_lat=str2double(geo_str(strmatch('CORNER_LR_LAT_PRODUCT',geo_str)+2));
lr_lon=str2double(geo_str(strmatch('CORNER_LR_LON_PRODUCT',geo_str)+2));
north=max(ul_lat,ur_lat);
south=min(ll_lat,lr_lat);
west=min(ul_lon,ll_lon);
east=max(ur_lon,lr_lon);
bbox=[north,south,west,east];
% Read in date of year
char_doy=char(geo_str(strmatch('LANDSAT_SCENE_ID',geo_str)+2));
doy=str2double(char_doy(15:17));
else
fprintf('This sensor is not Landsat 4, 5, 7, or 8!\n');
return;
end
end