Hi,
When we save a request through the âsave_data = Trueâ parameter, is the order of the bands preserved?
For example, if we open the saved tiff file through Rasterio (or any other GIS package), the layers (0 to 12) should correspond to the returnâs order ([B01,B02,B03,B04,B05,B06,B07,B08,B8A,B09,B11,B12] for a âBands S2 L2Aâ request).
This is indeed the case right?
Sample of my request:
wcs_bands_request = sentinelhub.WcsRequest(
data_source=sentinelhub.DataSource.SENTINEL2_L2A,
layer=âBANDS-S2-L2Aâ,
bbox=bb,
time=(âyyyy-mm-01â, âyyyy-mm-16â),
resx=â10mâ,
resy=â10mâ,
image_format=sentinelhub.MimeType.TIFF_d32f,
data_folder = âxxxâ,
maxcc=0.3,
time_difference=datetime.timedelta(hours=2),
config=config,
)
wcs_bands_img = wcs_bands_request.get_data(save_data = True)

