Currently, I am making SentinelHub Request as below
SentinelHubRequest(
evalscript=SentinelHubDataRepository._get_evalscript(bands),
input_data=[
SentinelHubRequest.input_data(
data_collection=data_collection,
time_interval=query_date,
maxcc=1,
mosaicking_order=“leastCC”,
)
],
responses=sSentinelHubRequest.output_response(band.value, MimeType.TIFF) for band in bands],
geometry=Geometry(field_boundary, crs=CRS.WGS84),
resolution=(resolution / math.cos(centroid.y * (math.pi / 180)), resolution),
config=self.__get_sh_client(client_id, client_secret).sh_config,
data_folder=data_folder)
and then I am doing
response = request_all_bands.get_data(save_data=True)
How to get processing units consumed in response?