1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
#!/bin/sh
#
############################################################################
#
# MODULE: r.mapcalc_wrapper
# AUTHOR(S): Martin Landa <landa.martin gmail.com>
# PURPOSE: Simulate standard g.parser interface for GUI
# COPYRIGHT: (C) 2011 by The GRASS Development Team
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
############################################################################
#%module
#% description: Raster map calculator.
#% keywords: raster, algebra
#%end
#%option
#% key: expression
#% type: string
#% required: no
#% multiple: no
#% description: Expression to evaluate
#% guisection: Expression
#%end
#%option
#% key: file
#% type: string
#% required: no
#% multiple: no
#% key_desc: name
#% description: File containing expression(s) to evaluate
#% gisprompt: old_file,file,input
#% guisection: Expression
#%end
if [ -z "$GISBASE" ] ; then
echo "You must be in GRASS GIS to run this program." 1>&2
exit 1
fi
if [ "$1" != "@ARGS_PARSED@" ] ; then
exec g.parser "$0" "$@"
fi
if [ -n "$GIS_OPT_FILE" ] ; then
exec r.mapcalc < "$GIS_OPT_FILE"
else
if [ -n "$GIS_OPT_EXPRESSION" ] ; then
exec r.mapcalc "$GIS_OPT_EXPRESSION"
else
exec g.message -e message="Either <expression> or <file> option must be given"
exit 1
fi
fi
exit 0
|