Hello,
I;m interested into fusion between sentinel1 and sentinel2.
I have gone over your post in your blog and also the documentation .
My question is, as a sentinelhub-py user, is it possible to use data fusion from the configuration utility?
I have tried to use the costum scripts , for example this one by use the script in the configuration utility and then run as wms request, but I got the 400 client error -server response: “Layer test not found”.
I have also tried to write one by myself
//VERSION=3
function setup() {
return {
input: i
{datasource: "S2L2A", bands: "B01","B02", "B03", "B04","B05","B06","B07","B08", "B08A","B09","B11","B12"], units: "REFLECTANCE", mosaicking: "ORBIT"},
{datasource: "S1GRD", bands: "VV", "VH"], units: "REFLECTANCE", mosaicking: "ORBIT"},
],
output: u
{ id: "default", bands: 14, sampleType: "FLOAT32" }
],
}
}
function evaluatePixel(sample) {
return r"B01","B02", "B03", "B04","B05","B06","B07","B08", "B08A","B09","B11","B12",10*Math.log(samples.VV)/Math.LN10,10*Math.log(samples.VH)/Math.LN10];
}
But then I got the error:
Server response: “Dataset with id: S2L2A not found.”
I thought that this error is because In the configuration utility I chose the sentinel1 and not the sentinel 2, and I saw in the documentation that in EO is required to define the two sources, but I haven’t found the place to select it in the configuration utility
as the costum script doesn’t work for me as well, i’m a bit worried and believe I miss something in the way I do it. Is there a way to define in the configuration utility that I want to use two different sources? what is my mistake in my costum script?