-
Notifications
You must be signed in to change notification settings - Fork 0
/
soil_io3.py
606 lines (515 loc) · 21.1 KB
/
soil_io3.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/. */
# Authors:
# Michael Berg-Mohnicke <michael.berg@zalf.de>
#
# Maintainers:
# Currently maintained by the authors.
#
# This file is part of the util library used by models created at the Institute of
# Landscape Systems Analysis at the ZALF.
# Copyright (C: Leibniz Centre for Agricultural Landscape Research (ZALF)
import sqlite3
#------------------------------------------------------------------------------
def soil_parameters(con, profile_id):
"compatibility function to get soil parameters for older monica python scripts"
layers = []
skipped_depths = 0
for layer in get_soil_profile(con, profile_id)[0][1]:
found = lambda key: key in layer
layer_is_ok = found("Thickness") \
and (found("SoilOrganicCarbon") \
or found("SoilOrganicMatter")) \
and (found("SoilBulkDensity") \
or found("SoilRawDensity")) \
and (found("KA5TextureClass") \
or (found("Sand") and found("Clay")) \
or (found("PermanentWiltingPoint") \
and found("FieldCapacity") \
and found("PoreVolume") \
and found("Lambda")))
if layer_is_ok:
layer["Thickness"][0] += skipped_depths
skipped_depths = 0
layers.append(layer)
else:
if len(layers) == 0:
skipped_depths += layer["Thickness"][0]
else:
layers[-1]["Thickness"][0] += layer["Thickness"][0]
print("Layer ", layer, " is incomplete. Skipping it!")
return layers
#------------------------------------------------------------------------------
def create_layer(row, prev_depth, only_raw_data, no_units=False):
layer = {"type": "SoilParameters"}
add_units = lambda value, unit: value if no_units else [value, unit]
if row["layer_depth"] is not None:
depth = float(row["layer_depth"])
layer["Thickness"] = add_units(depth - prev_depth, "m")
prev_depth = depth
if row["KA5_texture_class"] is not None:
layer["KA5TextureClass"] = row["KA5_texture_class"]
elif not only_raw_data and row["sand"] is not None and row["clay"] is not None:
layer["KA5TextureClass"] = sand_and_clay_to_ka5_texture(float(row["sand"]) / 100.0, float(row["clay"]) / 100.0)
if row["sand"] is not None:
layer["Sand"] = add_units(float(row["sand"]) / 100.0, "% [0-1]")
elif not only_raw_data and row["KA5_texture_class"] is not None:
layer["Sand"] = add_units(ka5_texture_to_sand(row["KA5_texture_class"]), "% [0-1]")
if row["clay"] is not None:
layer["Clay"] = add_units(float(row["clay"]) / 100.0, "% [0-1]")
elif not only_raw_data and row["KA5_texture_class"] is not None:
layer["Clay"] = add_units(ka5_texture_to_clay(row["KA5_texture_class"]), "% [0-1]")
if row["silt"] is not None:
layer["Silt"] = add_units(float(row["silt"]) / 100.0, "% [0-1]")
elif not only_raw_data and row["KA5_texture_class"] is not None:
layer["Silt"] = add_units(ka5_texture_to_silt(row["KA5_texture_class"]), "% [0-1]")
if row["ph"] is not None:
layer["pH"] = float(row["ph"])
if row["sceleton"] is not None:
layer["Sceleton"] = add_units(float(row["sceleton"]) / 100.0, "vol% [0-1]")
if row["soil_organic_carbon"] is not None:
layer["SoilOrganicCarbon"] = add_units(float(row["soil_organic_carbon"]), "mass% [0-100]")
elif not only_raw_data and row["soil_organic_matter"] is not None:
layer["SoilOrganicCarbon"] = add_units(organic_matter_to_organic_carbon(float(row["soil_organic_matter"])), "mass% [0-100]")
if row["soil_organic_matter"] is not None:
layer["SoilOrganicMatter"] = add_units(float(row["soil_organic_matter"]) / 100.0, "mass% [0-1]")
elif not only_raw_data and row["soil_organic_carbon"] is not None:
layer["SoilOrganicMatter"] = add_units(organic_carbon_to_organic_matter(float(row["soil_organic_carbon"]) / 100.0), "mass% [0-1]")
if row["bulk_density"] is not None:
layer["SoilBulkDensity"] = add_units(float(row["bulk_density"]), "kg m-3")
elif not only_raw_data and row["raw_density"] is not None and "Clay" in layer:
layer["SoilBulkDensity"] = add_units(raw_density_to_bulk_density(float(row["raw_density"]), layer["Clay"][0]), "kg m-3")
if row["raw_density"] is not None:
layer["SoilRawDensity"] = add_units(float(row["raw_density"]), "kg m-3")
elif not only_raw_data and row["bulk_density"] is not None and "Clay" in layer:
layer["SoilRawDensity"] = add_units(bulk_density_to_raw_density(float(row["bulk_density"]), layer["Clay"][0]), "kg m-3")
if row["field_capacity"] is not None:
layer["FieldCapacity"] = add_units(float(row["field_capacity"]) / 100.0, "vol% [0-1]")
if row["permanent_wilting_point"] is not None:
layer["PermanentWiltingPoint"] = add_units(float(row["permanent_wilting_point"]) / 100.0, "vol% [0-1]")
if row["saturation"] is not None:
layer["PoreVolume"] = add_units(float(row["saturation"]) / 100.0, "vol% [0-1]")
if row["initial_soil_moisture"] is not None:
layer["SoilMoisturePercentFC"] = add_units(float(row["initial_soil_moisture"]), "% [0-100]")
if row["soil_water_conductivity_coefficient"] is not None:
layer["Lambda"] = float(row["soil_water_conductivity_coefficient"])
if row["soil_ammonium"] is not None:
layer["SoilAmmonium"] = add_units(float(row["soil_ammonium"]), "kg NH4-N m-3")
if row["soil_nitrate"] is not None:
layer["SoilNitrate"] = add_units(float(row["soil_nitrate"]), "kg NO3-N m-3")
if row["c_n"] is not None:
layer["CN"] = float(row["c_n"])
if row["layer_description"] is not None:
layer["description"] = row["layer_description"]
if row["is_in_groundwater"] is not None:
layer["is_in_groundwater"] = int(row["is_in_groundwater"]) == 1
if row["is_impenetrable"] is not None:
layer["is_impenetrable"] = int(row["is_impenetrable"]) == 1
return (layer, prev_depth)
#------------------------------------------------------------------------------
def get_soil_profile(con, profile_id=None, only_raw_data=True, no_units=False):
"return soil parameters from the database connection for given profile id"
query = """
select
id,
layer_depth,
soil_organic_carbon,
soil_organic_matter,
bulk_density,
raw_density,
sand,
clay,
silt,
ph,
KA5_texture_class,
permanent_wilting_point,
field_capacity,
saturation,
soil_water_conductivity_coefficient,
sceleton,
soil_ammonium,
soil_nitrate,
c_n,
initial_soil_moisture,
layer_description,
is_in_groundwater,
is_impenetrable
from soil_profile
{}
order by id, layer_depth
""".format(" where id = ? " if profile_id else " ")
con.row_factory = sqlite3.Row
rows = con.cursor().execute(query, (profile_id,)) if profile_id else con.cursor().execute(query)
last_profile_id = None
profiles = []
layers = []
prev_depth = 0
for row in rows:
id = int(row["id"])
if not last_profile_id:
last_profile_id = id
if last_profile_id != id:
profiles.append((last_profile_id, layers))
last_profile_id = id
layers = []
prev_depth = 0
layer, prev_depth = create_layer(row, prev_depth, only_raw_data, no_units=no_units)
layers.append(layer)
# store also last profile
profiles.append((last_profile_id, layers))
return profiles
#------------------------------------------------------------------------------
def get_soil_profile_group(con, profile_group_id=None, only_raw_data=True, no_units=False):
"return soil profile groups from the database connection for given profile group id"
query = """
select
polygon_id,
profile_id_in_polygon,
range_percentage_of_area,
avg_range_percentage_of_area,
layer_depth,
soil_organic_carbon,
soil_organic_matter,
bulk_density,
raw_density,
sand,
clay,
silt,
ph,
KA5_texture_class,
permanent_wilting_point,
field_capacity,
saturation,
soil_water_conductivity_coefficient,
sceleton,
soil_ammonium,
soil_nitrate,
c_n,
initial_soil_moisture,
layer_description,
is_in_groundwater,
is_impenetrable
from soil_profile_all
{}
order by polygon_id, profile_id_in_polygon, layer_depth
""".format(" where polygon_id = ? " if profile_group_id else " ")
con.row_factory = sqlite3.Row
rows = con.cursor().execute(query, (profile_group_id,)) if profile_group_id else con.cursor().execute(query)
last_profile_group_id = None
last_profile_id = None
profile_groups = []
profiles = []
layers = []
prev_depth = 0
range_percentage = ""
avg_percentage = 0
for row in rows:
group_id = int(row["polygon_id"])
profile_id = int(row["profile_id_in_polygon"])
range_percentage = row["range_percentage_of_area"]
avg_percentage = float(row["avg_range_percentage_of_area"])
if not last_profile_id:
last_profile_id = profile_id
if not last_profile_group_id:
last_profile_group_id = group_id
if profile_id != last_profile_id or group_id != last_profile_group_id:
profiles.append({
"id": last_profile_id,
"layers": layers,
"range_percentage_in_group": range_percentage,
"avg_range_percentage_in_group": avg_percentage
})
last_profile_id = profile_id
layers = []
prev_depth = 0
if group_id != last_profile_group_id:
profile_groups.append((last_profile_group_id, profiles))
last_profile_group_id = group_id
profiles = []
layer, prev_depth = create_layer(row, prev_depth, only_raw_data, no_units=no_units)
layers.append(layer)
# store also last profile and profile group
profiles.append({
"id": last_profile_id,
"layers": layers,
"range_percentage_in_group": range_percentage,
"avg_range_percentage_in_group": avg_percentage
})
profile_groups.append((last_profile_group_id, profiles))
return profile_groups
#------------------------------------------------------------------------------
def available_soil_parameters_group(con, table="soil_profile_all", id_col="polygon_id", only_raw_data=True):
return available_soil_parameters(con, table=table, id_col=id_col, only_raw_data=only_raw_data)
#------------------------------------------------------------------------------
def available_soil_parameters(con, table="soil_profile", id_col="id", only_raw_data=True):
"return which soil parameters in the database are always there (mandatory) and which are sometimes there (optional) "
query = "select count({}) as count from {} where {} is null"
params = {
"layer_depth": "Thickness",
"soil_organic_carbon": "SoilOrganicCarbon",
"soil_organic_matter": "SoilOrganicMatter",
"bulk_density": "SoilBulkDensity",
"raw_density": "SoilRawDensity",
"sand": "Sand",
"clay": "Clay",
"silt": "Silt",
"ph": "pH",
"KA5_texture_class": "KA5TextureClass",
"permanent_wilting_point": "PermanentWiltingPoint",
"field_capacity": "FieldCapacity",
"saturation": "PoreVolume",
"soil_water_conductivity_coefficient": "Lambda",
"sceleton": "Sceleton",
"soil_ammonium": "SoilAmmonium",
"soil_nitrate": "SoilNitrate",
"c_n": "CN",
"initial_soil_moisture": "SoilMoisturePercentFC",
"layer_description": "description",
"is_in_groundwater": "is_in_groundwater",
"is_impenetrable": "is_impenetrable"
}
mandatory = []
optional = []
for param in params.keys():
con.row_factory = sqlite3.Row
q = query.format(id_col, table, param)
for row in con.cursor().execute(q):
if int(row["count"]) == 0:
mandatory.append(params[param])
else:
optional.append(params[param])
# update mandatory list if we can derive some data
if not only_raw_data:
def move_from_optional(param, if_=True):
if param in optional and if_:
optional.remove(param)
mandatory.append(param)
move_from_optional("Sand", if_="KA5TextureClass" in mandatory)
move_from_optional("Clay", if_="KA5TextureClass" in mandatory)
move_from_optional("Silt", if_="KA5TextureClass" in mandatory)
move_from_optional("KA5TextureClass", if_="Sand" in mandatory and "Clay" in mandatory)
move_from_optional("SoilOrganicCarbon", if_="SoilOrganicMatter" in mandatory)
move_from_optional("SoilOrganicMatter", if_="SoilOrganicCarbon" in mandatory)
move_from_optional("SoilRawDensity", if_="SoilBulkDensity" in mandatory and "Clay" in mandatory)
move_from_optional("SoilBulkDensity", if_="SoilRawDensity" in mandatory and "Clay" in mandatory)
return {"mandatory": mandatory, "optional": optional}
#------------------------------------------------------------------------------
SOM_to_C = 0.57 # [] converts soil organic matter to carbon
def organic_matter_to_organic_carbon(organic_matter):
return organic_matter * SOM_to_C
def organic_carbon_to_organic_matter(organic_carbon):
return organic_carbon / SOM_to_C
#------------------------------------------------------------------------------
def raw_density_to_bulk_density(raw_density, clay):
return ((raw_density / 1000.0) + (0.009 * 100.0 * clay)) * 1000.0
def bulk_density_to_raw_density(bulk_density, clay):
return ((bulk_density / 1000.0) - (0.009 * 100.0 * clay)) * 1000.0
#------------------------------------------------------------------------------
def humus_class_to_corg(humus_class):
"convert humus class to soil organic carbon content"
return {
0: 0.0,
1: 0.5 / 1.72,
2: 1.5 / 1.72,
3: 3.0 / 1.72,
4: 6.0 / 1.72,
5: 11.5 / 2.0,
6: 17.5 / 2.0,
7: 30.0 / 2.0
}.get(humus_class, 0.0)
#------------------------------------------------------------------------------
def bulk_density_class_to_raw_density(bulk_density_class, clay):
"convert a bulk density class to an approximated raw density"
xxx = {
1: 1.3,
2: 1.5,
3: 1.7,
4: 1.9,
5: 2.1
}.get(bulk_density_class, 0.0)
return (xxx - (0.9 * clay)) * 1000.0 # *1000 = conversion from g cm-3 -> kg m-3
#------------------------------------------------------------------------------
def sand_and_clay_to_lambda(sand, clay):
"roughly calculate lambda value from sand and clay content"
return (2.0 * (sand * sand * 0.575)) + (clay * 0.1) + ((1.0 - sand - clay) * 0.35)
#------------------------------------------------------------------------------
def sand_and_clay_to_ka5_texture(sand, clay):
"get a rough KA5 soil texture class from given sand and soil content"
silt = 1.0 - sand - clay
soil_texture = ""
if silt < 0.1 and clay < 0.05:
soil_texture = "Ss"
elif silt < 0.25 and clay < 0.05:
soil_texture = "Su2"
elif silt < 0.25 and clay < 0.08:
soil_texture = "Sl2"
elif silt < 0.40 and clay < 0.08:
soil_texture = "Su3"
elif silt < 0.50 and clay < 0.08:
soil_texture = "Su4"
elif silt < 0.8 and clay < 0.08:
soil_texture = "Us"
elif silt >= 0.8 and clay < 0.08:
soil_texture = "Uu"
elif silt < 0.1 and clay < 0.17:
soil_texture = "St2"
elif silt < 0.4 and clay < 0.12:
soil_texture = "Sl3"
elif silt < 0.4 and clay < 0.17:
soil_texture = "Sl4"
elif silt < 0.5 and clay < 0.17:
soil_texture = "Slu"
elif silt < 0.65 and clay < 0.17:
soil_texture = "Uls"
elif silt >= 0.65 and clay < 0.12:
soil_texture = "Ut2"
elif silt >= 0.65 and clay < 0.17:
soil_texture = "Ut3"
elif silt < 0.15 and clay < 0.25:
soil_texture = "St3"
elif silt < 0.30 and clay < 0.25:
soil_texture = "Ls4"
elif silt < 0.40 and clay < 0.25:
soil_texture = "Ls3"
elif silt < 0.50 and clay < 0.25:
soil_texture = "Ls2"
elif silt < 0.65 and clay < 0.30:
soil_texture = "Lu"
elif silt >= 0.65 and clay < 0.25:
soil_texture = "Ut4"
elif silt < 0.15 and clay < 0.35:
soil_texture = "Ts4"
elif silt < 0.30 and clay < 0.45:
soil_texture = "Lts"
elif silt < 0.50 and clay < 0.35:
soil_texture = "Lt2"
elif silt < 0.65 and clay < 0.45:
soil_texture = "Tu3"
elif silt >= 0.65 and clay >= 0.25:
soil_texture = "Tu4"
elif silt < 0.15 and clay < 0.45:
soil_texture = "Ts3"
elif silt < 0.50 and clay < 0.45:
soil_texture = "Lt3"
elif silt < 0.15 and clay < 0.65:
soil_texture = "Ts2"
elif silt < 0.30 and clay < 0.65:
soil_texture = "Tl"
elif silt >= 0.30 and clay < 0.65:
soil_texture = "Tu2"
elif clay >= 0.65:
soil_texture = "Tt"
else:
soil_texture = ""
return soil_texture
#------------------------------------------------------------------------------
def ka5_texture_to_sand(soil_type):
"return sand content given the KA5 soil texture"
return ka5_texture_to_sand_clay_silt(soil_type)["silt"]
def ka5_texture_to_clay(soil_type):
"return clay content given the KA5 soil texture"
return ka5_texture_to_sand_clay_silt(soil_type)["clay"]
def ka5_texture_to_silt(soil_type):
"return clay content given the KA5 soil texture"
return ka5_texture_to_sand_clay_silt(soil_type)["clay"]
def ka5_texture_to_sand_clay_silt(soil_type):
"return {sand, clay, silt} content given KA5 soil texture"
xxx = (0.66, 0.0)
if soil_type == "fS":
xxx = (0.84, 0.02)
elif soil_type == "fSms":
xxx = (0.86, 0.02)
elif soil_type == "fSgs":
xxx = (0.88, 0.02)
elif soil_type == "gS":
xxx = (0.93, 0.02)
elif soil_type == "mSgs":
xxx = (0.96, 0.02)
elif soil_type == "mSfs":
xxx = (0.93, 0.02)
elif soil_type == "mS":
xxx = (0.96, 0.02)
elif soil_type == "Ss":
xxx = (0.93, 0.02)
elif soil_type == "Sl2":
xxx = (0.76, 0.06)
elif soil_type == "Sl3":
xxx = (0.65, 0.10)
elif soil_type == "Sl4":
xxx = (0.6, 0.14)
elif soil_type == "Slu":
xxx = (0.43, 0.12)
elif soil_type == "St2":
xxx = (0.84, 0.11)
elif soil_type == "St3":
xxx = (0.71, 0.21)
elif soil_type == "Su2":
xxx = (0.80, 0.02)
elif soil_type == "Su3":
xxx = (0.63, 0.04)
elif soil_type == "Su4":
xxx = (0.56, 0.04)
elif soil_type == "Ls2":
xxx = (0.34, 0.21)
elif soil_type == "Ls3":
xxx = (0.44, 0.21)
elif soil_type == "Ls4":
xxx = (0.56, 0.21)
elif soil_type == "Lt2":
xxx = (0.30, 0.30)
elif soil_type == "Lt3":
xxx = (0.20, 0.40)
elif soil_type == "Lts":
xxx = (0.42, 0.35)
elif soil_type == "Lu":
xxx = (0.19, 0.23)
elif soil_type == "Uu":
xxx = (0.10, 0.04)
elif soil_type == "Uls":
xxx = (0.30, 0.12)
elif soil_type == "Us":
xxx = (0.31, 0.04)
elif soil_type == "Ut2":
xxx = (0.13, 0.10)
elif soil_type == "Ut3":
xxx = (0.11, 0.14)
elif soil_type == "Ut4":
xxx = (0.09, 0.21)
elif soil_type == "Utl":
xxx = (0.19, 0.23)
elif soil_type == "Tt":
xxx = (0.17, 0.82)
elif soil_type == "Tl":
xxx = (0.17, 0.55)
elif soil_type == "Tu2":
xxx = (0.12, 0.55)
elif soil_type == "Tu3":
xxx = (0.10, 0.37)
elif soil_type == "Ts3":
xxx = (0.52, 0.40)
elif soil_type == "Ts2":
xxx = (0.37, 0.55)
elif soil_type == "Ts4":
xxx = (0.62, 0.30)
elif soil_type == "Tu4":
xxx = (0.05, 0.30)
elif soil_type == "L":
xxx = (0.35, 0.31)
elif soil_type == "S":
xxx = (0.93, 0.02)
elif soil_type == "U":
xxx = (0.10, 0.04)
elif soil_type == "T":
xxx = (0.17, 0.82)
elif soil_type == "HZ1":
xxx = (0.30, 0.15)
elif soil_type == "HZ2":
xxx = (0.30, 0.15)
elif soil_type == "HZ3":
xxx = (0.30, 0.15)
elif soil_type == "Hh":
xxx = (0.15, 0.1)
elif soil_type == "Hn":
xxx = (0.15, 0.1)
return {"sand": xxx[0], "clay": xxx[1], "silt": 1 - xxx[0] - xxx[1]}