Hi everyone,
I’m trying to generate a request using SentinelHubRequest from the python package using the ‘upsampling’ option. However, I’m having trouble in finding documentation on how to do it.
If my request looks like that:
request = SentinelHubRequest(
evalscript=evalscript,
input_data=[
SentinelHubRequest.input_data(
data_source=DataSource.SENTINEL2_L2A,
time_interval=('2020-04-01', '2020-04-30'),
mosaicking_order='leastCC'
)
],
responses=[
SentinelHubRequest.output_response('default', MimeType.PNG)
],
bbox=bbox,
size=bbox_size,
config=config
)
how should I include the upsampling information? I would expect something like adding an option upsampling='bilinear', or something similar.
Thanks!
