GEE python:创建逐月影像以Landsat 5TOA影像为例

简介: GEE python:创建逐月影像以Landsat 5TOA影像为例

安装地球引擎API和geemap

安装地球引擎的Python API和geemap。geemap Python包是建立在ipyleaflet和folium包之上的,它实现了几个与地球引擎数据层交互的方法,比如Map.addLayer()、Map.setCenter()和Map.centerObject()。下面的脚本检查geemap包是否已经安装。如果没有,它将安装geemap,它会自动安装其依赖项,包括earthengine-api、folium和ipyleaflet。

Installs geemap package

import subprocess
try:
    import geemap
except ImportError:
    print('Installing geemap ...')
    subprocess.check_call(["python", '-m', 'pip', 'install', 'geemap'])
import ee
import geemap

这里我们需要注意的是设定我们的起止时间和对应的位置信息,然后时间窗口设定为30天,这里我们现根据两个时间并且按照月份取整,根据所获取的月份数量后建立一个月份的时序列表,然后建立一个函数,建立函数的目的就是让我们进行确定间隔的鱼粉从而获取影像。然后分别对不同的位置进行筛选影像,然后,这里因为是再函数中构建的逐月影像筛选,所以我们一定要选取第一景作为合成,方便遍历影像。

函数:

round(number, ndigits=None)

将一个数字舍入到给定精度的小数位数。

如果省略 ndigits 或返回 None,返回值为整数。 否则

ndigits可以是负数。

代码:

# Add Earth Engine dataset
p1 = ee.Geometry.Point([103.521, 13.028])
p2 = ee.Geometry.Point([105.622, 13.050])
Date_Start = ee.Date('2000-05-01')
Date_End = ee.Date('2007-12-01')
Date_window = ee.Number(30)
# Create list of dates for time series
n_months = Date_End.difference(Date_Start, 'month').round()
print("Number of months:", n_months.getInfo())
dates = ee.List.sequence(0, n_months, 1)
print(dates.getInfo())
def make_datelist(n):
    return Date_Start.advance(n, 'month')
dates = dates.map(make_datelist)
print(dates.getInfo())
def fnc(d1):
    S1 = ee.ImageCollection('LANDSAT/LT5_L1T_TOA') \
        .filterDate('2000-05-01', '2007-12-01') \
        .filter(ee.Filter.calendarRange(1, 14, 'month')) \
        .sort('CLOUD_COVER') \
        .filterBounds(p1).first()
    S2 = ee.ImageCollection('LANDSAT/LT5_L1T_TOA') \
        .filterDate('2000-05-01', '2007-12-01') \
        .filter(ee.Filter.calendarRange(1, 14, 'month')) \
        .sort('CLOUD_COVER') \
        .filterBounds(p2).first()
    mosaic = ee.ImageCollection([ee.Image(S1), ee.Image(S2)]).mosaic()
    return mosaic
list_of_images = dates.map(fnc)
print('list_of_images', list_of_images.getInfo())
mt = ee.ImageCollection(list_of_images)
print(mt.getInfo())
# Map.addLayer(mt, {}, 'mt')

结果:

Number of months: 91

[0, 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]

[{‘type’: ‘Date’, ‘value’: 957139200000}, {‘type’: ‘Date’, ‘value’: 959817600000}, {‘type’: ‘Date’, ‘value’: 962409600000}, {‘type’: ‘Date’, ‘value’: 965088000000}, {‘type’: ‘Date’, ‘value’: 967766400000}, {‘type’: ‘Date’, ‘value’: 970358400000}, {‘type’: ‘Date’, ‘value’: 973036800000}, {‘type’: ‘Date’, ‘value’: 975628800000}, {‘type’: ‘Date’, ‘value’: 978307200000}, {‘type’: ‘Date’, ‘value’: 980985600000}, {‘type’: ‘Date’, ‘value’: 983404800000}, {‘type’: ‘Date’, ‘value’: 986083200000}, {‘type’: ‘Date’, ‘value’: 988675200000}, {‘type’: ‘Date’, ‘value’: 991353600000}, {‘type’: ‘Date’, ‘value’: 993945600000}, {‘type’: ‘Date’, ‘value’: 996624000000}, {‘type’: ‘Date’, ‘value’: 999302400000}, {‘type’: ‘Date’, ‘value’: 1001894400000}, {‘type’: ‘Date’, ‘value’: 1004572800000}, {‘type’: ‘Date’, ‘value’: 1007164800000}, {‘type’: ‘Date’, ‘value’: 1009843200000}, {‘type’: ‘Date’, ‘value’: 1012521600000}, {‘type’: ‘Date’, ‘value’: 1014940800000}, {‘type’: ‘Date’, ‘value’: 1017619200000}, {‘type’: ‘Date’, ‘value’: 1020211200000}, {‘type’: ‘Date’, ‘value’: 1022889600000}, {‘type’: ‘Date’, ‘value’: 1025481600000}, {‘type’: ‘Date’, ‘value’: 1028160000000}, {‘type’: ‘Date’, ‘value’: 1030838400000}, {‘type’: ‘Date’, ‘value’: 1033430400000}, {‘type’: ‘Date’, ‘value’: 1036108800000}, {‘type’: ‘Date’, ‘value’: 1038700800000}, {‘type’: ‘Date’, ‘value’: 1041379200000}, {‘type’: ‘Date’, ‘value’: 1044057600000}, {‘type’: ‘Date’, ‘value’: 1046476800000}, {‘type’: ‘Date’, ‘value’: 1049155200000}, {‘type’: ‘Date’, ‘value’: 1051747200000}, {‘type’: ‘Date’, ‘value’: 1054425600000}, {‘type’: ‘Date’, ‘value’: 1057017600000}, {‘type’: ‘Date’, ‘value’: 1059696000000}, {‘type’: ‘Date’, ‘value’: 1062374400000}, {‘type’: ‘Date’, ‘value’: 1064966400000}, {‘type’: ‘Date’, ‘value’: 1067644800000}, {‘type’: ‘Date’, ‘value’: 1070236800000}, {‘type’: ‘Date’, ‘value’: 1072915200000}, {‘type’: ‘Date’, ‘value’: 1075593600000}, {‘type’: ‘Date’, ‘value’: 1078099200000}, {‘type’: ‘Date’, ‘value’: 1080777600000}, {‘type’: ‘Date’, ‘value’: 1083369600000}, {‘type’: ‘Date’, ‘value’: 1086048000000}, {‘type’: ‘Date’, ‘value’: 1088640000000}, {‘type’: ‘Date’, ‘value’: 1091318400000}, {‘type’: ‘Date’, ‘value’: 1093996800000}, {‘type’: ‘Date’, ‘value’: 1096588800000}, {‘type’: ‘Date’, ‘value’: 1099267200000}, {‘type’: ‘Date’, ‘value’: 1101859200000}, {‘type’: ‘Date’, ‘value’: 1104537600000}, {‘type’: ‘Date’, ‘value’: 1107216000000}, {‘type’: ‘Date’, ‘value’: 1109635200000}, {‘type’: ‘Date’, ‘value’: 1112313600000}, {‘type’: ‘Date’, ‘value’: 1114905600000}, {‘type’: ‘Date’, ‘value’: 1117584000000}, {‘type’: ‘Date’, ‘value’: 1120176000000}, {‘type’: ‘Date’, ‘value’: 1122854400000}, {‘type’: ‘Date’, ‘value’: 1125532800000}, {‘type’: ‘Date’, ‘value’: 1128124800000}, {‘type’: ‘Date’, ‘value’: 1130803200000}, {‘type’: ‘Date’, ‘value’: 1133395200000}, {‘type’: ‘Date’, ‘value’: 1136073600000}, {‘type’: ‘Date’, ‘value’: 1138752000000}, {‘type’: ‘Date’, ‘value’: 1141171200000}, {‘type’: ‘Date’, ‘value’: 1143849600000}, {‘type’: ‘Date’, ‘value’: 1146441600000}, {‘type’: ‘Date’, ‘value’: 1149120000000}, {‘type’: ‘Date’, ‘value’: 1151712000000}, {‘type’: ‘Date’, ‘value’: 1154390400000}, {‘type’: ‘Date’, ‘value’: 1157068800000}, {‘type’: ‘Date’, ‘value’: 1159660800000}, {‘type’: ‘Date’, ‘value’: 1162339200000}, {‘type’: ‘Date’, ‘value’: 1164931200000}, {‘type’: ‘Date’, ‘value’: 1167609600000}, {‘type’: ‘Date’, ‘value’: 1170288000000}, {‘type’: ‘Date’, ‘value’: 1172707200000}, {‘type’: ‘Date’, ‘value’: 1175385600000}, {‘type’: ‘Date’, ‘value’: 1177977600000}, {‘type’: ‘Date’, ‘value’: 1180656000000}, {‘type’: ‘Date’, ‘value’: 1183248000000}, {‘type’: ‘Date’, ‘value’: 1185926400000}, {‘type’: ‘Date’, ‘value’: 1188604800000}, {‘type’: ‘Date’, ‘value’: 1191196800000}, {‘type’: ‘Date’, ‘value’: 1193875200000}, {‘type’: ‘Date’, ‘value’: 1196467200000}]

list_of_images [{‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}]}]

{‘type’: ‘ImageCollection’, ‘bands’: [], ‘features’: [{‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘0’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘1’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘2’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘3’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘4’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘5’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘6’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘7’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘8’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘9’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘10’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘11’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘12’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘13’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘14’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘15’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘16’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘17’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘18’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘19’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘20’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘21’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘22’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘23’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘24’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘25’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘26’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘27’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘28’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘29’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘30’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘31’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘32’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘33’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘34’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘35’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘36’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘37’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘38’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘39’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘40’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘41’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘42’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘43’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘44’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘45’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘46’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘47’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘48’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘49’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘50’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘51’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘52’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘53’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘54’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘55’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘56’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘57’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘58’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘59’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘60’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘61’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘62’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘63’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘64’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘65’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘66’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘67’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘68’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘69’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘70’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘71’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘72’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘73’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘74’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘75’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘76’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘77’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘78’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘79’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘80’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘81’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘82’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘83’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘84’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘85’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘86’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘87’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘88’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘89’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘90’}}, {‘type’: ‘Image’, ‘bands’: [{‘id’: ‘B1’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B2’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B3’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B4’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B5’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B6’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}, {‘id’: ‘B7’, ‘data_type’: {‘type’: ‘PixelType’, ‘precision’: ‘float’}, ‘crs’: ‘EPSG:4326’, ‘crs_transform’: [1, 0, 0, 0, 1, 0]}], ‘properties’: {‘system:index’: ‘91’}}]}

相关文章
|
3月前
|
SQL 定位技术 API
GEE python:按照矢量中的几何位置、属性名称和字符串去筛选矢量集合
GEE python:按照矢量中的几何位置、属性名称和字符串去筛选矢量集合
35 0
|
3月前
|
存储 编解码 Python
Python GDAL基于经、纬度提取大量遥感影像中相同位置处像元的数值
【2月更文挑战第8天】本文介绍基于Python语言中的gdal模块,对2景不同的遥感影像加以对应位置像素值匹配的方法——即基于一景遥感影像的每一个像元,提取另一景遥感影像中,与之空间位置相同的像元的像素值的方法~
Python GDAL基于经、纬度提取大量遥感影像中相同位置处像元的数值
|
3月前
|
机器学习/深度学习 数据采集 算法
GEE python——基于多源遥感影像和随机森林分类器进行洪水概率预测
GEE python——基于多源遥感影像和随机森林分类器进行洪水概率预测
53 0
|
3月前
|
机器学习/深度学习 JavaScript Python
GEE机器学习——混淆矩阵Classifier.confusionMatrix()和errorMatrix()和exlain()的用法(js和python代码)
GEE机器学习——混淆矩阵Classifier.confusionMatrix()和errorMatrix()和exlain()的用法(js和python代码)
74 0
|
3月前
|
机器学习/深度学习 自然语言处理 JavaScript
GEE机器学习——最大熵分类器案例分析(JavaScript和python代码)
GEE机器学习——最大熵分类器案例分析(JavaScript和python代码)
45 0
|
3月前
|
API Python
gee python:利用核函数对影像进行平滑处理和边缘提取分析
gee python:利用核函数对影像进行平滑处理和边缘提取分析
21 0
|
7天前
|
存储 人工智能 数据处理
Python:编程的艺术与科学的完美交融
Python:编程的艺术与科学的完美交融
13 1
|
3天前
|
测试技术 调度 索引
python编程中常见的问题
【4月更文挑战第23天】
13 2
|
3天前
|
网络协议 算法 网络架构
Python网络编程之udp编程、黏包以及解决方案、tcpserver
Python网络编程之udp编程、黏包以及解决方案、tcpserver
|
4天前
|
机器学习/深度学习 数据挖掘 算法框架/工具
Python:编程的艺术与魅力
Python:编程的艺术与魅力
14 3