Преглед изворни кода

New test

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@57526 15284696-431f-4ddb-bdfa-cd5b030d7da7
Soeren Gebbert пре 11 година
родитељ
комит
4adb6a0ce6
1 измењених фајлова са 9 додато и 0 уклоњено
  1. 9 0
      lib/python/pygrass/modules/interface/module.py

+ 9 - 0
lib/python/pygrass/modules/interface/module.py

@@ -36,6 +36,15 @@ Created on Tue Apr  2 18:41:27 2013
 >>> new_neighbors2.get_bash()
 'r.neighbors input=mapD method=average size=3 quantile=0.5 output=mapB'
 
+>>> neighbors = pymod.Module("r.neighbors")
+>>> neighbors.get_bash()
+'r.neighbors method=average size=3 quantile=0.5'
+
+>>> new_neighbors3 = copy.deepcopy(neighbors)
+>>> new_neighbors3(input="mapA", size=3, output="mapB", run_=False)
+>>> new_neighbors3.get_bash()
+'r.neighbors input=mapA method=average size=3 quantile=0.5 output=mapB'
+
 @endcode
 """