I have a polygon shapefile that defines a very large ROI. In order to cover this ROI, I need to create a mosaic of rasters (Sentinel-1 images). The mosaic needs to be made with minimum number of rasters and should cover the ROI completely.
If I do a search for raster data based only on ROI, it gives multiple rasters that satisfy the ROI coverage but would lead to redundant data. It means that ROI that can be covered by a mosaic made of 3 images is covered by a mosaic made of 15 images.
The ROI is of continental scale and thus mosaic will be made from more than 1 raster.
I want to determine a workflow by which I can create a mosaic with minimum number of Sentinel-1 images that can overlap the ROI with minimum redundancy.
I think to progress in this scenario, I would do the following:
- Use the rasters with least overlap amongst themselves, but cover ROI shapefile. This would create a mosaic with minimum number of raster tiles.
Any suggestions in python, qgis, arcmap?