WatershedRaster#
Typed watershed / basin / sub-basin raster — produced by FlowDirection.watershed(),
FlowDirection.basins(), FlowDirection.subbasins_pfafstetter(),
FlowDirection.isobasins(), and StreamRaster.subbasins().
Top-level surface:
basin_count(lazy property) — number of distinct non-zero basin labels.statistics(dem=None, slope=None, streams=None, flow_direction=None, accumulation=None, metrics=None)— per-basin descriptor table. Available columns:area_km2,centroid_x,centroid_y(always).min_elev,max_elev,mean_elev,std_elev,hypsometric_integral(withdem).mean_slope(withslope).drainage_density_km_per_km2(withstreams, optionallyflow_directionfor diagonal length-weighting).longest_flow_path_m(withflow_direction; W-8 —accumulationis no-op post-M1).
to_polygons()— vectorise the labelled raster to per-basin polygons.
digitalrivers.watershed_raster.WatershedRaster
#
Bases: Dataset
Labelled-basins raster from :class:FlowDirection.watershed.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
src
|
Dataset
|
GDAL dataset wrapping the int32 basin-ID raster (0 = no basin). |
required |
access
|
str
|
|
'read_only'
|
routing
|
str
|
Routing scheme of the source FlowDirection. Required keyword-only. |
required |
outlets
|
|
required |
Attributes:
| Name | Type | Description |
|---|---|---|
routing |
str
|
Routing scheme tag. |
outlets |
|
|
basin_count |
int
|
Number of distinct basin labels (excluding background 0). |
Source code in src/digitalrivers/watershed_raster.py
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 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 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 | |
basin_count
property
#
Number of distinct non-zero basin labels in the raster.
Lazily computed on first access and cached on the instance — wraps
like :meth:from_dataset that build a WatershedRaster for a
continental-scale raster do not pay the full-raster np.unique
cost until something actually asks for the count.
Returns:
| Type | Description |
|---|---|
int
|
|
Examples:
-
A small DEM with two opposite-corner sinks produces a positive basin count (the exact value depends on the D8 tie-breaking and any flat-area sinks):
import numpy as np from pyramids.dataset import Dataset from digitalrivers import DEM z = np.full((5, 5), 10.0, dtype=np.float32) z[0, 0] = 0.0 z[4, 4] = 0.0 ds = Dataset.create_from_array( ... z, top_left_corner=(0.0, 0.0), cell_size=1.0, ... epsg=4326, no_data_value=-9999.0, ... ) ws = DEM(ds.raster).flow_direction(method="d8").basins() ws.basin_count >= 2 True
from_dataset(ds, *, routing, outlets)
classmethod
#
Promote a plain Dataset into a WatershedRaster.
persist_metadata()
#
Persist the routing and class tags to the raster metadata.
statistics(dem=None, accumulation=None, slope=None, streams=None, flow_direction=None, metrics=None)
#
Per-basin descriptor table.
Returns one row per basin label with the requested metrics. Available metrics (subset of P17 spec):
area_km2: number of cells × cell area (km²).min_elev,max_elev,mean_elev,std_elev: elevation statistics fromdem(required for the elev metrics).hypsometric_integral: Strahler (1952)(mean_elev - min_elev) / (max_elev - min_elev).mean_slope: mean of thesloperaster across the basin.drainage_density_km_per_km2:stream_length_km / area_km2(requiresstreams). Whenflow_directionis also supplied, diagonal stream cells (D8 codes 1/3/5/7) contributesqrt(2) * cell_sizeinstead ofcell_size; withoutflow_directionevery stream cell is assumed cardinal, which under-estimates length on diagonal-heavy networks by ~5-10%.longest_flow_path_m: longest upstream-to-outlet flow path for the basin, in map units. Requiresflow_direction(and a single-direction routing). Computed via a single Kahn topological sweep over the entire raster.centroid_x,centroid_y: basin centroid in dataset CRS. Always present, regardless of which optional inputs are supplied.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
dem
|
Aligned DEM for elevation metrics. |
None
|
|
accumulation
|
Optional accumulation raster (kept for API
symmetry with |
None
|
|
slope
|
Aligned slope raster (m/m) for |
None
|
|
streams
|
Aligned StreamRaster for |
None
|
|
flow_direction
|
Aligned single-direction |
None
|
|
metrics
|
list[str] | None
|
Subset of the available metrics. |
None
|
Returns:
| Type | Description |
|---|---|
|
|
Examples:
-
Without any optional input, the DataFrame still carries the area and centroid columns:
import numpy as np from pyramids.dataset import Dataset from digitalrivers import DEM z = np.array( ... [[5, 5, 5], [5, 1, 5], [5, 5, 5]], dtype=np.float32 ... ) ds = Dataset.create_from_array( ... z, top_left_corner=(0.0, 0.0), cell_size=1.0, ... epsg=4326, no_data_value=-9999.0, ... ) ws = DEM(ds.raster).flow_direction(method="d8").basins() df = ws.statistics() sorted(df.columns.tolist()) ['area_km2', 'centroid_x', 'centroid_y']
-
With
flow_directionthe drainage-density column reflects actual D8 path lengths:import numpy as np from pyramids.dataset import Dataset from digitalrivers import DEM z = np.array( ... [[5, 9, 9], [9, 4, 9], [9, 9, 1]], dtype=np.float32 ... ) ds = Dataset.create_from_array( ... z, top_left_corner=(0.0, 0.0), cell_size=1.0, ... epsg=4326, no_data_value=-9999.0, ... ) dem = DEM(ds.raster) fd = dem.flow_direction(method="d8") acc = fd.accumulate() sr = acc.streams(threshold=1) df = fd.basins().statistics(streams=sr, flow_direction=fd) "drainage_density_km_per_km2" in df.columns True
Source code in src/digitalrivers/watershed_raster.py
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 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 | |
to_polygons()
#
Vectorise the labelled raster to per-basin polygons.
Each unique non-zero basin label becomes a single polygon (or
MultiPolygon if the basin is disconnected). The output GeoDataFrame
carries the basin ID in the basin_id column.
Returns:
| Type | Description |
|---|---|
|
|
|
|
|