Get intersection of 2 tif files

I have 2 tiff files which use the EPSG:32637 coordinate system. I want to clip their intersection region and save it separately as tiff files.
enter image description here
As a result, the output tiff files have the same upper_left and lower_right coordinates and the same size. Can you suggest ways to get the intersection and save them in separate tiff files??? I don't know how to do this.

Upvotes: 1

Views: 489

Answers (1)

fsg
fsg

Reputation: 126

  1. Get the boundarys of the tifs as a Polygon with this Worfklow.
  2. Get intersection with the Tool Intersection (native:intersection)
  3. Clip the tifs gdal:cliprasterbymasklayer

All the tools you need you'll find in the QGIS processing-Toolbox!

For future GIS-Questions you should ask here.

Upvotes: 0

Related Questions