In ArcGIS 9.3, I have a raster file that I would like to "mask" with polygons, giving a single value to all the raster cells that overlap the polygons. How can I do this? Here's a screen shot, where the black polygons are my polygon layer, and the rest is raster-based. Thank you.
|
|
|||
|
|
|
You can use a conditional statement. The issue with previous recommendations is that when you rasterize your polygons (which is necessary) the background, that does not contain polygons, will be NoData resulting in corresponding areas in the output also being NoData. You will need to set your analysis extent to your original raster and then set a background value (i.e., 0) to the rasterized polygon raster using SetNull. Once you have done this a conditional statement in the raster calculator will look something like this. Con("praster" > 0, "praster", "OrgRaster") "praster" is your rasterized ploygon feature class, with a background value of 0, and "OrgRaster" is the raster you wish to modify. This statement is saying that if praster is greater than 0 then assign values from praster else assign values from OrgRaster. |
|||||
|
|
I think you can rasterize (ArcToolbox > Conversion Tools > To Raster) your polygons, and then merge the two rasters. Try Spatial Analyst Tools > Math > Logical > Over. |
|||
|
|
you could convert the value raster to polygon then spatially join back to the zone polygon then convert the zone polygon to raster, keeping the field from the spatial join then i think you should mosaic them together, keeping the 'top' raster, ie the zone raster values (rather than sum/min/max/median)... know what i mean? -mb |
|||
|
|
