Explorar el Código

sync'ed with devel_grass6

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@31458 15284696-431f-4ddb-bdfa-cd5b030d7da7
Markus Neteler hace 17 años
padre
commit
785191f547

+ 2 - 0
doc/howto_release.txt

@@ -171,6 +171,7 @@ Contents
    redazionenews@mondogis.net
    mfeilner@linuxnewmedia.de
    info@harzer.de
+   info@j-geoinfo.net
 
  Web:
    http://slashgeo.org/submit.pl
@@ -190,6 +191,7 @@ Contents
    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.
 

+ 5 - 1
lib/proj/projlib.dox

@@ -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

+ 17 - 1
vector/v.db.select/description.html

@@ -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 @@ cat|label
 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>

+ 2 - 2
vector/v.db.select/main.c

@@ -49,9 +49,9 @@ int main (int argc, char **argv)
     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");