Skip to content

Commit 99f0dac

Browse files
committed
Merge pull request #1595 from giohappy/master
[Processing] HTML output for r.sum
2 parents 1c03067 + 04becdc commit 99f0dac

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

python/plugins/processing/algs/grass/description/r.sum.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ r.sum
22
r.sum - Sums up the raster cell values.
33
Raster (r.*)
44
ParameterRaster|rast|Name of incidence or density file|False
5+
OutputHTML|html|Cells sum
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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)

0 commit comments

Comments
 (0)