diff --git a/vector/v.surf.rst/v.surf.rst.html b/vector/v.surf.rst/v.surf.rst.html index 364952e70ca..48d69711a0b 100644 --- a/vector/v.surf.rst/v.surf.rst.html +++ b/vector/v.surf.rst/v.surf.rst.html @@ -318,7 +318,7 @@

Usage of the where parameter

 g.region raster=elevation -p
 # random elevation extraction of 500 samplings
-r.random elevation vector_output=elevrand n=500
+r.random -s elevation vector=elevrand n=500
 v.info -c elevrand
 v.db.select elevrand
 
@@ -329,11 +329,14 @@ 

Usage of the where parameter

d.rast elev_full d.vect elevrand -# interpolation based on subset of points (only those over 1300m/asl) -v.surf.rst elevrand zcol=value elevation=elev_partial where="value > 1300" +# compute univariate statistics with 1st/3rd quartiles +v.db.univar -e elevrand column=value + +# interpolation based on subset of points (only those over 3rd quartile) +v.surf.rst elevrand zcol=value elevation=elev_partial where="value > 123.7" r.colors elev_partial raster=elevation d.rast elev_partial -d.vect elevrand where="value > 1300" +d.vect elevrand where="value > 123.7"

REFERENCES