|
On 29/05/2014 16:42, Mark Seibel wrote:
The way to do this in GRASS is with the isnull() function in r.mapcalc Here's an example from the man page: Example: The users wants the NULL-valued cells to be treated like zeros. To add maps A and B (where B contains NULLs) to get a map C the user can use a construction like:
C=A + if(isnull(B),0,B)
And,as Mark mentioned, be sure to set your region to cover both maps from the start
-- Micha Silver GIS Consulting 052-3665918 http://www.surfaces.co.il |
_______________________________________________ Qgis-user mailing list [email protected] http://lists.osgeo.org/mailman/listinfo/qgis-user
