[GRASS-SVN] r68461 - grass/branches/releasebranch_7_0/raster/r.in.gdal
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed May 18 02:23:39 PDT 2016
Author: neteler
Date: 2016-05-18 02:23:39 -0700 (Wed, 18 May 2016)
New Revision: 68461
Modified:
grass/branches/releasebranch_7_0/raster/r.in.gdal/r.in.gdal.html
Log:
r.in.gdal manual: add Worldclim import trick
Modified: grass/branches/releasebranch_7_0/raster/r.in.gdal/r.in.gdal.html
===================================================================
--- grass/branches/releasebranch_7_0/raster/r.in.gdal/r.in.gdal.html 2016-05-18 09:23:10 UTC (rev 68460)
+++ grass/branches/releasebranch_7_0/raster/r.in.gdal/r.in.gdal.html 2016-05-18 09:23:39 UTC (rev 68461)
@@ -287,13 +287,24 @@
Finally, e.g. the 'terrain' color table can be assigned to the imported map with <em>r.colors</em>.
See also their <a href="http://www.ngdc.noaa.gov/mgg/dem/demportal.html">DEM portal</a>.
-<h3>Worldclim.org</h3>
-To import <a href="http://www.worldclim.org">Worldclim</a> data, the following
+<h3>Worldclim.org data</h3>
+
+To import the BIL data from <a href="http://www.worldclim.org">Worldclim</a>, the following
line has to be added to each .hdr file:
<div class="code"><pre>
PIXELTYPE SIGNEDINT
</pre></div>
+<p>
+To import the ESRI Grd data from <a href="http://www.worldclim.org">Worldclim</a>, the
+broken spatial extent (exceeding the boundaries) needs to be fixed prior to import:
+
+<div class="code"><pre>
+# example: tmean dataset
+gdal_translate -a_ullr -180 90 180 -60 tmean_1 tmean_1_fixed.tif
+r.in.gdal input=tmean_1_fixed.tif output=tmean_1
+</pre></div>
+
<h3>HDF</h3>
The import of HDF bands requires the specification of the individual bands
More information about the grass-commit
mailing list