Hi,
I try download NDVI with a custom script, but some areas are returning partial data.
Example:
Request is WmsRequest:
bounding_box = BBox(bbox, crs=CRS.WGS84)
my_evalscript = '''
let ndvi = (B08 - B04) / (B08 + B04);
return ndvi]
'''
wms_bands_request = WmsRequest(layer=LAYER_NAME,
custom_url_params={
CustomUrlParam.EVALSCRIPT: my_evalscript,
CustomUrlParam.ATMFILTER: 'NONE'
},
bbox=bounding_box,
time=periodo,
width=512,
image_format=MimeType.TIFF_d32f,
instance_id=INSTANCE_ID)
I try change time to (YYYY-MM-DD/YYYY-MM-DD) or YYYY-MM-DD and the period of interest is always one day. My BBOX is: -50.0587174799318, -18.0326097521582, -50.0398848154049, -18.0147805189594] and day is 2019-12-24
In Sentinel Hub Playground, is showing full image:
Regards,