[GRASS-SVN] r60352 - grass/trunk/scripts/d.vect.thematic

svn_grass at osgeo.org svn_grass at osgeo.org
Mon May 19 13:49:48 PDT 2014


Author: neteler
Date: 2014-05-19 13:49:48 -0700 (Mon, 19 May 2014)
New Revision: 60352

Modified:
   grass/trunk/scripts/d.vect.thematic/d.vect.thematic.html
Log:
d.vect.thematic manual: update example to NC; script still broken

Modified: grass/trunk/scripts/d.vect.thematic/d.vect.thematic.html
===================================================================
--- grass/trunk/scripts/d.vect.thematic/d.vect.thematic.html	2014-05-19 20:49:46 UTC (rev 60351)
+++ grass/trunk/scripts/d.vect.thematic/d.vect.thematic.html	2014-05-19 20:49:48 UTC (rev 60352)
@@ -52,21 +52,24 @@
                 themetype=graduated_points maxsize=15
 </pre></div>
 
-<p>Spearfish: differences between 'elevation.10m' and 'elevation.dem':
+<p>North Carolina: differences between 'elevation' (10m) and 'elev_state_500m':
 
 <div class="code"><pre>
 # random sampling of elevation points:
-g.region rast=elevation.10m -p
+g.region rast=elevation -p
 v.random random n=200
 v.db.addtable random col="el10 double precision"
 # transfer elevations to attribute table of random points map:
-v.what.rast random rast=elevation.10m col=el10
+v.what.rast random rast=elevation col=el10
 v.db.select random
 
 # comparative sampling of second map, incl. differences:
-v.sample in=random col=el10 rast=elevation.dem out=elev_sample
+v.sample in=random col=el10 rast=elev_state_500m out=elev_sample
 v.db.select elev_sample
 
+# univariate statistics:
+v.univar -e elev_sample col=diff type=point
+
 # thematic map:
 d.mon wx0
 d.vect.thematic -l elev_sample column=diff type=point



More information about the grass-commit mailing list