Hi, am using the python-api to download time series data for a plot as shown in the process_api tutorial notebook:
def get_true_color_request(time_interval):
return SentinelHubRequest(
evalscript=evalscript_true_color,
input_data=[
SentinelHubRequest.input_data(
data_collection=DataCollection.SENTINEL2_L1C,
time_interval=time_interval,
mosaicking_order='leastCC'
)
],
responses=[
SentinelHubRequest.output_response('default', MimeType.PNG)
],
bbox=betsiboka_bbox,
size=betsiboka_size,
config=config
)
list_of_requests = [get_true_color_request(slot) for slot in slots]
list_of_requests = [request.download_list[0] for request in list_of_requests]
# download data with multiple threads
data = SentinelHubDownloadClient(config=config).download(list_of_requests, max_threads=5)
Here we pick the image with the least cloud cover in the given time period which is one month. Would also like to download meta data associated with this image like data it was taken, cloud cover pct, etc along with this. Have seen some mention of using FIS to get such statistical data however was not sucessful in doing so. Can someone share a small snippet that we could add here to get this info? Much appreciated! Thanks
