Hi,
The following code works as expected:
spatial_extent = {
'west': 4.45,
'east': 4.70,
'south': 51.16,
'north': 51.22,
'crs': 'epsg:4326'
}
sentinel1 = c.load_collection(
"SENTINEL1_GRD_SIGMA0",
temporal_extent=["2020-06-04", "2020-08-04"],
bands=["VV", "VH"]).filter_bbox(spatial_extent).execute_batch()
If I change the spatial extent to this:
spatial_extent = {
'west': 3.27,
'east': 3.40,
'south': 46.35,
'north': 46.44,
'crs': 'epsg:4326'
}
I get the following error.
[{'id': '[1680619929172, 17701]',
'time': '2023-04-04T14:52:09.172Z', 'level': 'error',
'message': 'create_pyramid failed: Could not find data for your load_collection request with catalog ID "urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1". The catalog query had correlation ID "c-2c862b1636b541ad98e9151f550a482b" and returned 0 results.'},
{'id': '[1680619929445, 21163]', 'time': '2023-04-04T14:52:09.445Z', 'level': 'error', 'message': 'OpenEO batch job failed: OpenEOApiException(status_code=400, code=\'NoDataAvailable\', message=\'There is no data available for the given extents. Could not find data for your load_collection request with catalog ID "urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1". The catalog query had correlation ID "c-2c862b1636b541ad98e9151f550a482b" and returned 0 results.\', id=\'no-request\')'}]
I understand the error, but S1 data for this area and period should exist (I get S2 data without problem). I have extended the temporal window to several years and the result is the same.
Maybe the error means that the data is not available on Terrascope? That would be surprising.
I am clearly doing something wrong, but I can’t see it.
Thanks for your help.
Jordi