Hello, I am writing again because during the last downloads using the API with python of pleiades products, when making Access Pleiades data in a BYOC collection, the image is always downloaded with a size of 145 bytes, and it is necessary to download it manually using the Sentinel hub request builder web page.
Is this error known from sentinel hub?
This is my evalscript
"//VERSION=3\n function setup() {\n return {\n input: [\"B0\", \"B1\", \"B2\", \"B3\", \"PAN\"],\n output: { bands: 4 }\n };\n }\n let minVal = 0.0;\n let maxVal = 3000;\n let viz = new DefaultVisualizer(minVal, maxVal);\n function evaluatePixel(samples) {\n let sudoPanW = (samples.B1 + samples.B2 + samples.B0) / 3;\n let ratioW = samples.PAN / sudoPanW;\n let val = [samples.B2 * ratioW, samples.B1 * ratioW, samples.B0 * ratioW, samples.B3];\n return viz.processList(val);}\n"
Best regards