Request fails with message "Something went wrong" and RENDERER_EXCEPTION

Hello,
I try to run the following request:

{
  "input": {
    "bounds": {
      "bbox": [
        988442.4859182527,
        1356849.7611704315,
        991002.4859182527,
        1359409.7611704315
      ],
      "properties": {
        "crs": "http://www.opengis.net/def/crs/EPSG/0/32647"
      }
    },
    "data": [
      {
        "type": "S2L2A",
        "processing": {
          "upsampling": "NEAREST",
          "downsampling": "NEAREST"
        },
        "dataFilter": {
          "timeRange": {
            "from": "2020-01-01T00:00:00+00:00",
            "to": "2020-01-06T00:00:00+00:00"
          },
          "mosaickingOrder": "leastCC"
        }
      }
    ]
  },
  "output": {
    "width": 128,
    "height": 128,
    "responses": [
      {
        "identifier": "B02",
        "format": {
          "type": "image/tiff"
        }
      },
      {
        "identifier": "B03",
        "format": {
          "type": "image/tiff"
        }
      }
    ]
  }

with this evaluation script

//VERSION=3
function setup() {
    return {
        input: [{
            bands: ['B02', 'B03'],
        }],
        output: [
            {id: 'B02', bands: 1, sampleType: 'FLOAT32'},
            {id: 'B03', bands: 1, sampleType: 'FLOAT32'}
        ]
    }
}
function evaluatePixel(sample) {
    var b02 = [sample.B02]
    var b03 = [sample.B03]

    return {
        B02: b02,
        B03: b03
    }
}

I see that there is an internal server error (500) with the “Something went wrong” message and a RENDERER_EXCEPTION code.
If I split up the request into two requests asking for only band at a time I get the results I expect (and I see the requested region has data). To decrease the number of requests I would really like to ask for multiple bands with one call.

Hi @tfincke ,

From the code perspective there’s no issue. I tested the provided code and it worked perfectly fine. Would you mind providing me the last 4 digit of the Sentinel Hub client ID you used to make the request and received the 500 error? I can check in the system and see if there’s more info there.

Hi,
the last four digits are 246a .

Hi @tfincke ,

The account registered with tonio.fincke@brockmann-consult.de is expired. Are you using the account registered with another email? Please let me know the email, thank you.

No, it’s another account. Look for xcube-sh@brockmann-consult.de

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.