Hi!
I want to try to create a script where I can request an image (with given bounding boxes and selected date) but using Pleiades, as follows.
def get_true_color_request(time_interval):
return SentinelHubRequest(
data_folder= 'data' + "/" + year,
evalscript=script_Medellin,
input_data=[
SentinelHubRequest.input_data(
data_collection=DataCollection.PLEIADES,
time_interval=('2015-11-1', '2015-11-20'),
mosaicking_order='leastCC'
)
],
responses=[
SentinelHubRequest.output_response('default', MimeType.TIFF)
],
bbox=bbox,
size=bbox_size,
config=config
)
The problem is that Pleiades is not on the DataCollection so I am not sure if there is an alternative way to do this. I would appreciate if someone might have an idea of how to do it, thank you in advance!