Explorar el Código

r.relief, r.shade, d.shade: finish rename from d.shadedmap and r.shaded.relief (fixes https://trac.osgeo.org/grass/changeset/63305)

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@63379 15284696-431f-4ddb-bdfa-cd5b030d7da7
Vaclav Petras hace 10 años
padre
commit
ae41bf1497

+ 1 - 1
gui/wxpython/core/utils.py

@@ -999,7 +999,7 @@ command2ltype = {'d.rast'         : 'raster',
                  'd.rast3d'       : '3d-raster',
                  'd.rgb'          : 'rgb',
                  'd.his'          : 'his',
-                 'd.shadedmap'    : 'shaded',
+                 'd.shade'        : 'shaded',
                  'd.legend'       : 'rastleg',
                  'd.rast.arrow'   : 'rastarrow',
                  'd.rast.num'     : 'rastnum',

+ 1 - 1
imagery/i.topo.corr/test_i.topo.corr_synthetic_DEM_NC.sh

@@ -45,7 +45,7 @@ solarzenith=`echo $sunangleabovehorizon | awk '{printf "%f", 90. - $1}'`
 echo "Sun position ($DATETIME): solarzenith: $solarzenith, sunazimuth: $sunazimuth"
 
 # shade relief
-r.shaded.relief input=myplane_pyr output=myplane_pyr_shaded altitude=$sunangleabovehorizon azimuth=$sunazimuth
+r.relief input=myplane_pyr output=myplane_pyr_shaded altitude=$sunangleabovehorizon azimuth=$sunazimuth
 # show raw map as shaded map
 #d.mon wx0
 #sleep 5 # this is rather annoying

+ 1 - 1
raster/r.texture/r.texture.html

@@ -112,7 +112,7 @@ r.mapcalc "ortho_2001_t792_1m.greylevel = ortho_2001_t792_1m"
 r.texture ortho_2001_t792_1m.greylevel prefix=ortho_texture method=asm -s 
 # display
 g.region n=221461 s=221094 w=638279 e=638694
-d.shadedmap drape=ortho_texture_ASM_0 rel=ortho_2001_t792_1m
+d.shade drape=ortho_texture_ASM_0 rel=ortho_2001_t792_1m
 </pre></div>
 
 This calculates four maps (requested texture at four orientations):

+ 2 - 2
raster/r.watershed/front/r.watershed.html

@@ -449,8 +449,8 @@ cut-off value. This only works with SFD, not with MFD.
 <p>
 Display output in a nice way
 <div class="code"><pre>
-  r.shaded.relief map=elevation.dem
-  d.shadedmap rel=elevation.dem.shade drape=rwater.basin bright=40
+  r.relief map=elevation.dem
+  d.shade rel=elevation.dem.shade drape=rwater.basin bright=40
   d.vect rwater_course color=orange
 </pre></div>
 

+ 5 - 3
scripts/r.blend/r.blend.html

@@ -20,11 +20,13 @@ d.rgb blue=elev_shade_blend.b green=elev_shade_blend.g red=elev_shade_blend.r
 <h2>SEE ALSO</h2>
 
 <em>
-<a href="d.shadedmap.html">d.shadedmap</a>,
-<a href="g.region.html">g.region</a>,
+<a href="r.shade.html">r.shade</a>,
+<a href="r.his.html">r.his</a>,
 <a href="r.mapcalc.html">r.mapcalc</a>,
 <a href="r.colors.html">r.colors</a>,
-<a href="r.support.html">r.support</a>
+<a href="r.support.html">r.support</a>,
+<a href="d.shade.html">d.shade</a>,
+<a href="g.region.html">g.region</a>
 </em>