Download the 'localIncidenceAngle'-data without downloading the VV-Data again

Hi Sentinel-Team,

when I have already downloaded the VV-data and I need aditional the ‘localIncidenceAngle’-data. Is is possible to download the ‘localIncidenceAngle’-data without downloading the VV-Data again?

Thank you in advance

Script:
add_data = SentinelHubInputTask(
data_collection = DataCollection.SENTINEL1_IW,
bands= [‘VV’], #, ‘VH’],
bands_feature = (FeatureType.DATA, ‘GRD_Data’),
additional_data=[
(FeatureType.DATA, ‘localIncidenceAngle’)
],
resolution = 10,
#resolution= ‘HIGH’,
time_difference = datetime.timedelta(hours=1),
#config = config(),
max_threads = 1,
aux_request_args = {

    "processing": {
    "orthorectify": "true",
    "backCoeff":"GAMMA0_TERRAIN",
    "demInstance": "COPERNICUS_30"
                }
   
}
        )

localIncidenceAngle is a band in the data collection so you should be able to only request this in your API request without requesting VV for example. This example should help you out.

Thank you for your help. :slight_smile:
This is working for me:
add_data = SentinelHubInputTask(
data_collection = DataCollection.SENTINEL1_IW,
additional_data=[
(FeatureType.DATA, ‘localIncidenceAngle’)
],
resolution = 10,
#resolution= ‘HIGH’,
time_difference = datetime.timedelta(hours=1),
#config = config(),
max_threads = 1,
aux_request_args = {

    "processing": {
    "orthorectify": "true",
    "backCoeff":"GAMMA0_TERRAIN",
    "demInstance": "COPERNICUS_30"
                }
   
}
        )