Hi!
Could you please help me with getting cloud coverage percentage for each NDVI image?
We want to show cloud coverage for each image from sentinel.
Now we use WMS request to get the tiles for specific day. But we also need to know if the response are tiles covered by clouds on that day. The ideal solution is getting the result in percentage but true/false is also acceptable.
This is our request now:
return _leaflet.value.tileLayer.wms(`https://services.sentinel-hub.com/ogc/wms/${config.public.wmsId}`, {
tileSize: 256,
layers: layerType,
upsampling: "BICUBIC",
maxNativeZoom: 18,
minNativeZoom: 15,
minZoom: 0,
maxZoom: 30,
format: "image/png",
geometry: generatePolygonString(geojson),
crs: _leaflet.value.CRS.EPSG4326,
transparent: true,
time: state.value.newSatelliteDate,
} as ExtendedWMSOptions);
In Sentinel Hub I use Cloude Coverage = 100 for getting the real image of the day I ask in that request.
Thank you