Note: This document is for an older version of GRASS GIS that has been discontinued. You should upgrade, and read the current manual page.
NAME
r.hand - Performs Height Above Nearest Drainage (HAND) analysis and flood inundation mapping with HAND method.
KEYWORDS
raster,
hydrology,
flood,
inundation,
json
SYNOPSIS
r.hand
r.hand --help
r.hand [-tm] elevation=name [streams=name] [direction=name] [inundation_raster=name] [hand=name] [inundation_strds=name] [threshold=integer] [depth=float] [start_water_level=float] [end_water_level=float] [water_level_step=float] [memory=memory in MB] [--overwrite] [--help] [--verbose] [--quiet] [--ui]
Flags:
- -t
- Generate inundation raster maps for a series of water levels
- -m
- Use memory swap (operation is slow)
- --overwrite
- Allow output files to overwrite existing files
- --help
- Print usage summary
- --verbose
- Verbose module output
- --quiet
- Quiet module output
- --ui
- Force launching GUI dialog
Parameters:
- elevation=name [required]
- Name of input elevation raster map
- streams=name
- Stream raster map
- Name of the stream raster map
- direction=name
- Flow direction raster map
- Name of the flow direction raster map
- inundation_raster=name
- Name of the output inundation raster map
- hand=name
- Height above nearest drainage raster map
- Name of the output HAND raster map
- inundation_strds=name
- Name of the output inundation STRDS.
- threshold=integer
- Basin threshold value
- Default: 10000
- depth=float
- Inundation depth (single output)
- start_water_level=float
- Start water level for flooding simulation
- end_water_level=float
- End water level for flooding simulation
- water_level_step=float
- Step increment for water level in flooding simulation
- Default: 1
- memory=memory in MB
- Maximum memory to be used (in MB)
- Cache size for raster rows
- Default: 300
r.hand - Height Above Nearest Drainage (HAND) is a terrain-based model that computes the height of the
terrain above the nearest stream using a digital elevation model (DEM)
(Nobre et al., 2011).
The HAND method is widely used for hydrological analysis, particularly for estimating flood inundation extents
based on user-defined water levels.
The tool generates flood inundation extent maps by applying the HAND method to a DEM. Users can optionally provide
streams and flow direction raster maps to improve processing efficiency and accuracy. The tool will return an
inundation raster map or times series (STRDS) of inundation raster maps based on user define water levels.
Additionally, the HAND raster map can be returned as an output if desired by setting the
difference parameter.
r.hand elevation=elevation hand=hand depth=2 inundation_raster=inundation
Figure: Inundation event 2 m.
# Reclassify HAND raster into categories
r.reclass input=hand output=hand_reclass rules=- <$lt EOF
-30000 thru 0 = NULL
1 thru 5 = 1 Surface
5 thru 15 = 2 Shallow
15 thru 30000 = 3 Deep
EOF
# Set color table for HAND raster
r.colors map=hand_reclass rules=- <$lt EOF
1 #1d91c0
2 #41ab5d
3 #ec7014
nv white
default grey
EOF
Latest change: Friday Feb 21 15:35:16 2025 in commit: 9a49d5b1d0de6d361d50ea52d67c7825dee1364d