1 !WRF:MODEL_LAYER:PHYSICS
3 ! RG 10/2014 - Added LU-based SNOALB that is used for LU fraction weighted value if specificed.
7 MODULE module_sf_pxlsm_data
9 !*****************************************************************************
10 ! MODIS-ONLY (1XX)/MODIS (2XX) LU characterization ...
11 !-------------------------------------------------------------------------------
12 !Index Rstmin Zo Mxfr MnFr MxLA MnLA SNUP ALB SNOALB
13 ! 1 175. 100. 93. 93. 5.5 3.5 0.08 12. 30. Evergreen Needleleaf Forest
14 ! 2 120. 90. 92. 92. 6.0 3.5 0.08 12. 30. Evergreen Broadleaf Forest
15 ! 3 175. 100. 60. 60. 3.0 1.5 0.08 14. 30. Deciduous Needleleaf Forest
16 ! 4 200. 100. 91. 91. 6.0 1.5 0.08 16. 40. Deciduous Broadleaf Forest'
17 ! 5 200. 100. 92. 92. 5.5 2.2 0.08 13. 35. Mixed Forest
18 ! 6 200. 15. 40. 20. 1.5 1.0 0.03 22. 50. Closed Shrublands
19 ! 7 200. 15. 40. 17. 1.5 1.3 0.035 20. 60. Open Shrublands
20 ! 8 150. 25. 70. 60. 2.3 2.0 0.03 22. 50. Woody Savanna
21 ! 9 120. 15. 70. 40. 1.5 0.5 0.04 20. 50. Savanna
22 !-------------------------------------------------------------------------------
23 ! 10 100. 7. 50. 20. 1.5 0.5 0.04 19. 70. Grasslands
24 ! 11 200 20. 65. 35. 2.5 1.0 0.08 15. 50. Perminent Wetlands
25 ! 12 70. 10. 90. 20. 3.5 0.7 0.04 18. 66. Croplands
26 ! 13 150. 80. 5. 5. 2.0 0.5 0.04 11. 46. Urban andBuilt-up'
27 ! 14 100. 30. 80. 40. 3.5 1.0 0.04 18. 68. Cropland/Natural Vegetation Mosaic
28 ! 15 9999. 1.2 0.1 0.1 0.1 0.1 0.02 60. 82. Snow and Ice
29 ! 16 100. 5. 0.5 0.5 0.2 0.1 0.02 25. 75. Barren or Sparsely Vegetated
30 ! 17 9999. 0.1 00. 00. 0.0 0.0 0.01 8.0 08. IGBP water
31 ! 18 175. 30. 70. 50. 3.4 2.0 0.80 15. 45. wooded tundra
32 ! 19 120. 15. 40. 20. 2.4 1.0 0.40 15. 50. mixed tundra
33 ! 20 100. 10. 20. 5. 1.4 0.1 .015 25. 75. barren tundra
34 !------------------------------------------------------------------------------------
35 !****************************************************************************************
36 !****************************************************************************************
37 REAL, DIMENSION(21), TARGET :: RSMIN_MODIS, Z00_MODIS, &
38 VEG0_MODIS, VEGMN0_MODIS, &
39 LAI0_MODIS, LAIMN0_MODIS, &
40 SNUP0_MODIS, ALBF_MODIS, &
44 / 175.0, 120.0, 175.0, 200.0, 200.0, &
45 200.0, 200.0, 150.0, 120.0, 100.0, &
46 200.0, 70.0, 150.0, 100.0, 9999.0, &
47 100.0, 9999.0, 175.0, 120.0, 100.0, 9999.0 /
50 / 100.0, 90.0, 100.0, 100.0, 100.0, &
51 15.0, 15.0, 25.0, 15.0, 7.0, &
52 20.0, 10.0, 80.0, 30.0, 1.2, &
53 5.0, 0.1, 30.0, 15.0, 10.0, 0.1 /
56 / 93.0, 92.0, 60.0, 91.0, 92.0, &
57 40.0, 20.0, 70.0, 70.0, 50.0, &
58 65.0, 90.0, 5.0, 80.0, 0.1, &
59 0.5, 0.0, 70.0, 40.0, 20.0, 0.0 /
62 / 93.0, 92.0, 60.0, 91.0, 92.0, &
63 20.0, 10.0, 60.0, 40.0, 20.0, &
64 35.0, 20.0, 5.0, 40.0, 0.1, &
65 0.5, 0.0, 50.0, 20.0, 5.0, 0.0 /
68 / 5.5, 6.0, 3.0, 6.0, 5.5, &
69 1.5, 1.5, 2.3, 1.5, 1.5, &
70 2.5, 3.5, 2.0, 3.5, 0.1, &
71 0.2, 0.0, 3.4, 2.4, 1.4, 0.0 /
74 / 3.5, 3.5, 1.5, 2.0, 2.5, &
75 1.0, 1.3, 2.0, 1.5, 1.5, &
76 2.0, 1.5, 1.5, 1.5, 0.1, &
77 0.1, 0.0, 2.0, 1.0, 0.1, 0.0 /
80 / 0.08, 0.08, 0.08, 0.08, 0.08, &
81 0.03, 0.035, 0.03, 0.04, 0.04, &
82 0.08, 0.04, 0.04, 0.04, 0.02, &
83 0.02, 0.01, 0.80, 0.40, 0.015, 0.01 /
86 / 12.0, 12.0, 14.0, 16.0, 13.0, &
87 22.0, 20.0, 22.0, 20.0, 19.0, &
88 17.0, 18.0, 11.0, 18.0, 60.0, &
89 25.0, 8.0, 15.0, 15.0, 25.0, 8.0 /
92 / 30.0, 30.0, 30.0, 40.0, 35.0, &
93 50.0, 60.0, 50.0, 50.0, 70.0, &
94 50.0, 66.0, 46.0, 68.0, 82.0, &
95 75.0, 8.0, 45.0, 55.0, 75.0, 8.0 /
97 !****************************************************************************************
98 !****************************************************************************************
99 ! 50 CLASS NLCD (US only, cats 1-30)/MODIS (Outside US, cats 31-50) LU characterization
100 !---------------------------------------------------------------------------------------
101 !Index Rstmin Zo Mxfr MnFr MxLA MnLA ALB SNOALB Cat Desc.
102 ! 1 9999. 0.1 00. 00. 0.0 0.0 8 70. Open water
103 ! 2 9999. 1.2 5. 02. 0.1 0.1 60 82. Perennial Ice/snow
104 ! 3 120. 30. 90. 80. 3.0 1.0 12 60. Developed, Open space
105 ! 4 120. 40. 70 60. 3.0 1.0 11 46. Developed, Low Intensity
106 ! 5 140. 60. 40. 30. 3.0 1.0 10 43. Developed, Medium Intensity
107 ! 6 160. 100. 15. 5. 3.0 1.0 10 40. Developed, High Intensity
108 ! 7 100. 5. 20. 5. 1.0 0.5 20 75. Barren land
109 ! 8 100. 5. 15. 5. 0.5 0.2 35 75. Unconsolidated Shore
110 ! 9 200. 100. 95. 50. 5.0 1.0 15 40. Deciduous Forest
111 ! 10 175. 100. 90. 80. 4.0 3.0 10 30. Evergreen Forest
112 !-------------------------------------------------------------------------------
113 ! 11 200. 100. 95. 60. 5.0 2.0 13 35. Mixed Forest
114 ! 12 200. 10. 50. 20. 2.0 1.0 20 65. Dwarf Scrub
115 ! 13 200. 15. 75. 50. 2.5 1.0 20 60. Shrub/Scrub
116 ! 14 100. 7. 85. 60. 2.5 1.0 19 70. Grassland/Herbaceous
117 ! 15 100. 7. 80. 20. 2.0 1.0 23 60. Sedge/Herbaceous
118 ! 16 100. 5. 80. 20. 1.0 1.0 20 60. Lichens
119 ! 17 100. 5. 80. 20. 1.0 1.0 20 60. Moss
120 ! 18 100. 5. 50. 20. 1.0 1.0 15 75. Tundra
121 ! 19 80. 7. 95. 80. 3.0 1.0 18 68. Pasture/Hay'
122 ! 20 70. 10. 95. 10. 3.0 0.5 18 66. Cultivated Crops
123 !-------------------------------------------------------------------------------
124 ! 21 200. 55. 90. 80. 5.0 2.0 15 40. Woody Wetland
125 ! 22 200. 80. 90. 80. 5.0 2.0 15 40. Palustrine Forested Wetland
126 ! 23 164. 30. 90. 80. 3.0 1.0 15 50. Palustrine Scrub/Shrub Wetland
127 ! 24 200. 60. 90. 80. 5.0 2.0 15 50. Estuarine Forested Wetland
128 ! 25 164. 30. 90. 80. 3.0 1.0 15 50. Estuarine Scrub/Shrub Wetland
129 ! 26 120. 11. 85. 40. 2.0 1.0 18 59. Emergent Herbaceous Wetland
130 ! 27 120. 11. 85. 40. 2.0 1.0 18 59. Palustrine Emergent Wetland
131 ! 28 120. 11. 85. 40. 2.0 1.0 18 59. Estuarine Emergent Wetland
132 ! 29 100. 5. 60. 20. 1.0 0.5 10 50. Palustrine Aquatic Bed
133 ! 30 100. 5. 60. 20. 1.0 0.5 10 50. Estuarine Aquatic Bed
134 !-------------------------------------------------------------------------------
135 ! 31 9999. 0.1 00. 00. 0.0 0.0 8 8. Open water (mapped to 1)
136 ! 32 175. 100. 90. 80. 4.0 3.0 12 30. Evergreen Needleleaf Forest
137 ! 33 120. 90. 95. 85. 5.0 4.0 12 30. Evergreen Broadleaf Forest
138 ! 34 175. 100. 95. 50. 5.0 1.0 14 40. Deciduous Needleleaf Forest
139 ! 35 200. 100. 95. 50. 5.0 1.0 16 40. Deciduous Broadleaf Forest'
140 ! 36 200. 100. 95. 60. 5.0 2.0 13 35. Mixed Forest
141 ! 37 200. 15. 90. 50. 3.0 1.0 22 50. Closed Shrublands
142 ! 38 200. 15. 75. 50. 2.5 1.0 20 60. Open Shrublands
143 ! 39 150. 25. 80. 60. 2.5 1.0 22 50. Woody Savanna
144 ! 40 120. 15. 70. 50 2.0 1.0 20 50. Savanna
145 !-------------------------------------------------------------------------------
146 ! 41 100. 7. 85. 60. 2.5 1.0 19 70. Grasslands
147 ! 42 160. 20. 75. 45. 3.0 1.0 14 59. Perminent Wetlands
148 ! 43 70. 10. 95. 10. 3.0 0.5 18 66. Croplands
149 ! 44 150. 80. 40. 20. 3.0 1.0 11 46. Urban andBuilt-up'
150 ! 45 100. 30. 95. 40. 3.0 1.0 18 68. Cropland/Natural Vegetation Mosaic
151 ! 46 9999. 1.2 5. 02. 0.1 0.1 60 82. Snow and Ice
152 ! 47 100. 5. 20. 5. 1.0 0.5 25 75. Barren or Sparsely Vegetated
153 ! 48 9999. 0.1 00. 00. 0.0 0.0 8 08. IGBP water
154 ! 49 9999. 0.1 00. 00. 0.0 0.0 8 60. unclassified
155 ! 50 9999. 0.1 00. 00. 0.0 0.0 8 75. fill value (normally ocean water)
156 !------------------------------------------------------------------------------------
158 REAL, DIMENSION(50), TARGET :: RSMIN_NLCD50, Z00_NLCD50, &
159 VEG0_NLCD50, VEGMN0_NLCD50, &
160 LAI0_NLCD50, LAIMN0_NLCD50, &
161 SNUP0_NLCD50, ALBF_NLCD50, &
165 / 9999.0, 9999.0, 120.0, 120.0, 140.0, &
166 160.0, 100.0, 100.0, 200.0, 175.0, &
167 200.0, 200.0, 200.0, 100.0, 100.0, &
168 100.0, 100.0, 100.0, 80.0, 70.0, &
169 200.0, 200.0, 164.0, 200.0, 164.0, &
170 120.0, 120.0, 120.0, 100.0, 100.0, &
171 9999.0, 175.0, 120.0, 175.0, 200.0, &
172 200.0, 200.0, 200.0, 150.0, 120.0, &
173 100.0, 160.0, 70.0, 150.0, 100.0, &
174 9999.0, 100.0, 9999.0, 9999.0, 9999.0 /
177 / 0.10, 1.20, 30.0, 40.0, 60.0, &
178 100.0, 5.0, 5.0, 100.0, 100.0, &
179 100.0, 10.0, 15.0, 7.0, 7.0, &
180 5.0, 5.0, 5.0, 7.0, 10.0, &
181 55.0, 80.0, 30.0, 60.0, 30.0, &
182 11.0, 11.0, 11.0, 5.0, 5.0, &
183 0.1, 100.0, 90.0, 100.0, 100.0, &
184 100.0, 15.0, 15.0, 25.0, 15.0, &
185 7.0, 20.0, 10.0, 80.0, 30.0, &
186 1.2, 5.0, 0.1, 0.1, 0.1 /
189 / 00.0, 5.0, 90.0, 70.0, 40.0, &
190 15.0, 20.0, 15.0, 95.0, 90.0, &
191 95.0, 50.0, 75.0, 85.0, 80.0, &
192 80.0, 80.0, 50.0, 95.0, 95.0, &
193 90.0, 90.0, 90.0, 90.0, 90.0, &
194 85.0, 85.0, 85.0, 60.0, 60.0, &
195 0.0, 90.0, 95.0, 95.0, 95.0, &
196 95.0, 90.0, 75.0, 80.0, 70.0, &
197 85.0, 75.0, 95.0, 40.0, 95.0, &
198 5.0, 20.0, 0.0, 0.0, 0.0 /
201 / 00.0, 2.0, 80.0, 60.0, 30.0, &
202 05.0, 05.0, 5.0, 50.0, 80.0, &
203 60.0, 20.0, 50.0, 60.0, 20.0, &
204 20.0, 20.0, 20.0, 80.0, 10.0, &
205 80.0, 80.0, 80.0, 80.0, 80.0, &
206 40.0, 40.0, 40.0, 20.0, 20.0, &
207 0.0, 80.0, 85.0, 50.0, 50.0, &
208 60.0, 50.0, 50.0, 60.0, 50.0, &
209 60.0, 45.0, 10.0, 20.0, 40.0, &
210 2.0, 5.0, 0.0, 0.0, 0.0 /
213 / 0.0, 0.1, 3.0, 3.0, 3.0, &
214 3.0, 1.0, 0.5, 5.0, 4.0, &
215 5.0, 2.0, 2.5, 2.5, 2.0, &
216 1.0, 1.0, 1.0, 3.0, 3.0, &
217 5.0, 5.0, 3.0, 5.0, 3.0, &
218 2.0, 2.0, 2.0, 1.0, 1.0, &
219 0.0, 4.0, 5.0, 5.0, 5.0, &
220 5.0, 3.0, 2.5, 2.5, 2.0, &
221 2.5, 3.0, 3.0, 3.0, 3.0, &
222 0.1, 1.0, 0.0, 0.0, 0.0 /
225 / 0.0, 0.1, 1.0, 1.0, 1.0, &
226 1.0, 0.5, 0.2, 1.0, 3.0, &
227 2.0, 1.0, 1.0, 1.0, 1.0, &
228 1.0, 1.0, 1.0, 1.0, 0.5, &
229 2.0, 2.0, 1.0, 2.0, 1.0, &
230 1.0, 1.0, 1.0, 0.5, 0.5, &
231 0.0, 3.0, 4.0, 1.0, 1.0, &
232 2.0, 1.0, 1.0, 1.0, 1.0, &
233 1.0, 1.0, 0.5, 1.0, 1.0, &
234 0.1, 0.5, 0.0, 0.0, 0.0 /
237 / 0.01, 0.02, 0.04, 0.04, 0.04, &
238 0.04, 0.02, 0.02, 0.08, 0.08, &
239 0.08, 0.04, 0.04, 0.04, 0.01, &
240 0.01, 0.01, 0.02, 0.04, 0.04, &
241 0.08, 0.08, 0.04, 0.08, 0.04, &
242 0.04, 0.06, 0.06, 0.02, 0.02, &
243 0.08, 0.08, 0.08, 0.08, 0.08, &
244 0.08, 0.03, 0.035, 0.03, 0.04, &
245 0.04, 0.015, 0.04, 0.04, 0.04, &
246 0.02, 0.02, 0.01, 0.01, 0.01 /
249 / 8.0, 60.0, 12.0, 11.0, 10.0, &
250 10.0, 20.0, 35.0, 15.0, 10.0, &
251 13.0, 20.0, 20.0, 19.0, 23.0, &
252 20.0, 20.0, 15.0, 18.0, 18.0, &
253 15.0, 15.0, 15.0, 15.0, 15.0, &
254 18.0, 18.0, 18.0, 10.0, 10.0, &
255 8.0, 12.0, 12.0, 14.0, 16.0, &
256 13.0, 22.0, 20.0, 22.0, 20.0, &
257 19.0, 14.0, 18.0, 11.0, 18.0, &
258 60.0, 25.0, 8.0, 8.0, 8.0 /
261 / 70.0, 82.0, 60.0, 46.0, 43.0, &
262 40.0, 75.0, 75.0, 40.0, 30.0, &
263 35.0, 65.0, 60.0, 70.0, 60.0, &
264 60.0, 60.0, 75.0, 68.0, 66.0, &
265 40.0, 40.0, 50.0, 50.0, 50.0, &
266 59.0, 59.0, 59.0, 50.0, 50.0, &
267 8.0, 30.0, 30.0, 40.0, 40.0, &
268 35.0, 50.0, 60.0, 50.0, 50.0, &
269 70.0, 59.0, 66.0, 46.0, 68.0, &
270 82.0, 75.0, 8.0, 60.0, 75.0 /
272 !****************************************************************************************
273 !****************************************************************************************
276 !****************************************************************************************
277 !****************************************************************************************
278 ! 40 CLASS MODIS (Outside US, cats 1-20)/NLCD (US only, cats 21-40) LU characterization
279 !-------------------------------------------------------------------------------
280 !Index Rstmin Zo Mxfr MnFr MxLA MnLA SNUP ALB SNOALB
281 ! 1 175. 100. 93. 93. 5.5 3.5 0.08 12. 30. Evergreen Needleleaf Forest
282 ! 2 120. 90. 92. 92. 6.0 3.5 0.08 12. 30. Evergreen Broadleaf Forest
283 ! 3 175. 100. 60. 60. 3.0 1.5 0.08 14. 30. Deciduous Needleleaf Forest
284 ! 4 200. 100. 91. 91. 6.0 2.0 0.08 16. 40. Deciduous Broadleaf Forest'
285 ! 5 200. 100. 92. 92. 5.5 2.5 0.08 13. 35. Mixed Forest
286 ! 6 200. 15. 40. 20. 1.5 1.0 0.03 22. 50. Closed Shrublands
287 ! 7 200. 15. 20. 10. 1.5 1.3 0.035 20. 60. Open Shrublands
288 ! 8 150. 25. 70. 60. 2.3 2.0 0.03 22. 50. Woody Savanna
289 ! 9 120. 15. 70. 40. 1.5 1.5 0.04 20. 50. Savanna
290 !-------------------------------------------------------------------------------
291 ! 10 100. 7. 50. 20. 1.5 1.5 0.04 19. 70. Grasslands
292 ! 11 200 20. 65. 35. 2.5 2.0 0.08 15. 50. Perminent Wetlands
293 ! 12 70. 10. 90. 20. 3.5 1.5 0.04 18. 66. Croplands
294 ! 13 150. 80. 5. 5. 2.0 1.5 0.04 11. 46. Urban andBuilt-up'
295 ! 14 100. 30. 80. 40. 3.5 1.5 0.04 18. 68. Cropland/Natural Vegetation Mosaic
296 ! 15 9999. 1.2 0.1 0.1 0.1 0.1 0.02 60. 82. Snow and Ice
297 ! 16 100. 5. 0.5 0.5 0.2 0.1 0.02 25. 75. Barren or Sparsely Vegetated
298 ! 17 9999. 0.1 00. 00. 0.0 0.0 0.01 8.0 08. IGBP water
299 ! 18 175. 30. 70. 50. 3.4 2.0 0.80 15. 45. wooded tundra
300 ! 19 120. 15. 40. 20. 2.4 1.0 0.40 15. 50. mixed tundra
301 ! 20 100. 10. 20. 5. 1.4 0.1 .015 25. 75. barren tundra
302 ! 21 9999. 0.1 00. 00. 0.0 0.0 0.01 8.0 08. Open water
303 ! 22 9999. 1.2 0.1 0.1 0.1 0.1 0.02 60. 82. Perennial Ice/snow
304 ! 23 120. 30. 25. 25. 5.5 1.7 0.04 16. 60. Developed, Open space
305 ! 24 120. 80. 15. 15. 3.0 1.7 0.04 13. 46. Developed, Low Intensity
306 ! 25 140. 120. 5. 5. 2.5 1.7 0.04 11. 43. Developed, Medium Intensity
307 ! 26 160. 200. 1. 1. 2.5 2.0 0.04 10. 40. Developed, High Intensity
308 ! 27 100. 5. 0.5 0.5 0.2 0.1 0.02 20. 75. Barren land
309 ! 28 200. 100. 91. 91. 6.0 2.0 0.08 15. 40. Deciduous Forest
310 ! 29 175. 100. 93. 93. 5.5 3.5 0.08 12. 30. Evergreen Forest
311 !-------------------------------------------------------------------------------
312 ! 30 200. 100. 92. 92. 5.5 2.5 0.08 13. 35. Mixed Forest
313 ! 31 200. 10. 15. 10. 1.0 1.0 0.04 20. 65. Dwarf Scrub
314 ! 32 200. 15. 20. 10. 1.5 1.3 0.04 20. 60. Shrub/Scrub
315 ! 33 100. 7. 50. 20. 2.0 1.5 0.04 19. 70. Grassland/Herbaceous
316 ! 34 100. 7. 30. 20. 2.0 1.5 0.01 23. 60. Sedge/Herbaceous
317 ! 35 100. 5. 20. 20. 1.0 1.0 0.01 20. 60. Lichens
318 ! 36 100. 5. 20. 20. 1.0 1.0 0.01 20. 60. Moss
319 ! 37 80. 7. 80. 10. 3.5 1.5 0.04 18. 68. Pasture/Hay'
320 ! 38 70. 10. 90. 10. 4.0 1.5 0.04 18. 66. Cultivated Crops
321 !-------------------------------------------------------------------------------
322 ! 39 200. 55. 92. 50. 5.5 2.2 0.08 15. 40. Woody Wetland
323 ! 40 120. 11. 50. 30. 3.0 2.0 0.04 18. 50. Emergent Herbaceous Wetland
324 !------------------------------------------------------------------------------------
326 REAL, DIMENSION(40), TARGET :: RSMIN_NLCD40, Z00_NLCD40, &
327 VEG0_NLCD40, VEGMN0_NLCD40, &
328 LAI0_NLCD40, LAIMN0_NLCD40, &
329 SNUP0_NLCD40, ALBF_NLCD40, &
333 / 175.0, 120.0, 175.0, 200.0, 200.0, &
334 200.0, 200.0, 150.0, 120.0, 100.0, &
335 200.0, 70.0, 150.0, 100.0, 9999.0, &
336 100.0, 9999.0, 175.0, 120.0, 100.0, &
337 9999.0, 9999.0, 120.0, 120.0, 140.0, &
338 160.0, 100.0, 200.0, 175.0, 200.0, &
339 200.0, 200.0, 100.0, 100.0, 100.0, &
340 100.0, 80.0, 70.0, 200.0, 120.0 /
343 / 100.0, 90.0, 100.0, 100.0, 100.0, &
344 15.0, 15.0, 25.0, 15.0, 7.0, &
345 20.0, 10.0, 80.0, 30.0, 1.2, &
346 5.0, 0.1, 30.0, 15.0, 10.0, &
347 0.10, 1.20, 30.0, 80.0, 120.0, &
348 200.0, 5.0, 100.0, 100.0, 100.0, &
349 10.0, 15.0, 7.0, 7.0, 5.0, &
350 5.0, 7.0, 10.0, 55.0, 11.0 /
353 / 93.0, 92.0, 60.0, 91.0, 92.0, &
354 40.0, 20.0, 70.0, 70.0, 50.0, &
355 65.0, 90.0, 5.0, 80.0, 0.1, &
356 0.5, 0.0, 70.0, 40.0, 20.0, &
357 0.0, 0.1, 25.0, 15.0, 5.0, &
358 1.0, 0.5, 91.0, 93.0, 92.0, &
359 15.0, 20.0, 50.0, 30.0, 20.0, &
360 20.0, 80.0, 90.0, 92.0, 50.0 /
363 / 93.0, 92.0, 60.0, 91.0, 92.0, &
364 20.0, 10.0, 60.0, 40.0, 20.0, &
365 35.0, 20.0, 5.0, 40.0, 0.1, &
366 0.5, 0.0, 50.0, 20.0, 5.0, &
367 0.0, 0.1, 25.0, 15.0, 5.0, &
368 1.0, 0.5, 91.0, 93.0, 92.0, &
369 10.0, 10.0, 20.0, 20.0, 20.0, &
370 20.0, 10.0, 10.0, 50.0, 30.0 /
373 / 5.5, 6.0, 3.0, 6.0, 5.5, &
374 1.5, 1.5, 2.3, 1.5, 1.5, &
375 2.5, 3.5, 2.0, 3.5, 0.1, &
376 0.2, 0.0, 3.4, 2.4, 1.4, &
377 0.0, 0.1, 5.5, 3.0, 2.5, &
378 2.5, 0.2, 6.0, 5.5, 5.5, &
379 1.0, 1.5, 2.0, 2.0, 1.0, &
380 1.0, 3.5, 4.0, 5.5, 3.0 /
383 / 3.5, 3.5, 1.5, 2.0, 2.5, &
384 1.0, 1.3, 2.0, 1.5, 1.5, &
385 2.0, 1.5, 1.5, 1.5, 0.1, &
386 0.1, 0.0, 2.0, 1.0, 0.1, &
387 0.0, 0.1, 1.7, 1.7, 1.7, &
388 2.0, 0.1, 2.0, 3.5, 2.5, &
389 1.0, 1.3, 1.5, 1.5, 1.0, &
390 1.0, 1.5, 1.5, 2.2, 2.0 /
393 / 0.08, 0.08, 0.08, 0.08, 0.08, &
394 0.03, 0.035, 0.03, 0.04, 0.04, &
395 0.08, 0.04, 0.04, 0.04, 0.02, &
396 0.02, 0.01, 0.80, 0.40, 0.015, &
397 0.01, 0.02, 0.04, 0.04, 0.04, &
398 0.04, 0.02, 0.08, 0.08, 0.08, &
399 0.04, 0.04, 0.04, 0.01, 0.01, &
400 0.01, 0.04, 0.04, 0.08, 0.04 /
403 / 12.0, 12.0, 14.0, 16.0, 13.0, &
404 22.0, 20.0, 22.0, 20.0, 19.0, &
405 17.0, 18.0, 11.0, 18.0, 60.0, &
406 25.0, 8.0, 15.0, 15.0, 25.0, &
407 8.0, 60.0, 12.0, 11.0, 10.0, &
408 10.0, 20.0, 15.0, 12.0, 13.0, &
409 20.0, 20.0, 19.0, 23.0, 20.0, &
410 20.0, 18.0, 18.0, 15.0, 18.0 /
413 / 30.0, 30.0, 30.0, 40.0, 35.0, &
414 50.0, 60.0, 50.0, 50.0, 70.0, &
415 50.0, 66.0, 46.0, 68.0, 82.0, &
416 75.0, 8.0, 45.0, 50.0, 75.0, &
417 8.0, 82.0, 60.0, 46.0, 43.0, &
418 40.0, 75.0, 40.0, 30.0, 35.0, &
419 65.0, 60.0, 70.0, 60.0, 60.0, &
420 60.0, 68.0, 66.0, 40.0, 50.0 /
422 !****************************************************************************************
423 !****************************************************************************************
424 ! USGS LU characterization
425 !---------------------------
426 ! Name Rstmin Zo Mxfr MnFr MxLA MnLA ALB SNOALB
427 ! 1 Urban 150. 50. 40. 20. 2.0 0.5 15 46. Urban or Built-up Land
428 ! 2 DrCrp 70. 10. 95. 15. 3.0 0.5 17 66. Dryland Cropland and Pasture
429 ! 3 IrCrp 60. 10. 95. 10. 3.0 0.5 18 66. Irrigated Cropland and Pasture
430 ! 4 MixCp 70. 10. 95. 15. 3.0 0.5 18 66. Mixed Dry/Irr Crop and Past
431 ! 5 CrGrM 80. 10. 95. 35. 2.5 1.0 18 70. Grassland/Cropland Mosaic
432 ! 6 CrWdM 180. 40. 95. 40. 4.0 1.5 16 50. Woodland/Cropland Mosaic
433 ! 7 GrsLd 100. 7. 95. 70. 2.5 1.0 19 70. Grassland
434 ! 8 ShrLd 200. 20. 70. 50. 3.0 1.0 22 50. Shrubland
435 ! 9 ShrGr 150. 20. 85. 60. 3.0 1.0 20 60. Mixed Shrubland/Grassland
436 ! 10 Savan 120. 20. 80. 60. 2.0 1.0 20 50. Savanna
437 ! 11 DBFst 200. 50. 95. 50. 5.0 1.0 16 40. Broadleaf Deciduous Forest
438 ! 12 DNFst 175. 50. 95. 50. 5.0 1.0 14 30. Deciduous Coniferous Forest
439 ! 13 EBFst 120. 40. 95. 85. 5.0 4.0 12 30. Evergreen Broadleaf Forest (Palm?)
440 ! 14 ENFst 175. 50. 90. 80. 4.0 3.0 12 30. Evergreen Coniferous Forest
441 ! 15 MxFst 200. 50. 95. 60. 5.0 2.0 13 35. Mixed forest
442 ! 16 Water 9999. 0.1 00. 00. 0.0 0.0 08 08. Water
443 ! 17 HWtld 164. 15. 60. 40. 2.0 1.0 14 50. Herbaceous Wetland (none in east)
444 ! 18 WWtld 200. 45. 90. 80. 5.0 3.0 14 40. Forested Wetlands (e.g. Everglades)
445 ! 19 BarSp 100. 5. 10. 05. 0.5 0.2 25 75. Barren or Sparsely Vegetated
446 ! 20 HrTun 150. 10. 20. 10. 1.0 0.5 15 55. Herbaceous Tundra
447 ! 21 WdTun 200. 10. 30. 10. 1.0 0.5 15 60. Shrub and Brush Tundra
448 ! 22 MxTun 150. 5. 20. 05. 1.0 0.5 15 60. Mixed Tundra
449 ! 23 BGTun 100. 5. 5. 02. 0.1 0.1 25 75. Bare Ground Tundra
450 ! 24 SnwIc 300. 5. 5. 02. 0.1 0.1 55 82. Perennial Snowfields or Glaciers
451 !-----------------------------------------------------------------------------
453 REAL, DIMENSION(24), TARGET :: RSMIN_USGS, Z00_USGS, &
454 VEG0_USGS, VEGMN0_USGS, &
455 LAI0_USGS, LAIMN0_USGS, &
456 SNUP0_USGS, ALBF_USGS, &
460 / 150.0, 70.0, 60.0, 70.0, 80.0, &
461 180.0, 100.0, 200.0, 150.0, 120.0, &
462 200.0, 175.0, 120.0, 175.0, 200.0, &
463 9999.0, 164.0, 200.0, 100.0, 150.0, &
464 200.0, 150.0, 100.0, 300.0 /
467 / 50.0, 10.0, 10.0, 10.0, 10.0, &
468 40.0, 7.0, 20.0, 20.0, 20.0, &
469 50.0, 50.0, 40.0, 50.0, 50.0, &
470 0.1, 15.0, 45.0, 5.0, 10.0, &
471 10.0, 5.0, 5.0, 5.0 /
474 / 40.0, 95.0, 95.0, 95.0, 95.0, &
475 95.0, 95.0, 70.0, 85.0, 80.0, &
476 95.0, 95.0, 95.0, 90.0, 95.0, &
477 0.00, 60.0, 90.0, 10.0, 20.0, &
478 30.0, 20.0, 5.0, 5.0 /
481 / 20.0, 15.0, 10.0, 15.0, 35.0, &
482 40.0, 70.0, 50.0, 60.0, 60.0, &
483 50.0, 50.0, 85.0, 80.0, 60.0, &
484 0.0, 40.0, 80.0, 5.0, 10.0, &
485 10.0, 5.0, 2.0, 2.0 /
488 / 2.0, 3.0, 3.0, 3.0, 2.5, &
489 4.0, 2.5, 3.0, 3.0, 2.0, &
490 5.0, 5.0, 5.0, 4.0, 5.0, &
491 0.0, 2.0, 5.0, 0.50, 1.0, &
495 / 0.50, 0.50, 0.50, 0.50, 1.0, &
496 1.5, 1.0, 1.0, 1.0, 1.0, &
497 1.0, 1.0, 4.0, 3.0, 2.0, &
498 0.0, 1.0, 3.0, 0.20, 0.50, &
499 0.50, 0.50, 0.10, 0.10 /
502 / 0.04, 0.04, 0.04, 0.04, 0.04, &
503 0.04, 0.04, 0.03, 0.035, 0.04, &
504 0.08, 0.08, 0.08, 0.08, 0.08, &
505 0.01, 0.01, 0.01, 0.02, 0.02, &
506 0.025, 0.025, 0.025, 0.02 /
509 / 15.0, 17.0, 18.0, 18.0, 18.0, &
510 16.0, 19.0, 22.0, 20.0, 20.0, &
511 16.0, 14.0, 12.0, 12.0, 13.0, &
512 8.0, 14.0, 14.0, 25.0, 15.0, &
513 15.0, 15.0, 25.0, 55.0 /
516 / 46.0, 66.0, 66.0, 66.0, 70.0, &
517 50.0, 70.0, 50.0, 60.0, 50.0, &
518 40.0, 40.0, 40.0, 30.0, 35.0, &
519 8.0, 50.0, 40.0, 75.0, 55.0, &
520 60.0, 60.0, 75.0, 82.0 /
522 !****************************************************************************************
523 !****************************************************************************************
524 !****************************************************************************************
525 ! USGS LU characterization
526 !---------------------------
527 ! Name Rstmin Zo Mxfr MnFr MxLA MnLA ALB SNOALB
528 ! 1 Urban 150. 50. 40. 20. 2.0 0.5 15 46. Urban or Built-up Land
529 ! 2 DrCrp 70. 10. 95. 15. 3.0 0.5 17 66. Dryland Cropland and Pasture
530 ! 3 IrCrp 60. 10. 95. 10. 3.0 0.5 18 66. Irrigated Cropland and Pasture
531 ! 4 MixCp 70. 10. 95. 15. 3.0 0.5 18 66. Mixed Dry/Irr Crop and Past
532 ! 5 CrGrM 80. 10. 95. 35. 2.5 1.0 18 70. Grassland/Cropland Mosaic
533 ! 6 CrWdM 180. 40. 95. 40. 4.0 1.5 16 50. Woodland/Cropland Mosaic
534 ! 7 GrsLd 100. 7. 95. 70. 2.5 1.0 19 70. Grassland
535 ! 8 ShrLd 200. 20. 70. 50. 3.0 1.0 22 50. Shrubland
536 ! 9 ShrGr 150. 20. 85. 60. 3.0 1.0 20 60. Mixed Shrubland/Grassland
537 ! 10 Savan 120. 20. 80. 60. 2.0 1.0 20 50. Savanna
538 ! 11 DBFst 200. 50. 95. 50. 5.0 1.0 16 40. Broadleaf Deciduous Forest
539 ! 12 DNFst 175. 50. 95. 50. 5.0 1.0 14 30. Deciduous Coniferous Forest
540 ! 13 EBFst 120. 40. 95. 85. 5.0 4.0 12 30. Evergreen Broadleaf Forest (Palm?)
541 ! 14 ENFst 175. 50. 90. 80. 4.0 3.0 12 30. Evergreen Coniferous Forest
542 ! 15 MxFst 200. 50. 95. 60. 5.0 2.0 13 35. Mixed forest
543 ! 16 Water 9999. 0.1 00. 00. 0.0 0.0 08 08. Water
544 ! 17 HWtld 164. 15. 60. 40. 2.0 1.0 14 50. Herbaceous Wetland (none in east)
545 ! 18 WWtld 200. 45. 90. 80. 5.0 3.0 14 40. Forested Wetlands (e.g. Everglades)
546 ! 19 BarSp 100. 5. 10. 05. 0.5 0.2 25 75. Barren or Sparsely Vegetated
547 ! 20 HrTun 150. 10. 20. 10. 1.0 0.5 15 55. Herbaceous Tundra
548 ! 21 WdTun 200. 10. 30. 10. 1.0 0.5 15 60. Shrub and Brush Tundra
549 ! 22 MxTun 150. 5. 20. 05. 1.0 0.5 15 60. Mixed Tundra
550 ! 23 BGTun 100. 5. 5. 02. 0.1 0.1 25 75. Bare Ground Tundra
551 ! 24 SnwIc 300. 5. 5. 02. 0.1 0.1 55 82. Perennial Snowfields or Glaciers
552 ! 25 playa 100. 5. 10. 05. 0.5 0.2 25 75. Playa
553 ! 26 lava 100. 5. 10. 05. 0.5 0.2 25 75. Lava
554 ! 27 sand 100. 5. 10. 05. 0.5 0.2 25 75. White Sand
555 ! 28 nana 100. 5. 10. 05. 0.5 0.2 25 75. Unassigned
556 !-----------------------------------------------------------------------------
558 REAL, DIMENSION(28), TARGET :: RSMIN_USGS28, Z00_USGS28, &
559 VEG0_USGS28, VEGMN0_USGS28, &
560 LAI0_USGS28, LAIMN0_USGS28, &
561 SNUP0_USGS28, ALBF_USGS28, &
565 / 150.0, 70.0, 60.0, 70.0, 80.0, &
566 180.0, 100.0, 200.0, 150.0, 120.0, &
567 200.0, 175.0, 120.0, 175.0, 200.0, &
568 9999.0, 164.0, 200.0, 100.0, 150.0, &
569 200.0, 150.0, 100.0, 300.0, 100.0, &
570 100.0, 100.0, 100.0 /
573 / 50.0, 10.0, 10.0, 10.0, 10.0, &
574 40.0, 7.0, 20.0, 20.0, 20.0, &
575 50.0, 50.0, 40.0, 50.0, 50.0, &
576 0.1, 15.0, 45.0, 5.0, 10.0, &
577 10.0, 5.0, 5.0, 5.0, 5.0, &
581 / 40.0, 95.0, 95.0, 95.0, 95.0, &
582 95.0, 95.0, 70.0, 85.0, 80.0, &
583 95.0, 95.0, 95.0, 90.0, 95.0, &
584 0.00, 60.0, 90.0, 10.0, 20.0, &
585 30.0, 20.0, 5.0, 5.0, 5.0, &
589 / 20.0, 15.0, 10.0, 15.0, 35.0, &
590 40.0, 70.0, 50.0, 60.0, 60.0, &
591 50.0, 50.0, 85.0, 80.0, 60.0, &
592 0.0, 40.0, 80.0, 5.0, 10.0, &
593 10.0, 5.0, 2.0, 2.0, 2.0, &
597 / 2.0, 3.0, 3.0, 3.0, 2.5, &
598 4.0, 2.5, 3.0, 3.0, 2.0, &
599 5.0, 5.0, 5.0, 4.0, 5.0, &
600 0.0, 2.0, 5.0, 0.50, 1.0, &
601 1.0, 1.0, 0.1, 0.1, 0.1, &
605 / 0.50, 0.50, 0.50, 0.50, 1.0, &
606 1.5, 1.0, 1.0, 1.0, 1.0, &
607 1.0, 1.0, 4.0, 3.0, 2.0, &
608 0.0, 1.0, 3.0, 0.20, 0.50, &
609 0.50, 0.50, 0.10, 0.10, 0.10, &
613 / 0.04, 0.04, 0.04, 0.04, 0.04, &
614 0.04, 0.04, 0.03, 0.035, 0.04, &
615 0.08, 0.08, 0.08, 0.08, 0.08, &
616 0.01, 0.01, 0.01, 0.02, 0.02, &
617 0.025, 0.025, 0.025, 0.02, 0.02, &
621 / 15.0, 17.0, 18.0, 18.0, 18.0, &
622 16.0, 19.0, 22.0, 20.0, 20.0, &
623 16.0, 14.0, 12.0, 12.0, 13.0, &
624 8.0, 14.0, 14.0, 25.0, 15.0, &
625 15.0, 15.0, 25.0, 55.0, 25.0, &
629 / 46.0, 66.0, 66.0, 66.0, 70.0, &
630 50.0, 70.0, 50.0, 60.0, 50.0, &
631 40.0, 40.0, 40.0, 30.0, 35.0, &
632 8.0, 50.0, 40.0, 75.0, 55.0, &
633 60.0, 60.0, 75.0, 82.0, 75.0, &
636 !****************************************************************************************
637 !****************************************************************************************
639 END MODULE module_sf_pxlsm_data