Summary of Overlay Types when simplifying continuous data in layers
-
- Binary Layers
- overlay by multiplying two binary risk layers (“quality A” and “quality B”)
Quality B
low hazard
0Quality B
high hazard
1Quality A
low hazard
0low risk low risk Quality A
high hazard
1low risk high risk or adding them
Quality B
low hazard
0Quality B
high hazard
1Quality A
low hazard
0low risk moderate risk Quality A
high hazard
1moderate risk high risk Try these with a binary_slope and binary_elev
- Multiple Category Layers
- multiple boolean operators become very complex but can be done with a script
- overlay by adding or multiplying;
B: High
HazardB: Mod
HazardB: Low
HazardA: High
Hazardhigh riskmoderate risklow riskA: Mod
Hazardhigh risklow riskno riskA: Low
Hazardmoderate risklow riskno risk
- Binary Layers
But how would you “hand pick” various levels of risk as shown above, when the weighting is not symmetrical as shown? (in ArcGIS Pro, look at the “combine” tool).
- Index Layers
- use reclassify or map algebra to create indices
- overlay by adding or by multiplying has a different effect on the distribution of high and low results.
- Layer Weighting (can be combined with Overlay Types #1-3)
- weighting is applied to one layer (or more) when it is more important or has more influence on the outcome than others. This is an “expert opinion” rather than a GIS determinant. Here’s an example from a multi-criteria selection tutorial from Ujaval Gandhi’s great web site
Note: In this example, we are giving equal weight to both road and water proximity. In real-life scenario, you may have multiple criteria with different importance….For example, if proximity to roads is twice as importance as proximity away from water, instead of
(("roads_reclass@1" + "water_reclass@1")/2),
you can use the expression((2*"roads_reclass@1" + "water_reclass@1")/3).- use raster calculator to overlay the weighted layers
- In ArcGIS Pro, you can use weighted overlay tool
(Note that the input is complicated, because this tool does both the simplification/reclass step and the overlay with weighting step in a single toolbox).