[GRASS-SVN] r65862 - grass/trunk/scripts/v.db.join

svn_grass at osgeo.org svn_grass at osgeo.org
Sat Aug 8 07:37:45 PDT 2015


Author: neteler
Date: 2015-08-08 07:37:45 -0700 (Sat, 08 Aug 2015)
New Revision: 65862

Modified:
   grass/trunk/scripts/v.db.join/v.db.join.html
Log:
v.db.join manual: NC example added for geology map

Modified: grass/trunk/scripts/v.db.join/v.db.join.html
===================================================================
--- grass/trunk/scripts/v.db.join/v.db.join.html	2015-08-08 14:16:25 UTC (rev 65861)
+++ grass/trunk/scripts/v.db.join/v.db.join.html	2015-08-08 14:37:45 UTC (rev 65862)
@@ -12,8 +12,43 @@
 imported with <em>db.in.ogr</em>.
 <p>The vector map-database connection(s) can be verified with <em>v.db.connect</em>.
 
-<h2>EXAMPLE</h2>
+<h2>EXAMPLES</h2>
 
+Exercise to join North Carolina geological classes from a CSV table to
+the "geology" map of the North Carolina sample dataset (requires download
+of legend CSV file <a href="http://www.grassbook.org/wp-content/uploads/ncexternal/nc_geology.csv">nc_geology.csv</a>
+from <a href="http://www.grassbook.org/wp-content/uploads/ncexternal/index.html">External data for NC sample dataset</a>):
+
+<div class="code"><pre>
+# check original map attributes
+v.db.select geology column=GEO_NAME,SHAPE_area
+
+# import of CSV table
+db.in.ogr input=nc_geology.csv output=nc_geology
+
+# work on copy of geology map in current mapset
+g.copy vector=geology,mygeology
+
+# check column names of vector map attributes
+v.info -c mygeology
+
+# check column names of legend table
+db.describe -c nc_geology
+
+# join table using key columns (map: "GEO_NAME"; table: "geol_id")
+v.db.join map=mygeology column=GEO_NAME other_table=nc_geology other_column=geol_id
+
+# verify result (here abbreviated)
+v.db.select mygeology | head -3
+cat|onemap_pro|PERIMETER|GEOL250_|GEOL250_ID|GEO_NAME|SHAPE_area|SHAPE_len|geol_id|longname|comment
+1|963738.75|4083.97998|2|1|Zml|963738.608571|4083.979839|Zml|Metagraywacke|Interlayered with metaconglomerate, ...
+2|22189124|26628.261719|3|2|Zmf|22189123.2296|26628.261112|Zmf|Metafelsite|Light-colored porphyritic extrusive rock
+...
+</pre></div>
+
+
+<h3>Soil map table join</h3>
+
 Joining the soil type explanations from table <em>soils_legend</em>
 into the Spearfish soils map (<a href="http://www.grassbook.org/examples_menu.php">download legend)</a>:
 



More information about the grass-commit mailing list