[GIS] Weighted-overlay on raster calculator

qgisrasterraster-calculatorweighted-overlay

I have got two cost surface rasters, one for land-use and the other for slope values. For my analysis, I've been told to make a "weighted-overlay", however I don't have the SAGA plugin available on my QGIS for some reason, and I wanted to know if by using the raster calculator I can achieve the same result.

Example: ("land-use"*0.8)+("slope"*0.2)

Would this be considered a weighted-overlay?

Best Answer

If you have only two parameters and you know the influence of land use is more than the influence of slope and you can justify that in your analysis, then the equation is correct.

However, the only problem is that you cannot sum land use and slope directly even after assigning them weights because they have different units.

To apply weighted overlay analysis you need to standardize both land use and slope into a common scale, which means you should reclassify the pixel values of the two parameters using Reclassify Grid Values tool under SAGA tools in QGIS. There are many literatures about that in the internet you need to read about it. After reclassifying the old pixel values of both slope and land use parameters into new standard values, you can apply the equation in the raster calculator.

Related Question