I have created a raster in ArcGIS 10 with a large number of holes (NoData) in it. I want to fill the holes using something like the the following:
rOut = arcpy.sa.Con(arcpy.sa.IsNull(rGround),
arcpy.sa.FocalStatistics(rGround, arcpy.sa.NbrCircle(FillRadius,"CELL"), "MEAN"),
rGround)
It is desireable to fill the holes by averaging across a circle with a relatively small radius. But a small radius leaves larger holes unfilled, so I need to iterate this operation. To do that I would like to be able to get the number of NoData values in my raster, once it reaches zero I can stop filling.
regards, Dave