Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions scripts/r.blend/r.blend.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,11 @@ def main():

gscript.message(_("Calculating the three component maps..."))

template = string.Template("$$output.$ch = "
"if(isnull($$first), $ch#$$second, "
"if(isnull($$second), $ch#$$first, "
"$$frac1 * $ch#$$first + "
"$$frac2 * $ch#$$second))")
template = string.Template('$$output.$ch = '
'if(isnull("$$first"), $ch#"$$second", '
'if(isnull("$$second"), $ch#"$$first", '
'$$frac1 * $ch#"$$first" + '
'$$frac2 * $ch#"$$second"))')
cmd = [template.substitute(ch=ch) for ch in ['r', 'g', 'b']]
cmd = ';'.join(cmd)

Expand Down
6 changes: 3 additions & 3 deletions scripts/r.grow/r.grow.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,12 @@ def main():

if new == '' and shrink == False:
temp_val = "r.grow.tmp.%s.val" % tmp
new = temp_val
new = '"%s"' % temp_val
else:
temp_val = None

if old == '':
old = input
old = '"%s"' % input

if not mapunits:
kv = grass.region()
Expand Down Expand Up @@ -135,7 +135,7 @@ def main():
grass.fatal(_("Growing failed. Removing temporary maps."))

grass.mapcalc(
"$output = if(!isnull($input),$old,if($dist < $radius,$new,null()))",
'$output = if(!isnull("$input"),$old,if($dist < $radius,$new,null()))',
output=output, input=input, radius=radius,
old=old, new=new, dist=temp_dist)
else:
Expand Down
62 changes: 62 additions & 0 deletions scripts/r.grow/testsuite/test_r_grow_quoting.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
"""
Created on Mon 17 Feb 2020 02:27:26 PM UTC

@author: Markus Neteler, Maris Nartiss upon https://github.com/OSGeo/grass/pull/277
"""

import os
from grass.gunittest.case import TestCase
from grass.gunittest.main import test
from grass.gunittest.gmodules import SimpleModule
from grass.script.core import run_command
from grass.gunittest.utils import silent_rmtree


class TestRGrow(TestCase):
"""Test r.grow script"""

map1 = 'elevation'
temp1 = 'grown'
mapsets_to_remove = []
# mapset with a name is also a valid mathematical expression
mapset_name = "1234-56-78"
gisenv = SimpleModule('g.gisenv', get='MAPSET')
TestCase.runModule(gisenv, expecting_stdout=True)
old_mapset = gisenv.outputs.stdout.strip()

@classmethod
def setUpClass(cls):
"""Create maps in a small region."""
# create a mapset with a name is also a valid mathematical expression
cls.runModule("g.mapset", flags="c", mapset=cls.mapset_name)
cls.mapsets_to_remove.append(cls.mapset_name)
run_command('g.copy', raster=cls.map1 + '@PERMANENT,' + cls.map1)
cls.runModule('g.region', raster=cls.map1, flags='p')

@classmethod
def tearDownClass(cls):
"""Remove temporary data"""
gisenv = SimpleModule('g.gisenv', get='GISDBASE')
cls.runModule(gisenv, expecting_stdout=True)
gisdbase = gisenv.outputs.stdout.strip()
gisenv = SimpleModule('g.gisenv', get='LOCATION_NAME')
cls.runModule(gisenv, expecting_stdout=True)
location = gisenv.outputs.stdout.strip()
cls.runModule('g.remove', flags='f', type='raster',
name=(cls.temp1, ))
cls.runModule("g.mapset", mapset=cls.old_mapset)
for mapset_name in cls.mapsets_to_remove:
mapset_path = os.path.join(gisdbase, location, mapset_name)
silent_rmtree(mapset_path)

def test_grow(self):
"""grows test with special mapset name"""

# should not lead to syntax error, unexpected INTEGER, expecting VARNAME or NAME
module = SimpleModule('r.grow', input=self.map1 + '@' + self.mapset_name,
output=self.temp1)
self.assertModule(module)


if __name__ == '__main__':
test()