Change Site AOI after first processing

I need to extend my site. There are already L2A products for the site, so I don’t want to delete the site and restart the whole process of downloading and atmosperic correction. I would rather like to change the AOI shapefile and restart the downloader, so that only the additional tiles are processed.

What would be the best way?

Regards
Oliver

To change a site’s footprint, you can update the geog column of the site’s site table entry. The footprint is stored as an EPSG:4326 MULTIPOLYGON feature.

update site
set geog = ST_GeogFromText('MULTIPOLYGON(...)')
where id = ...

If you are using the tile filtering feature, you should also update the filter lists in the site_tiles table.

The downloaders should pick the new site definition on the following run.