Hi,
I run into strange behaviour while trying to learn how to use the WCS endpoint to retrieve Sentinel-1 data in GeoTiff format. I have the template for the WCS query as follows:
https://services.sentinel-hub.com/ogc/wcs/69…?service=WCS&version=1.0.0&request=GetCoverage&coverage=EW_HH_DB&crs=EPSG:3995&resx=500&resy=500&format=GeoTIFF&time=2020-08-25/2020-08-25&bbox=…
The three following bounding boxes work ok and return an image as expected:
bbox=-1817000.0,-2297000.0,-1717000.0,-2197000.0
bbox=-1717000.0,-2297000.0,-1617000.0,-2197000.0
bbox=-1717000.0,-2197000.0,-1617000.0,-2097000.0
However, a query with the following bounding box returns HTTP 500 Internal server error:
bbox=-1817000.0,-2197000.0,-1717000.0,-2097000.0
< ServiceExceptionReport version=“1.2.0”
…>
< ServiceException>
java.util.concurrent.ExecutionException: java.lang.ArrayIndexOutOfBoundsException
< /ServiceException>
< /ServiceExceptionReport>
What could cause this?