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:
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!