1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/gdaldem.md

17 lines
418 B
Markdown
Raw Normal View History

2022-09-04 12:22:35 +02:00
# gdaldem
> Analyze and visualize digital elevation models (DEM).
2024-09-23 22:08:32 +02:00
> More information: <https://gdal.org/programs/gdaldem.html>.
2022-09-04 12:22:35 +02:00
- 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}}`