mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
16 lines
421 B
Markdown
16 lines
421 B
Markdown
# gdaldem
|
|
|
|
> Tool to analyze and visualize digital elevation models (DEM).
|
|
> More information: <https://gdal.org/programs/gdaldem>.
|
|
|
|
- Compute the hillshade of a DEM:
|
|
|
|
`gdaldem hillshade {{path/to/input.tif}} {{path/to/output.tif}}`
|
|
|
|
- Compute the slope of a DEM:
|
|
|
|
`gdaldem slope {{path/to/input.tif}} {{path/to/output.tif}}`
|
|
|
|
- Compute the aspect of a DEM:
|
|
|
|
`gdaldem aspect {{path/to/input.tif}} {{path/to/output.tif}}`
|