DEM#
DEM#
hapi.dem.DEM
#
Bases: Dataset
Digital Elevation Model dataset with flow-direction helpers.
DEM wraps a GDAL-backed raster dataset (via
pyramids.dataset.Dataset) and adds methods that convert
D8 flow-direction codes into downstream-cell indices and
upstream-cell lookup tables. Three encodings are supported:
- ESRI (default): powers-of-2 codes (1, 2, 4, 8, 16, 32, 64, 128).
- SAGA: codes 0--7, starting East counter-clockwise.
- GRASS: codes 1--8, starting North clockwise.
Use DEM.read_file(path) to open a raster from disk, exactly
like pyramids.dataset.Dataset.
Source code in src/hapi/dem.py
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 | |
flow_direction_index(encoding: str = 'esri') -> np.ndarray
#
Convert flow-direction codes into downstream-cell indices.
Reads the flow-direction band from the underlying raster and maps each D8 direction code to the row/column index of the downstream neighbour cell.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
encoding
|
str
|
The D8 flow-direction encoding used by the raster. Supported values:
|
'esri'
|
Returns:
| Type | Description |
|---|---|
ndarray
|
A 3-D array of shape |
Raises:
| Type | Description |
|---|---|
ValueError
|
If encoding is not one of the supported names, or if the raster contains direction values outside the expected set for the chosen encoding. |
Source code in src/hapi/dem.py
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 | |
flow_direction_table(encoding: str = 'esri') -> dict
#
Build an upstream-cell lookup table from flow directions.
Uses flow_direction_index to determine downstream
neighbours, then inverts the relationship so that each cell
maps to the list of cells that flow directly into it.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
encoding
|
str
|
The D8 flow-direction encoding. See
|
'esri'
|
Returns:
| Type | Description |
|---|---|
dict[str, list[tuple[int, int]]]
|
A dictionary keyed by
|
Source code in src/hapi/dem.py
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 | |