Skip to content

Commit 86b50b6

Browse files
committed
fix values and clarify in documentation
1 parent 142f823 commit 86b50b6

File tree

3 files changed

+42
-14
lines changed

3 files changed

+42
-14
lines changed

src/raster/r.manning/r.manning.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,21 @@ <h2>DESCRIPTION</h2>
5151

5252
<h2>NOTES</h2>
5353

54+
<h3>Source of values</h3>
55+
56+
<p>
57+
Kalyanapu et al. (2009) does not include ranges for Manning's n values.
58+
These were estimated using ×0.75/×1.33 multipliers on the original single
59+
values to reflect ranges from Chow (1959).
60+
These multipliers were also used to estimate deafult values from ranges
61+
in the HEC-RAS 2D User's Manual.
62+
</p>
63+
64+
<p>
65+
Kalyanapu et al. (2009) does not include NLCD value for cultivated crops,
66+
this tools uses conventional tillage from McCuen (2005).
67+
</p>
68+
5469
<h3>Custom rules file</h3>
5570

5671
<p>

src/raster/r.manning/r.manning.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,17 @@ a **rules** file in CSV format.
3535

3636
## NOTES
3737

38+
### Source of values
39+
40+
Kalyanapu et al. (2009) does not include ranges for Manning's n values.
41+
These were estimated using ×0.75/×1.33 multipliers on the original single
42+
values to reflect ranges from Chow (1959).
43+
These multipliers were also used to estimate deafult values from ranges
44+
in the HEC-RAS 2D User's Manual.
45+
46+
Kalyanapu et al. (2009) does not include NLCD value for cultivated crops,
47+
this tools uses conventional tillage from McCuen (2005).
48+
3849
### Custom rules file
3950

4051
For custom land cover classifications, provide a CSV file with the

src/raster/r.manning/r.manning.py

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -100,23 +100,25 @@
100100
}
101101

102102
# range from HEC-RAS 2D User's Manual Version 6.6
103-
# initial values from https://rashms.com/wp-content/uploads/2021/01/Mannings-n-values-NLCD-NRCS.pdf
103+
# initial values are roughly estimated using ×0.75/×1.33 multipliers matching Chow
104104
NLCD_HECRAS = {
105-
11: [0.025, 0.040, 0.050], # Open Water
105+
11: [0.025, 0.035, 0.050], # Open Water
106106
21: [0.030, 0.040, 0.050], # Developed, Open Space
107-
22: [0.080, 0.100, 0.120], # Developed, Low Intensity
108-
23: [0.060, 0.080, 0.140], # Developed, Medium Intensity
109-
24: [0.120, 0.150, 0.200], # Developed, High Intensity
110-
31: [0.023, 0.025, 0.030], # Barren Land
111-
41: [0.100, 0.160, 0.200], # Deciduous Forest
112-
42: [0.080, 0.160, 0.160], # Evergreen Forest
113-
43: [0.080, 0.160, 0.200], # Mixed Forest
114-
52: [0.070, 0.100, 0.016], # Shrub/Scrub
107+
22: [0.060, 0.085, 0.120], # Developed, Low Intensity
108+
23: [0.080, 0.100, 0.160], # Developed, Medium Intensity
109+
24: [0.120, 0.160, 0.200], # Developed, High Intensity
110+
31: [0.023, 0.030, 0.030], # Barren Land
111+
41: [0.100, 0.140, 0.200], # Deciduous Forest
112+
42: [0.080, 0.120, 0.160], # Evergreen Forest
113+
43: [0.080, 0.130, 0.200], # Mixed Forest
114+
51: [0.025, 0.035, 0.050], # Dwarf Scrub
115+
52: [0.070, 0.100, 0.160], # Shrub/Scrub
115116
71: [0.025, 0.035, 0.050], # Grassland/Herbaceous
116-
81: [0.025, 0.033, 0.050], # Pasture/Hay
117-
82: [0.025, 0.035, 0.050], # Cultivated Crops
118-
90: [0.045, 0.120, 0.150], # Woody Wetlands
119-
95: [0.050, 0.070, 0.085], # Emergent Herbaceous Wetlands
117+
72: [0.025, 0.035, 0.050], # Sedge/Herbaceous
118+
81: [0.025, 0.035, 0.050], # Pasture/Hay
119+
82: [0.020, 0.030, 0.050], # Cultivated Crops
120+
90: [0.045, 0.100, 0.150], # Woody Wetlands
121+
95: [0.050, 0.060, 0.085], # Emergent Herbaceous Wetlands
120122
}
121123

122124
# Values from QGIS Manning's Roughness Generator plugin

0 commit comments

Comments
 (0)