[GRASS-dev] strange mapcalc result
Markus Neteler
neteler at osgeo.org
Sun Jul 17 12:47:17 EDT 2011
On Mon, Jul 11, 2011 at 7:36 PM, Michael Barton <Michael.Barton at asu.edu> wrote:
> This is from GRASS 7 compiled from svn trunk yesterday.
>
> I'm simply trying to assign null values in an SRTM using r.mapcalc. I do the following statement...
>
> r.mapcalc expression='SRTM_ffB03_p199r033=if(SRTM_ffB03_p199r033==-32768,null(),SRTM_ffB03_p199r033)' --o
>
>
> The entire map turns to null.
>
> Any idea what I'm doing wrong?
Try this:
r.mapcalc expression='SRTM_ffB03_p199r033 =
if(SRTM_ffB03_p199r033==-32768,null(),SRTM_ffB03_p199r033)' --o
(note the white spaces around "=", which is required in GRASS7 - a bit
unfortunate...)
Markus
More information about the grass-dev
mailing list