I have created in my confiduration sentinel 1 layer by inserting the following script in the costum sccript editor:
return [VV,VH, 2 * VH, VV / VH / 100.0]
( like in the documentation + VH channel).
I used wms_Request and get data and then plot the image but I got image with dots :
bbox_size,bbox,bbox_coords_wgs84=get_bbox_from_shape(shapes,10)
s1_request = WmsRequest(
data_collection=DataCollection.SENTINEL1_IW,
layer='TRUE-COLOR-S1-IW',
bbox=bbox,
time=('2020-11-01', '2021-01-10'),
width=bbox_size[0],
config=config
)
s1_data = s1_request.get_data()
plot_image(s1_data[-3])
I’m not sure why is this hapenning ans would love to understand it better and get help with hoe to solve it.