.. _hillshade: hillshade --------- The ``hillshade`` tool reads in a DEM and outputs an image of that DEM as though it were a three-dimensional surface, with every pixel shaded as though it were illuminated by a light from a specified location. Example:: hillshade -a 300 -e 30 dem.tif -o hillshaded.tif See an illustration in :numref:`genhillshade`. View these side-by-side with ``stereo_gui`` (:numref:`stereo_gui`):: stereo_gui dem.tif hillshaded.tif Command-line options for ``hillshade``: --input-file Explicitly specify the input file. -o, --output-file Specify the output file. --align-to-georef Azimuth is relative to geographic East, not +x in the image. -a, --azimuth Sets the direction that the light source is coming from (in degrees). Zero degrees is to the right, with positive degrees counter-clockwise. -e, --elevation Set the elevation of the light source (in degrees). -s, --scale Set the scale of a pixel (in the same units as the DTM height values). --nodata-value Remap the DEM default value to the min altitude value. --blur Pre-blur the DEM with the specified sigma. --threads Select the number of threads to use for each process. If 0, use the value in ~/.vwrc. --cache-size-mb Set the system cache size, in MB. --tile-size Image tile size used for multi-threaded processing. --no-bigtiff Tell GDAL to not create bigtiffs. --tif-compress TIFF compression method. -v, --version Display the version of software. -h, --help Display this help message.