I followed the notification - change the end_point (base-URL) from https://services.sentinel-hub.com/ogc/* to https://creodias.sentinel-hub.com/ogc/*
and tried both Wmsrequest and Wcsrequest. However, both requests give me the response: “503 Server Error: Service Unavailable for URL:”
I have posted the request I made:
request = WmsRequest(
data_folder=‘data’,
data_source=DataSource.SENTINEL5P,
layer=‘CH4’,
bbox=vancouver_bbox,
time= (one_week_ago,today),
width=512,
height=856,
image_format=MimeType.TIFF_d32f,
config=config,
maxcc = 0.5
)
request = WcsRequest(data_folder=‘test_dir’,
data_source=DataSource.SENTINEL5P,
layer=‘Methane’,
bbox=vancouver_bbox,
time=(one_week_ago,today),
image_format=MimeType.TIFF_d32f,
config=config)
Please help for these issues.
Thanks.