Download Sentinel-2 1C data for 2016

Hello, I am trying to download some Sentinel-2 data for 2016 but receive an error:

DownloadFailedException: Failed to download from: https://roda.sentinel-hub.com/

using this code in python:

from sentinelhub import AwsProductRequest
product_id = 'S2A_MSIL1C_20160815T144742_N0204_R139_T20QPD_20160815T144741'
request = AwsProductRequest(product_id=product_id, 
                                data_folder='../data/', 
                                safe_format=True)

Yet when I look the data does exist:
error

The code also works for more recent imagery:

product_id = 'S2B_MSIL1C_20180919T160929_N0206_R140_T16QCE_20180919T211714'
request = AwsProductRequest(product_id=product_id, 
                                data_folder='../data/', 
                                safe_format=True)

Any advice would be appreciated, thanks!

Hi @rachel.keay ,

The naming convention for Sentinel-1 L1C has changed since 6th of December 2016.

Please find the product you are interested in using aws s3 ls --request-payer requester s3://sentinel-s2-l1c/products/2016/8/15/ and apply the correct product id to your code.

Best Regards

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.