Hi, can you please advise on how to get the S1 metadata returned using SentinelHubInputTask? I tried setting mosaicking to TILE, but that gives the error “TILE is not a valid MosaickingOrder”. Specifically, I’m looking for the tile id in the scenes object,
s1_aux_args = dict(
dataFilter = {'acquisitionMode': 'IW'},
processing = {
'backCoeff': 'GAMMA0_TERRAIN',
'orthorectify': True,
"speckleFilter": {
"type": "LEE",
"windowSizeX": 5,
"windowSizeY": 5
}
}
)
add_data = SentinelHubInputTask(
bands_feature=(FeatureType.DATA, "BANDS"),
bands= ["VV", "VH"],
resolution=20,
time_difference=datetime.timedelta(minutes=120),
data_collection=DataCollection.SENTINEL1_IW,
mosaicking_order='TILE',
aux_request_args=s1_aux_args,
additional_data = [(FeatureType.DATA, "localIncidenceAngle")],
max_threads=5,
)
