I wrote a Python script that uses SentinelHubStatisticalDownloadClient (using sentinelhub version 3.5.0), in the same way as described in this tutorial.
When I run it I get SHRateLimitWarning: Download rate limit hit warnings.warn("Download rate limit hit", category=SHRateLimitWarning) and the script seems to never finish execution.
So I changed the script in this way, thinking that I could slow down the script and avoid multiple parallel calls to the API: client = SentinelHubStatisticalDownloadClient(config=config, n_interval_retries=3, max_retry_threads=1)client.rate_limit = SentinelHubRateLimit(num_processes=client.config.number_of_download_processes, minimum_wait_time=0.5)index_stats = client.download(download_requests)
But I still get the same behaviour.
Any help greatly appreciated.
