[GRASS-SVN] r65973 - grass/trunk/raster/r.external

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Aug 20 04:05:16 PDT 2015


Author: neteler
Date: 2015-08-20 04:05:16 -0700 (Thu, 20 Aug 2015)
New Revision: 65973

Modified:
   grass/trunk/raster/r.external/r.external.html
Log:
r.external manual: added processing workflow example

Modified: grass/trunk/raster/r.external/r.external.html
===================================================================
--- grass/trunk/raster/r.external/r.external.html	2015-08-20 10:55:47 UTC (rev 65972)
+++ grass/trunk/raster/r.external/r.external.html	2015-08-20 11:05:16 UTC (rev 65973)
@@ -34,6 +34,30 @@
 r.composite r=ortho.1 g=ortho.2 b=ortho.3 output=ortho.rgb
 </pre></div>
 
+<h3>Processing workflow without data import and export</h3>
+
+External raster maps to be processed can be directly linked using <em>r.external</em>;
+likewise, results can be written out to standard raster formats with
+<em>r.external.out</em> (GDAL supported formats):
+
+<div class="code"><pre>
+# register GeoTIFF file to be used in current mapset:
+r.external terra_lst1km20030314.LST_Day.tif out=modis_celsius
+ 
+# define output directory for files resulting from GRASS calculation:
+r.external.out directory=$HOME/gisoutput/ format="GTiff"
+ 
+# perform GRASS calculation (here: extract pixels > 20 deg C)
+# this stores the output map directly as GeoTIFF:
+r.mapcalc "warm.tif = if(modis_celsius > 20.0, modis_celsius, null() )"
+ 
+# cease GDAL output connection and turn back to write GRASS raster files:
+r.external.out -r
+ 
+# now use the result elsewhere
+gdalinfo $HOME/gisoutput/warm.tif
+</pre></div>
+
 <h2>REFERENCES</h2>
 
 GDAL Pages: <a href="http://www.gdal.org">http://www.gdal.org/</a><br>



More information about the grass-commit mailing list