Hi!
I’m migrating some code to Processing API and I wonder what’s the best way to use data_filter
in a download request before downloading data.
What I have now:
- Create a WCSRequest
my_wcs_request.get_dates()
- Filter the images/dates I want to download from the list
- Download just the images I need with:
my_wcs_request.save_data(data_filter=myfilter)
If I use SentinelHubRequests
& SentinelHubDownloadClient
now, what’s the best way to apply the filter before downloading?
Do I need to make a previous WCSRequest just for using the get_dates
parameter and then apply the data_filter
in the SentinelHubRequest.get_data(data_filter=...)
?
Thanks in advance!