File tree Expand file tree Collapse file tree 2 files changed +33
-0
lines changed
python/plugins/processing/algs/grass Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change 2
2
r.sum - Sums up the raster cell values.
3
3
Raster (r.*)
4
4
ParameterRaster|rast|Name of incidence or density file|False
5
+ OutputHTML|html|Cells sum
Original file line number Diff line number Diff line change
1
+ # -*- coding: utf-8 -*-
2
+
3
+ """
4
+ ***************************************************************************
5
+ r_sum.py
6
+ ---------------------
7
+ Date : December 2012
8
+ Copyright : (C) 2012 by Victor Olaya
9
+ Email : volayaf at gmail dot com
10
+ ***************************************************************************
11
+ * *
12
+ * This program is free software; you can redistribute it and/or modify *
13
+ * it under the terms of the GNU General Public License as published by *
14
+ * the Free Software Foundation; either version 2 of the License, or *
15
+ * (at your option) any later version. *
16
+ * *
17
+ ***************************************************************************
18
+ """
19
+
20
+ __author__ = 'Victor Olaya'
21
+ __date__ = 'December 2012'
22
+ __copyright__ = '(C) 2012, Victor Olaya'
23
+
24
+ # This will get replaced with a git SHA1 when you do a git archive
25
+
26
+ __revision__ = '$Format:%H$'
27
+
28
+ import HtmlReportPostProcessor
29
+
30
+
31
+ def postProcessResults (alg ):
32
+ HtmlReportPostProcessor .postProcessResults (alg )
You can’t perform that action at this time.
0 commit comments