Question:

Consider the three input raster images given below. A geospatial analyst decided to use the overlay operation to generate a new raster showing the average values. The values of the cells P, Q, and R in the output raster are:
Input raster
 

523
122
311

132
475
111

341
432
211


Output raster

 

PQR
---
---

Show Hint

In raster overlay operations involving arithmetic like averaging, apply the function cell-by-cell across the input rasters. Double-check each individual cell position across all rasters to avoid errors in indexing.
Updated On: Apr 17, 2025
  • \( P = 3, Q = 3, R = 2 \)
  • \( P = 4, Q = 4, R = 3 \)
  • \( P = 3, Q = 3, R = 3 \)
  • \( P = 4, Q = 4, R = 2 \)
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is A

Solution and Explanation

To compute the value at each cell in the output raster using the average overlay operation, we take the corresponding cell values from each of the three input rasters and compute their average. Let us compute: 
- \( P \): Top-left cell of the raster. \[ P = \frac{5 + 1 + 3}{3} = \frac{9}{3} = 3 \] - \( Q \): Top-middle cell of the raster. \[ Q = \frac{2 + 3 + 4}{3} = \frac{9}{3} = 3 \] - \( R \): Top-right cell of the raster. \[ R = \frac{3 + 2 + 1}{3} = \frac{6}{3} = 2 \] Hence, the output values are: \( P = 3, Q = 3, R = 2 \)

Was this answer helpful?
0
0

Questions Asked in GATE GE exam

View More Questions