I have the following payload for https://services.sentinel-hub.com/api/v1/process:
payload = {
"input": {
"bounds": {
"properties": {
"crs": "http://www.opengis.net/def/crs/OGC/1.3/CRS84"
},
"bbox": bbox
},
"data": [
{
"type": "S2L2A",
"dataFilter": {
"timeRange": {
"from":strt_dt,
"to":end_dt
}
}
}
]
},
"output":{"resx":10,"resy":10,
"responses":[{
"identifier":"default",
"format":{"type":"image/jpeg"}
`Preformatted text` }]},
"evalscript": eval_script_rgb
}
It gives this error:
{"error":{"status":400,"reason":"Bad Request","message":"The bounding box area is too large! Please zoom in.","code":"RENDERER_EXCEPTION"}}
However, if I use static width and height like this:
"output":{"width":1000,"height":940}
I don’t see that error then. Any explanations on this?