Good afternoon,
I am having some issues accessing images with Sentinel2. I have been working with my code to download images from Sentinel2 and 5P for a while now, and I wanted to expand my analysis to other regions of Europe, Africa and South America (I have mainly focused on the Canary Islands until now). But now when I change the BBOX to cover with WMSRequest or WCSRequest, it gives me this error:
Server response: "Parameter GEOMETRY and BBOX and the instance area of interest (if set) must intersect!"
I assumed it may be because the new areas of interest that I tried first (Sahara and South America) maybe were not covered by Sentinel2 for the dates I chose (although I mainly do my first tests with ‘latest’ time interval), but I tried with central and northern Europe too, and I get the same message.
I tried different BBOX areas of the same regions, different sizes, different dates, but with no avail.
My code is:
bbox = BBox(bbox=b7.619019,47.582084,8.519897,48.451066], crs=CRS.WGS84)
request = WmsRequest(data_source = DataSource.SENTINEL2_L1C,
** layer=‘TRUE-COLOR-S2-L1C’,**
** data_folder=data_folder,**
** bbox=bbox,**
** time=‘latest’, **
** width=512,**
** config=config,**
** custom_url_params={CustomUrlParam.MINQA:75},**
** maxcc=maxcc,**
** image_format=MimeType.TIFF_d32f,**
** )**
Could this be an issue with the new regions? I am sure all of Europe (and most of the world) is covered by Sentinel2, and I doubt that these regions I am trying are not covered by it. Or maybe I am missing something?
Thank you and kind regards!