I have 10 raster layers and I using them for a site selection model. I created an expression in map algebra and hit ok (no errors received) a resultant raster was created, but will not project on a map
File, map document properties... is Add results to display toggled on? what about results are temporary by default?
Did you save the result to disk and try to load it manually?
Dan,
It looks like one of rasters only had 100 or cells and when included in the map algebra equation the results some how do not show up on the map. The other 9 raster layers when included in the map algebra equation produce a resultant master I can see on a map. Id like all cells to show up even if no data. Not sure how to do that. Do you?
what symbology is used? and have you just tried to assign a color to nodata.
And if seeing it is important you can always use IsNull to produce a boolean map showing the areas that are nodata, logically reversing the map
I'd like all cells to show up even if no data.
You can convert NoData to a value (in this example, 99) using Con and IsNull in the Raster Calculator:'
Con(IsNull("result_raster"), 99, "result_raster")