Hi everyone. I have a batch api request written in python. I currently do the following:
- Create a batch api request.
- Analyse the batch request above to get information about the tiles.
- Start the batch job to initiate processing.
This works fine. Now I want to do the following:
- Create a batch api request.
- Analyse the batch request to get info about the tiles.
- Using the tile ‘name’ property from the tile information provided after analysis, programmatically exclude tiles whose tile names already exist in my s3 bucket.
- Start batch job only for tiles that do not exist (I’m trying to avoid redownloading existing tiles from the past).
I have a problem with step 3 above. I haven’t come across a function in ‘sentinelhub’ python library for removing specific tiles (eg. by tile id) before starting a batch job.
Is this possible??
Thanks.