Hi,<div><br></div><div>I create each viewshed raster map for every observer location with flag (b) which denotes 0-non-visible and 1-visible values.</div><div>Then i add all viewshed rasters to get integrated raster. So my integrated raster contains values >=1. In the raster, all values</div>
<div>> 1 represents visible area. Therefore, i need to reclassify the image by setting all values > 1 to 1. If i use the following Python</div><div>code to have output Name: MASK, is it ok?  (out = integraed_raster)</div>
<div><br></div><div><div>grass.mapcalc("MASK=if(($ReclassiName > 1),1,1)",</div><div>                     ReclassiName = out)</div></div>