Update AGBD.py
Browse filesindexing was off
AGBD.py
CHANGED
@@ -176,7 +176,7 @@ def normalize_bands(bands_data, norm_values, order, norm_strat, nodata_value = N
|
|
176 |
|
177 |
for i, band in enumerate(order) :
|
178 |
band_norm = norm_values[band]
|
179 |
-
bands_data[
|
180 |
|
181 |
return bands_data
|
182 |
|
|
|
176 |
|
177 |
for i, band in enumerate(order) :
|
178 |
band_norm = norm_values[band]
|
179 |
+
bands_data[i, :, :] = normalize_data(bands_data[i, :, :], band_norm, norm_strat, nodata_value)
|
180 |
|
181 |
return bands_data
|
182 |
|