Saving a raster layer
Raster layers can be exported to a different file. The export process can be used to crop the layer or perform resampling, creating a modified layer. This recipe shows you how to do this.
Getting ready
Open the elev_lid792_1m
layer in your QGIS project.
How to do it…
- Right-click on the name of the raster layer in the QGIS table of contents and select the Save as... menu. You will see the following window:
- In the Resolution fields, replace both of them with a value of
2
. The original resolution (the size of the cell) is1
, as you saw in a previous recipe. - Enter an output file path in the Save as field.
- Click on OK. The layer will be saved with a coarser resolution than the original one.
How it works…
The GDAL library is used to save the file. Not all formats supported for input are also supported for output, but the most common ones are supported for both operations.
There's more…
The layer can be exported with a reduced extent. In the QGIS canvas, zoom to a small part of the raster layer. Then open the Save as dialog. In the Extent section, click on the Map view extent button. The bounding coordinates of the current map view will be placed in the four coordinate fields.
Enter a file path to save the file to and click on OK. A layer with a reduced extent covering only the region shown in the map view will be exported.