· 9 years ago · Jan 29, 2017, 06:20 PM
1[veroandreo@192 grass7]$ svn status
2M imagery/i.superpixels.slic/main.c
3M imagery/i.wi/main.c
4M raster/r.edm.eval/r.edm.eval.html
5M raster/r.series.diversity/r.series.diversity.py
6M temporal/t.rast.out.xyz/t.rast.out.xyz.html
7[veroandreo@192 grass7]$ svn diff
8Index: imagery/i.superpixels.slic/main.c
9===================================================================
10--- imagery/i.superpixels.slic/main.c (revision 70451)
11+++ imagery/i.superpixels.slic/main.c (working copy)
12@@ -6,7 +6,7 @@
13 * Markus Metz
14 * based on the C++ SLIC implmenetation from:
15 * http://ivrl.epfl.ch/research/superpixels
16- * PURPOSE: Perform superpixel segmenation
17+ * PURPOSE: Perform superpixel segmentation
18 *
19 * This code performs superpixel segmentation as explained in the paper:
20 * "SLIC Superpixels", Radhakrishna Achanta, Appu Shaji,
21Index: imagery/i.wi/main.c
22===================================================================
23--- imagery/i.wi/main.c (revision 70451)
24+++ imagery/i.wi/main.c (working copy)
25@@ -66,7 +66,7 @@
26 G_add_keyword(_("index"));
27 G_add_keyword(_("biophysical"));
28 module->description =
29- _("Calculates different types of vegetation indices.");
30+ _("Calculates different types of water indices.");
31
32 /* Define the different options */
33
34Index: raster/r.edm.eval/r.edm.eval.html
35===================================================================
36--- raster/r.edm.eval/r.edm.eval.html (revision 70451)
37+++ raster/r.edm.eval/r.edm.eval.html (working copy)
38@@ -1,6 +1,6 @@
39 <h2>DESCRIPTION</h2>
40
41-<p><em>r.edm.eval</em> is an environmentalal distribution model evaluation script. This addon is a GRASS GIS wrapper for a R script. The function returns a number of evaluation statistics (on the command line and as text file with user defined name), including the AUC, maximum sum of specificity and sensitivity (spec. + sens), the maximum true skill statistic (TSS - which is just spec + sens - 1), and the the maximum kappa. For all three statistics, the corresponding probabilty threshold values are also given.
42+<p><em>r.edm.eval</em> is an environmental distribution model evaluation script. This addon is a GRASS GIS wrapper for a R script. The function returns a number of evaluation statistics (on the command line and as text file with user defined name), including the AUC, maximum sum of specificity and sensitivity (spec. + sens), the maximum true skill statistic (TSS - which is just spec + sens - 1), and the the maximum kappa. For all three statistics, the corresponding probabilty threshold values are also given.
43
44 <p>In addition, a csv file (with user-defined name) is created with the number of true and false positives (TP,FP), true and false negatives (TN,FN), the true and false positive rate (TPR,FPR), the true negative rate (TNR) and the three statistics mentioned above are given. The user can use this to create for example the receiver operating characteristic (ROC) curve and other evaluation statistics in her/his favorite software.
45
46Index: raster/r.series.diversity/r.series.diversity.py
47===================================================================
48--- raster/r.series.diversity/r.series.diversity.py (revision 70451)
49+++ raster/r.series.diversity/r.series.diversity.py (working copy)
50@@ -5,7 +5,7 @@
51 #
52 # MODULE: r.series.diversity
53 # AUTHOR(S): Paulo van Breugel <p.vanbreugel AT gmail.com>
54-# PURPOSE: Compute biodiversity indici over input layers
55+# PURPOSE: Compute biodiversity indices over input layers
56 #
57 # COPYRIGHT: (C) 2014 Paulo van Breugel
58 # http://ecodiv.org
59@@ -18,7 +18,7 @@
60 ########################################################################
61 #
62 #%Module
63-#% description: Compute diversity indici over input layers
64+#% description: Compute diversity indices over input layers
65 #% keyword: raster
66 #% keyword: diversity index
67 #% keyword: renyi entrophy
68Index: temporal/t.rast.out.xyz/t.rast.out.xyz.html
69===================================================================
70--- temporal/t.rast.out.xyz/t.rast.out.xyz.html (revision 70451)
71+++ temporal/t.rast.out.xyz/t.rast.out.xyz.html (working copy)
72@@ -5,17 +5,22 @@
73
74 <h2>NOTES</h2>
75
76-This module will by default not export x,y coordinates for raster cells
77+By default, this module does not export x,y coordinates for raster cells
78 containing a NULL value. This includes cells masked by a raster MASK.
79-Using the flag <b>-i</b> also these raster cells will be included in the
80-exported data.
81+However, using the flag <b>-i</b> also these raster cells will be included in
82+the exported data.
83
84-<em>t.rast.out.xyz</em> is simply a front-end to "<tt>r.out.xyz</tt>".
85+<em>t.rast.out.xyz</em> is simply a front-end for "<tt>r.out.xyz</tt>".
86
87 <h2>EXAMPLE</h2>
88
89 <div class="code"><pre>
90-t.rast.out.xyz input=mystrds output=/tmp/mystrds.csv
91+# export strds without NULL cells
92+t.rast.out.xyz strds=mystrds output=/tmp/mystrds.csv
93+
94+# export strds including NULL cells and for a certain time period
95+t.rast.out.xyz -i strds=mystrds output=/tmp/mystrds.csv \
96+ where="start_time > '2010-01-01 00:00:00'"
97 </pre></div>
98
99 <h2>SEE ALSO</h2>
100[veroandreo@192 grass7]$