d.shadedmap.html 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <h2>DESCRIPTION</h2>
  2. <em>d.shadedmap</em> will drape a color raster map over a shaded relief map.
  3. <h2>NOTES</h2>
  4. Refer to the <em>d.his</em> help page for more details; <em>d.shadedmap</em>
  5. is simply a frontend to that module.
  6. <p>
  7. If the <b>output</b> option is given the rendering will be written to a
  8. new raster map. The <b>output</b> map does not respect the <b>brighten</b>
  9. parameter. <!-- at this time. -->
  10. <h2>EXAMPLES</h2>
  11. In this example, the <tt>aspect</tt> map in the North Carolina sample
  12. dataset location is used to hillshade the <tt>elevation</tt> map:
  13. <div class="code"><pre>
  14. g.region rast=aspect -p
  15. d.shadedmap reliefmap=aspect drapemap=elevation
  16. </pre></div>
  17. In this next example, a shaded relief raster map is created in
  18. the Spearfish sample dataset and used to create a colorized hillshade
  19. raster map for later use:
  20. <div class="code"><pre>
  21. g.region rast=elevation.10m
  22. r.colors -e map=elevation.10m color=haxby
  23. r.shaded.relief elevation.10m
  24. d.shadedmap reliefmap=elevation.10m.shade drapemap=elevation.10m \
  25. output=elevation.10m.shade.colorized
  26. r.colors -r map=elevation.10m
  27. </pre></div>
  28. <h2>SEE ALSO</h2>
  29. <em>
  30. <a href="d.his.html">d.his</a>,
  31. <a href="g.pnmcomp.html">g.pnmcomp</a>,
  32. <a href="r.his.html">r.his</a>,
  33. <a href="r.slope.aspect.html">r.slope.aspect</a>,
  34. <a href="r.shaded.relief.html">r.shaded.relief</a><br>
  35. <a href="wxGUI.nviz.html">wxGUI 3D viewer (NVIZ)</a>
  36. </em>
  37. <h2>AUTHORS</h2>
  38. Unknown; updated to GRASS 5.7 by Michael Barton
  39. <p>
  40. <i>Last changed: $Date$</i>