[GRASS-SVN] r62447 - grass-addons/grass7/vector/v.nnstat
svn_grass at osgeo.org
svn_grass at osgeo.org
Tue Oct 28 09:34:01 PDT 2014
Author: martinl
Date: 2014-10-28 09:34:01 -0700 (Tue, 28 Oct 2014)
New Revision: 62447
Modified:
grass-addons/grass7/vector/v.nnstat/main.cpp
grass-addons/grass7/vector/v.nnstat/v.nnstat.html
Log:
v.nnstat: add empty template for manual page
Modified: grass-addons/grass7/vector/v.nnstat/main.cpp
===================================================================
--- grass-addons/grass7/vector/v.nnstat/main.cpp 2014-10-28 16:26:15 UTC (rev 62446)
+++ grass-addons/grass7/vector/v.nnstat/main.cpp 2014-10-28 16:34:01 UTC (rev 62447)
@@ -43,13 +43,12 @@
/* Module creation */
module = G_define_module();
- G_add_keyword(_("Vector"));
- G_add_keyword(_("Nearest Neighbour Analysis"));
+ G_add_keyword(_("vector"));
+ G_add_keyword(_("nearest neighbour analysis"));
module->description = _("Indicates clusters, separations or random distribution of point set in 2D or 3D space.");
/* Setting options */
opt.map = G_define_standard_option(G_OPT_V_INPUT); /* vector input layer */
- opt.map->label = _("Name of input vector map");
flg.d23 = G_define_flag(); /* to process 2D or 3D Nearest Neighbour Analysis */
flg.d23->key = '2';
@@ -57,7 +56,7 @@
_("Force 2D NNA even if input is 3D");
opt.A = G_define_option();
- opt.A->key = "A";
+ opt.A->key = "area";
opt.A->type = TYPE_DOUBLE;
opt.A->description = _("2D: Area. If not specified, area of Minimum Enclosing Rectangle will be used.\n3D: Volume. If not specified, volume of Minimum Enclosing Box will be used.");
opt.A->required = NO;
@@ -65,7 +64,7 @@
opt.field = G_define_standard_option(G_OPT_V_FIELD);
opt.zcol = G_define_standard_option(G_OPT_DB_COLUMN);
- opt.zcol->key = "zcol";
+ opt.zcol->key = "zcolumn";
opt.zcol->required = NO;
opt.zcol->guisection = _("Fields");
opt.zcol->description = _("Column with z coordinate (set for 2D vectors only)");
Modified: grass-addons/grass7/vector/v.nnstat/v.nnstat.html
===================================================================
--- grass-addons/grass7/vector/v.nnstat/v.nnstat.html 2014-10-28 16:26:15 UTC (rev 62446)
+++ grass-addons/grass7/vector/v.nnstat/v.nnstat.html 2014-10-28 16:34:01 UTC (rev 62447)
@@ -1 +1,23 @@
-TO DO
+<h2>DESCRIPTION</h2>
+
+TODO
+
+<h2>EXAMPLES</h2>
+
+TODO
+
+<h2>REQUIREMENTS</h2>
+
+<ul>
+ <li><b>LAPACK / BLAS</b> (libraries for numerical computing) for
+ GMATH library (GRASS Numerical Library)<br>
+ <a href="http://www.netlib.org/lapack">http://www.netlib.org/lapack</a> (usually available on Linux distros)
+ <li><a href="http://pointclouds.org">Point Cloud Library</a>
+</ul>
+
+<h2>AUTHOR</h2>
+
+Eva Stopkova
+
+<p>
+<i>Last changed: $Date$</i>
More information about the grass-commit
mailing list