Hello,
We found a notebook to be able to get processing unit estimates for a request. See the following link:
github.com
sentinel-hub/sentinelhub-py/blob/master/examples/reading_pu_from_headers.ipynb
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Retrieving information about processing units of requests\n",
"\n",
"In this example notebook we show how to retrieve **DownloadResponse** and **download headers** at the same time, which can be used to approximate the use of processing units.\n",
"\n",
"The tutorial assumes knowledge of [Sentinel Hub Process API](https://github.com/sentinel-hub/sentinelhub-py/blob/master/examples/process_request.ipynb) and [Sentinel Hub Statistical API](https://github.com/sentinel-hub/sentinelhub-py/blob/master/examples/statistical_request.ipynb) examples.\n",
"\n",
"For more information about the service please check the [official service documentation](https://docs.sentinel-hub.com/api/latest/api/process/)."
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
This file has been truncated. show original
We want to be able to get the processing units in a similar manner, but we are using the Sentinel Hub Statistical Download Client. I looked at the documentation for this, and it did not appear that we could use the same method to get the estimated Processing Units (sentinelhub.download.sentinelhub_statistical_client — Sentinel Hub 3.8.0 documentation).
Do you have a recommendation for getting the processing units while using the Statistical Download Client?