Hello,
i’m trying to access Landsat 8 images, I have created layer in the configuration utility with the following script:
//VERSION=3
function setup() {
return {
input: "B01","B02","B03","B04","B05","B06",
"B07","B10"],
output: {
bands: 9 ,
sampleType:"FLOAT32"
}
}
}
function evaluatePixel(samples) {
return nsamples.B01, samples.B02,samples.B03,samples.B04,
samples.B05,samples.B06,samples.B07
];
}
and then I created WMS request :
wms_bands_request = WmsRequest(
data_collection=DataCollection.LANDSAT8,
data_folder='imgs',
layer='LANDSAT8_2_CLM',
bbox=bbox,
time=time_interval,
width=bbox_sizez0],
height=bbox_sizez1],
maxcc=0.2,
image_format=MimeType.TIFF,
config=config
)
dates= wms_bands_request.get_dates()
The result is 400 client error with this message:
Server response: “TYPENAME=DSS6 not found!”
How can I fix it?