I have the following raster layer that has data gaps. I can use focal statistics to fill them:
Con(IsNull("raster"), FocalStatistics("raster", NbrRectangle(5,5, "CELL"), "MEAN"), "raster")However, I want to use a zonal layer and limit the neighbors based on that layer so that the function only...