[GRASS-SVN] r31458 - in grass/trunk: doc lib/proj vector/v.db.select
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed May 21 04:39:23 EDT 2008
Author: neteler
Date: 2008-05-21 04:39:23 -0400 (Wed, 21 May 2008)
New Revision: 31458
Modified:
grass/trunk/doc/howto_release.txt
grass/trunk/lib/proj/projlib.dox
grass/trunk/vector/v.db.select/description.html
grass/trunk/vector/v.db.select/main.c
Log:
sync'ed with devel_grass6
Modified: grass/trunk/doc/howto_release.txt
===================================================================
--- grass/trunk/doc/howto_release.txt 2008-05-21 08:03:07 UTC (rev 31457)
+++ grass/trunk/doc/howto_release.txt 2008-05-21 08:39:23 UTC (rev 31458)
@@ -171,6 +171,7 @@
redazionenews at mondogis.net
mfeilner at linuxnewmedia.de
info at harzer.de
+ info at j-geoinfo.net
Web:
http://slashgeo.org/submit.pl
@@ -190,6 +191,7 @@
http://www.foss4g.org/FOSS4G/modules.php?name=Submit_News
http://groups.google.com/group/Remote-Sensing-GIS-for-a-New-World
http://groups.google.com/group/comp.infosystems.gis
+ http://www.heise.de/software/download/edit_7105 (update, MN)
... anywhere else? Please add here.
Modified: grass/trunk/lib/proj/projlib.dox
===================================================================
--- grass/trunk/lib/proj/projlib.dox 2008-05-21 08:03:07 UTC (rev 31457)
+++ grass/trunk/lib/proj/projlib.dox 2008-05-21 08:39:23 UTC (rev 31458)
@@ -1,8 +1,12 @@
-/*! \mainpage projlib GRASS and the PROJ4 projection library
+/*! \page projlib GRASS and the PROJ4 projection library
<!-- doxygenized from "GRASS 5 Programmer's Manual"
by M. Neteler 11/2005
-->
+by GRASS Development Team
+
+http://grass.osgeo.org
+
\section projintro GRASS and the PROJ4 projection library
GRASS utilizes the PROJ4 library originally developed by Gerald
Modified: grass/trunk/vector/v.db.select/description.html
===================================================================
--- grass/trunk/vector/v.db.select/description.html 2008-05-21 08:03:07 UTC (rev 31457)
+++ grass/trunk/vector/v.db.select/description.html 2008-05-21 08:39:23 UTC (rev 31458)
@@ -1,9 +1,11 @@
<h2>DESCRIPTION</h2>
-<em>v.db.select</em> prints attributes of a vector map.
+<em>v.db.select</em> prints attributes of a vector map from one or several
+user selected attribute table columns.
<h2>EXAMPLE</h2>
+Select and show entire table:
<div class="code"><pre>
v.db.select roads
cat|label
@@ -15,6 +17,20 @@
5|unimproved road
</pre></div>
+<p>
+Select and show single column from table (multiple columns can be specified as comma separated list):
+<div class="code"><pre>
+v.db.select roads col=label
+label
+no data
+interstate
+primary highway, hard surface
+secondary highway, hard surface
+light-duty road, improved surface
+unimproved road
+</pre></div>
+
+
<h2>SEE ALSO</h2>
<em><a HREF="db.select.html">db.select</a></em>
Modified: grass/trunk/vector/v.db.select/main.c
===================================================================
--- grass/trunk/vector/v.db.select/main.c 2008-05-21 08:03:07 UTC (rev 31457)
+++ grass/trunk/vector/v.db.select/main.c 2008-05-21 08:39:23 UTC (rev 31458)
@@ -49,9 +49,9 @@
map_opt = G_define_standard_option(G_OPT_V_MAP);
field_opt = G_define_standard_option(G_OPT_V_FIELD) ;
- col_opt = G_define_standard_option(G_OPT_COLUMN);
+ col_opt = G_define_standard_option(G_OPT_COLUMNS);
- where_opt = G_define_standard_option(G_OPT_WHERE);
+ where_opt = G_define_standard_option(G_OPT_WHERE);
fs_opt = G_define_standard_option(G_OPT_F_SEP);
fs_opt->description = _("Output field separator");
More information about the grass-commit
mailing list