Open JeroenVerstraelen opened 1 year ago
@jdries I recently had this issue occur again for the CDSE benchmarks.
I encountered the same problem when downloading the CDSE Sentinel1_GRD data
Note that this is mostly a usability issue with an easy workaround:
sentinel1 = c.load_collection(
"SENTINEL1_GRD",
temporal_extent = ["2022-06-04", "2022-08-04"],
bands = ["VV","VH"]
)
sentinel1 = sentinel1.sar_backscatter(
coefficient='sigma0-ellipsoid',
local_incidence_angle=False,
elevation_model='COPERNICUS_30')
@Pratichhya we'll want to make Sentinel-1 processing more prominent in cdse documentation to highlight this better.
Currently, when you do a simple load_collection for SENTINEL1_GRD on Creodias you will receive an error saying "Backscatter coefficient 'gamma0-terrain' is not supported". This is because the sar_backscatter process is added automatically with some default parameter that is not supported by Creodias. Perhaps we should remove this automatic addition to make this more transparent to the user?
Example client code:
Output: