-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathNCSS_Analyte.txt
2050 lines (2050 loc) · 476 KB
/
NCSS_Analyte.txt
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
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"analyte_key","analyte_type","analyte_name","analyte_abbrev","analyte_code","analyte_data_type","analyte_format","uom_abbrev","analyte_source_type","analyte_agg_method","analyte_algorithm","analyte_desc","analyte_size_frac_base"
2067,"derived_analyte","Ratio, Effective CEC to Clay, <2mm, CECd-Set 31","ecec_cly_cecd31","ececcl_d-37_S","F","4.2","(NA)","layer",,"(ecec_cec / clay_tot_psa)","The ECEC / total clay ratio is calculated by ECEC_CEC/CLAY_TOT. It is reported on a <2 mm base.","<2 mm"
2066,"derived_analyte","Ratio, Effective CEC to Clay, <2mm, CECd-Set 30","ecec_cly_cecd30","ececcl_d-36_S","F","4.2","(NA)","layer",,"(ecec_cec / clay_tot_psa)","The ECEC / total clay ratio is calculated by ECEC_CEC/CLAY_TOT. It is reported on a <2 mm base.","<2 mm"
2065,"derived_analyte","Ratio, Effective CEC to Clay, <2mm, CECd-Set 29","ecec_cly_cecd29","ececcl_d-35_S","F","4.2","(NA)","layer",,"(ecec_cec / clay_tot_psa)","The ECEC / total clay ratio is calculated by ECEC_CEC/CLAY_TOT. It is reported on a <2 mm base.","<2 mm"
2064,"derived_analyte","Ratio, Effective CEC to Clay, <2mm, CECd-Set 28","ecec_cly_cecd28","ececcl_d-34_S","F","4.2","(NA)","layer",,"(ecec_cec / clay_tot_psa)","The ECEC / total clay ratio is calculated by ECEC_CEC/CLAY_TOT. It is reported on a <2 mm base.","<2 mm"
2063,"derived_analyte","Ratio, Effective CEC to Clay, <2mm, CECd-Set 27","ecec_cly_cecd27","ececcl_d-33_S","F","4.2","(NA)","layer",,"(ecec_cec / clay_tot_psa)","The ECEC / total clay ratio is calculated by ECEC_CEC/CLAY_TOT. It is reported on a <2 mm base.","<2 mm"
2062,"derived_analyte","Ratio, Effective CEC to Clay, <2mm, CECd-Set 26","ecec_cly_cecd26","ececcl_d-32_S","F","4.2","(NA)","layer",,"(ecec_cec / clay_tot_psa)","The ECEC / total clay ratio is calculated by ECEC_CEC/CLAY_TOT. It is reported on a <2 mm base.","<2 mm"
2061,"derived_analyte","Ratio, Effective CEC to Clay, <2mm, CECd-Set 25","ecec_cly_cecd25","ececcl_d-31_S","F","4.2","(NA)","layer",,"(ecec_cec / clay_tot_psa)","The ECEC / total clay ratio is calculated by ECEC_CEC/CLAY_TOT. It is reported on a <2 mm base.","<2 mm"
2060,"derived_analyte","Ratio, Effective CEC to Clay, <2mm, CECd-Set 24","ecec_cly_cecd24","ececcl_d-30_S","F","4.2","(NA)","layer",,"(ecec_cec / clay_tot_psa)","The ECEC / total clay ratio is calculated by ECEC_CEC/CLAY_TOT. It is reported on a <2 mm base.","<2 mm"
2059,"derived_analyte","Ratio, Effective CEC to Clay, <2mm, CECd-Set 23","ecec_cly_cecd23","ececcl_d-29_S","F","4.2","(NA)","layer",,"(ecec_cec / clay_tot_psa)","The ECEC / total clay ratio is calculated by ECEC_CEC/CLAY_TOT. It is reported on a <2 mm base.","<2 mm"
2058,"derived_analyte","Ratio, Effective CEC to Clay, <2mm, CECd-Set 22","ecec_cly_cecd22","ececcl_d-28_S","F","4.2","(NA)","layer",,"(ecec_cec / clay_tot_psa)","The ECEC / total clay ratio is calculated by ECEC_CEC/CLAY_TOT. It is reported on a <2 mm base.","<2 mm"
2057,"derived_analyte","Ratio, Effective CEC to Clay, <2mm, CECd-Set 21","ecec_cly_cecd21","ececcl_d-27_S","F","4.2","(NA)","layer",,"(ecec_cec / clay_tot_psa)","The ECEC / total clay ratio is calculated by ECEC_CEC/CLAY_TOT. It is reported on a <2 mm base.","<2 mm"
2056,"derived_analyte","Ratio, Effective CEC to Clay, <2mm, CECd-Set 20","ecec_cly_cecd20","ececcl_d-26_S","F","4.2","(NA)","layer",,"(ecec_cec / clay_tot_psa)","The ECEC / total clay ratio is calculated by ECEC_CEC/CLAY_TOT. It is reported on a <2 mm base.","<2 mm"
2055,"derived_analyte","Ratio, Effective CEC to Clay, <2mm, CECd-Set 19","ecec_cly_cecd19","ececcl_d-25_S","F","4.2","(NA)","layer",,"(ecec_cec / clay_tot_psa)","The ECEC / total clay ratio is calculated by ECEC_CEC/CLAY_TOT. It is reported on a <2 mm base.","<2 mm"
1957,"derived_analyte","AlplushalfFe times 60.0 plus Glass, S prep, Inst Set 1","alfe60_glass","alfe60gc_d-1_S","I","3.0","%","layer",,"to be added","Al plus 1/2 Fe from Oxalate times 60.0 plus weighted average of glass minerals in the .02 to 2 mm particle size fraction, based on particle size distribution percentages.","0.02-2 mm"
1956,"derived_analyte","AlplushalfFe times 15.625 plus Glass, M prep, Inst Set 4","alfe15_glass","alfe15gc_d-4_M","I","3.0","%","layer",,"to be added","Al plus 1/2 Fe from Oxalate times 15.625 plus weighted average of glass minerals in the .02 to 2 mm particle size fraction, based on particle size distribution percentages.","0.02-2 mm"
1955,"derived_analyte","AlplushalfFe times 15.625 plus Glass, M prep, Inst Set 3","alfe15_glass","alfe15gc_d-3_M","I","3.0","%","layer",,"to be added","Al plus 1/2 Fe from Oxalate times 15.625 plus weighted average of glass minerals in the .02 to 2 mm particle size fraction, based on particle size distribution percentages.","0.02-2 mm"
1954,"derived_analyte","AlplushalfFe times 15.625 plus Glass, M prep, Inst Set 2","alfe15_glass","alfe15gc_d-2_M","I","3.0","%","layer",,"to be added","Al plus 1/2 Fe from Oxalate times 15.625 plus weighted average of glass minerals in the .02 to 2 mm particle size fraction, based on particle size distribution percentages.","0.02-2 mm"
1953,"derived_analyte","AlplushalfFe times 15.625 plus Glass, M prep, Inst Set 1","alfe15_glass","alfe15gc_d-1_M","I","3.0","%","layer",,"to be added","Al plus 1/2 Fe from Oxalate times 15.625 plus weighted average of glass minerals in the .02 to 2 mm particle size fraction, based on particle size distribution percentages.","0.02-2 mm"
1952,"derived_analyte","AlplushalfFe times 15.625 plus Glass, GP prep, Inst Set 4","alfe15_glass","alfe15gc_d-4_GP","I","3.0","%","layer",,"to be added","Al plus 1/2 Fe from Oxalate times 15.625 plus weighted average of glass minerals in the .02 to 2 mm particle size fraction, based on particle size distribution percentages.","0.02-2 mm"
1951,"derived_analyte","AlplushalfFe times 15.625 plus Glass, GP prep, Inst Set 3","alfe15_glass","alfe15gc_d-3_GP","I","3.0","%","layer",,"to be added","Al plus 1/2 Fe from Oxalate times 15.625 plus weighted average of glass minerals in the .02 to 2 mm particle size fraction, based on particle size distribution percentages.","0.02-2 mm"
1950,"derived_analyte","AlplushalfFe times 15.625 plus Glass, GP prep, Inst Set 2","alfe15_glass","alfe15gc_d-2_GP","I","3.0","%","layer",,"to be added","Al plus 1/2 Fe from Oxalate times 15.625 plus weighted average of glass minerals in the .02 to 2 mm particle size fraction, based on particle size distribution percentages.","0.02-2 mm"
1949,"derived_analyte","AlplushalfFe times 15.625 plus Glass, GP prep, Inst Set 1","alfe15_glass","alfe15gc_d-1_GP","I","3.0","%","layer",,"to be added","Al plus 1/2 Fe from Oxalate times 15.625 plus weighted average of glass minerals in the .02 to 2 mm particle size fraction, based on particle size distribution percentages.","0.02-2 mm"
1948,"derived_analyte","AlplushalfFe times 15.625 plus Glass, N prep, Inst Set 4","alfe15_glass","alfe15gc_d-4_N","I","3.0","%","layer",,"to be added","Al plus 1/2 Fe from Oxalate times 15.625 plus weighted average of glass minerals in the .02 to 2 mm particle size fraction, based on particle size distribution percentages.","0.02-2 mm"
1947,"derived_analyte","AlplushalfFe times 15.625 plus Glass, N prep, Inst Set 3","alfe15_glass","alfe15gc_d-3_N","I","3.0","%","layer",,"to be added","Al plus 1/2 Fe from Oxalate times 15.625 plus weighted average of glass minerals in the .02 to 2 mm particle size fraction, based on particle size distribution percentages.","0.02-2 mm"
1946,"derived_analyte","AlplushalfFe times 15.625 plus Glass, N prep, Inst Set 2","alfe15_glass","alfe15gc_d-2_N","I","3.0","%","layer",,"to be added","Al plus 1/2 Fe from Oxalate times 15.625 plus weighted average of glass minerals in the .02 to 2 mm particle size fraction, based on particle size distribution percentages.","0.02-2 mm"
1945,"derived_analyte","AlplushalfFe times 15.625 plus Glass, N prep, Inst Set 1","alfe15_glass","alfe15gc_d-1_N","I","3.0","%","layer",,"to be added","Al plus 1/2 Fe from Oxalate times 15.625 plus weighted average of glass minerals in the .02 to 2 mm particle size fraction, based on particle size distribution percentages.","0.02-2 mm"
1091,"derived_analyte","Aluminum plus half Iron Oxalate, M Prep, Inst Set 3","al_fe_ox3","Alfeox_d-3_M","F","5.2","% wt","layer",,"al_ox + fe_ox / 2","The extractable aluminum is added to half of the amount of extractable iron in an ammonium oxalate solution.","<2 mm"
1090,"derived_analyte","Aluminum plus half Iron Oxalate, S Prep, Inst Set 3","al_fe_ox3","Alfeox_d-3_S","F","5.2","% wt","layer",,"al_ox + fe_ox / 2","The extractable aluminum is added to half of the amount of extractable iron in an ammonium oxalate solution.","<2 mm"
1086,"derived_analyte","Ratio, Effective CEC to Clay, <2mm, CMS conversion","ecec_cly_cec0","ececcl_d-0_HM","F","4.2","(NA)","layer",,"(ecec_cec / clay_tot_psa)","The ECEC / total clay ratio is calculated by ECEC_CEC/CLAY_TOT. It is reported on a <2 mm base.","<2 mm"
1085,"derived_analyte","Ratio, Effective CEC to Clay, <2mm, CMS conversion","ecec_cly_cec0","ececcl_d-0_GP","F","4.2","(NA)","layer",,"(ecec_cec / clay_tot_psa)","The ECEC / total clay ratio is calculated by ECEC_CEC/CLAY_TOT. It is reported on a <2 mm base.","<2 mm"
1084,"derived_analyte","Ratio, Effective CEC to Clay, <2mm, CMS conversion","ecec_cly_cec0","ececcl_d-0_N","F","4.2","(NA)","layer",,"(ecec_cec / clay_tot_psa)","The ECEC / total clay ratio is calculated by ECEC_CEC/CLAY_TOT. It is reported on a <2 mm base.","<2 mm"
1083,"derived_analyte","Ratio, Effective CEC to Clay, <2mm, CMS conversion","ecec_cly_cec0","ececcl_d-0_S","F","4.2","(NA)","layer",,"(ecec_cec / clay_tot_psa)","The ECEC / total clay ratio is calculated by ECEC_CEC/CLAY_TOT. It is reported on a <2 mm base.","<2 mm"
1082,"derived_analyte","Resistant Minerals, Total, S+csi","resist_min_tot_scsi","RMScSi_d-1_S","I","3.0","%","layer",,"to be added","Total resistant minerals is sum of the percentages of minerals resistant to erosion.","0.02-2 mm"
1081,"derived_analyte","Resistant Minerals, Total, lt2","resist_min_tot_lt2","RMlt2_d-1_S","I","3.0","%","layer",,"to be added","Total resistant minerals is sum of the percentages of minerals resistant to erosion.","<2 mm"
1080,"derived_analyte","Resistant Minerals, Total, ms","resist_min_tot_ms","RMms_d-1_S","I","3.0","%","layer",,"to be added","Total resistant minerals is sum of the percentages of minerals resistant to erosion.","0.25-0.5 mm"
1079,"derived_analyte","Ratio, Carbon to Nitrogen","c_n_ra","CNrat_d-1_HM","F","3.0","(NA)","layer",,"soc / n_tot","The carbon to nitrogen ratio is calculated by C_ORG/N_TOT. It provides information related to soil fertility and the state of organic matter decomposition. It is reported on a <2 mm base.","<2 mm"
1078,"derived_analyte","Ratio, Carbon to Nitrogen","c_n_ra","CNrat_d-1_M","F","3.0","(NA)","layer",,"soc / n_tot","The carbon to nitrogen ratio is calculated by C_ORG/N_TOT. It provides information related to soil fertility and the state of organic matter decomposition. It is reported on a <2 mm base.","<2 mm"
1077,"derived_analyte","Ratio, Carbon to Nitrogen","c_n_ra","CNrat_d-1_GP","F","3.0","(NA)","layer",,"soc / n_tot","The carbon to nitrogen ratio is calculated by C_ORG/N_TOT. It provides information related to soil fertility and the state of organic matter decomposition. It is reported on a <2 mm base.","<2 mm"
1076,"derived_analyte","Ratio, Carbon to Nitrogen","c_n_ra","CNrat_d-1_N","F","3.0","(NA)","layer",,"soc / n_tot","The carbon to nitrogen ratio is calculated by C_ORG/N_TOT. It provides information related to soil fertility and the state of organic matter decomposition. It is reported on a <2 mm base.","<2 mm"
1075,"derived_analyte","Aluminum plus half Iron Oxalate, GP Prep","al_fe_ox0","Alfeox_d-0_GP","F","5.2","% wt","layer",,"al_ox + fe_ox / 2","The extractable aluminum is added to half of the amount of extractable iron in an ammonium oxalate solution.","<2 mm"
1074,"derived_analyte","Aluminum plus half Iron Oxalate, N Prep","al_fe_ox0","Alfeox_d-0_N","F","5.2","% wt","layer",,"al_ox + fe_ox / 2","The extractable aluminum is added to half of the amount of extractable iron in an ammonium oxalate solution.","<2 mm"
1944,"derived_analyte","AlplushalfFe times 15.625 plus Glass, S prep, Inst Set 4","alfe15_glass","alfe15gc_d-4_S","I","3.0","%","layer",,"to be added","Al plus 1/2 Fe from Oxalate times 15.625 plus weighted average of glass minerals in the .02 to 2 mm particle size fraction, based on particle size distribution percentages.","0.02-2 mm"
1943,"derived_analyte","AlplushalfFe times 15.625 plus Glass, S prep, Inst Set 3","alfe15_glass","alfe15gc_d-3_S","I","3.0","%","layer",,"to be added","Al plus 1/2 Fe from Oxalate times 15.625 plus weighted average of glass minerals in the .02 to 2 mm particle size fraction, based on particle size distribution percentages.","0.02-2 mm"
1942,"derived_analyte","AlplushalfFe times 15.625 plus Glass, S prep, Inst Set 2","alfe15_glass","alfe15gc_d-2_S","I","3.0","%","layer",,"to be added","Al plus 1/2 Fe from Oxalate times 15.625 plus weighted average of glass minerals in the .02 to 2 mm particle size fraction, based on particle size distribution percentages.","0.02-2 mm"
1941,"derived_analyte","AlplushalfFe times 15.625 plus Glass, S prep, Inst Set 1","alfe15_glass","alfe15gc_d-1_S","I","3.0","%","layer",,"to be added","Al plus 1/2 Fe from Oxalate times 15.625 plus weighted average of glass minerals in the .02 to 2 mm particle size fraction, based on particle size distribution percentages.","0.02-2 mm"
1940,"derived_analyte","Sand, Total plus CoSi, N prep","sandtot_cosi_psa","CoSiS_d-3_N","F","4.1","% wt","layer",,"to be added","Total sand plus coarse silt is the soil separate with 0.02 to 2.0 mm particle diameter. It is reported a gravimetric percent on a <2 mm base. N prep.","<2 mm"
1939,"derived_analyte","Sand, Total plus CoSi, GP prep","sandtot_cosi_psa","CoSiS_d-2_GP","F","4.1","% wt","layer",,"to be added","Total sand plus coarse silt is the soil separate with 0.02 to 2.0 mm particle diameter. It is reported a gravimetric percent on a <2 mm base. G prep.","<2 mm"
1938,"derived_analyte","Sand, Total plus CoSi","sandtot_cosi_psa","CoSiS_d-1_S","F","4.1","% wt","layer",,"to be added","Total sand plus coarse silt is the soil separate with 0.02 to 2.0 mm particle diameter. It is reported a gravimetric percent on a <2 mm base. S prep","<2 mm"
1937,"derived_analyte","Sand, Total plus CoSi, Moist","sandtot_cosi_Moist","MCoSiS_d-1_M","F","4.1","% wt","layer",,"to be added","Total sand plus coarse silt is the soil separate with 0.02 to 2.0 mm particle diameter. It is reported a gravimetric percent on a <2 mm base. M prep","<2 mm"
1936,"derived_analyte","CaCO3, Chittick","caco3_ch","Carbch_d-1_S","F","4.1","% wt","layer",,"Total Carbonates % = % Calcite + % Dolomite",,"<2 mm"
1935,"aggregate analyte","Dolomite, Chittick","Dolomite_ch","DL_ch","F","4.1","%","layer","mean","% Dolomite = 0.233(CR20-CR1) + 0.3",,
1934,"aggregate analyte","Calcite, Chittick","Calcite_ch","CA_ch","F","4.1","%","layer","mean","% Calcite = 0.232(CR1 - (0.04)(CR20-CR1))",,
1933,"aggregate analyte","Montmorillonite, x-ray, percent","min_MT_x-ray_p","Mtxrayp","I","3.0","%","layer","mean",,"to be added","<0.002 mm"
1932,"aggregate analyte","Illite (Hydromuscovite), x-ray, percent","min_IL_x-ray_p","Ilxrayp","I","3.0","%","layer","mean",,"to be added","<0.002 mm"
1930,"derived_analyte","Ratio, Calcium to Magnesium","ca_mg_ra","CaMgrat_d-1_S","F","5.1","(NA)","layer",,,,"<2 mm"
1929,"derived_analyte","Water Retention Difference, 1/3 to 15 Bar, Whole Soil, wt percent","wrd_ws13_wt","wrdws3wt_d-1_S","F","4.2","%","layer",,,,"whole soil"
1928,"derived_analyte","Water Retention Difference, 1/3 to 15 Bar, <2mm, wt percent","wrd_l2_wt","wrdL2wt_d-1_S","F","4.2","%","layer",,,,"<2 mm"
1563,"aggregate analyte","Electrical Conductivity, 1:1 soil/water Extract","ec_1swx","EC_1swx","F","5.2","dS/m","layer","mean","To Be Added","The electrical conductivity of the 1:1 soil/water extract is used to estimate the concentration of salts in a sample, and provides inferences on cation concentration in solution and osmotic pressure. It is reported as mmhos per centimeter.",
1562,"aggregate analyte","Calcium, 1:1 soil/water Extract","ca_1swx","Ca_1swx","F","5.1","mmol(+)/L","layer","mean","To Be Added","Calcium in the 1:1 soil/water extract is the fraction removed from a sample by saturating the sample with distilled H2O, then vacuum extracting the water. It is reported as meq per liter of extract.",
1561,"aggregate analyte","Carbonate, 1:1 soil/water Extract","co3_1swx","CO3_1swx","F","5.1","mmol(-)/L","layer","mean","To Be Added","Carbonate in the 1:1 soil/water extract is the fraction removed from a sample by saturating the sample with distilled H2O, then vacuum extracting the water. It is reported as meq per liter of extract.",
1560,"aggregate analyte","Chloride, 1:1 soil/water Extract","cl_1swx","Cl_1swx","F","5.1","mmol(-)/L","layer","mean","To Be Added","Chloride in the 1:1 soil/water extract is the fraction removed from a sample by saturating the sample with distilled H2O, then vacuum extracting the water. It is reported as meq per liter of extract.",
1559,"aggregate analyte","Potassium, 1:1 soil/water Extract","k_1swx","K_1swx","F","5.1","mmol(+)/L","layer","mean","To Be Added","Potassium in the 1:1 soil/water extract is the fraction removed from a sample by saturating the sample with distilled H2O, then vacuum extracting the water. It is reported as meq per liter of extract.",
1558,"aggregate analyte","Sodium, 1:1 soil/water Extract","na_1swx","Na_1swx","F","5.1","mmol(+)/L","layer","mean","To Be Added","Sodium in the 1:1 soil/water extract is the fraction removed from a sample by saturating the sample with distilled H2O, then vacuum extracting the water. It is reported as meq per liter of extract.",
1557,"aggregate analyte","Sulfate, 1:1 soil/water Extract","so4_1swx","SO4_1swx","F","5.1","mmol(-)/L","layer","mean","To Be Added","Sulfate in the 1:1 soil/water extract is the fraction removed from a sample by saturating the sample with distilled H2O, then vacuum extracting the water. It is reported as meq per liter of extract.",
1556,"aggregate analyte","Magnesium, 1:1 soil/water Extract","mg_1swx","Mg_1swx","F","5.1","mmol(+)/L","layer","mean","To Be Added","Magnesium in the 1:1 soil/water extract is the fraction removed from a sample by saturating the sample with distilled H2O, then vacuum extracting the water. It is reported as meq per liter of extract.",
1555,"derived_analyte","Phosphorus, isotherm, 75 µg P sorbed/g soil","p_iso75y","Piso75y","F","3.0","µg/g","layer","mean","To Be Added","to be added",
1554,"derived_analyte","Phosphorus, isotherm, 50 µg P sorbed/g soil","p_iso50y","Piso50y","F","3.0","µg/g","layer","mean","To Be Added","to be added",
1553,"derived_analyte","Phosphorus, isotherm, 25 µg P sorbed/g soil","p_iso25y","Piso25y","F","3.0","µg/g","layer","mean","To Be Added","to be added",
1552,"derived_analyte","Phosphorus, isotherm, 5 µg P sorbed/g soil","p_iso05y","Piso05y","F","3.0","µg/g","layer","mean","To Be Added","to be added",
1551,"aggregate analyte","Phosphorus, isotherm, 75 µg/mL P remaining in solution","p_iso75x","Piso75x","F","5.2","µg/mL","layer","mean","To Be Added","to be added",
1550,"aggregate analyte","Phosphorus, isotherm, 50 µg/mL P remaining in solution","p_iso50x","Piso50x","F","5.2","µg/mL","layer","mean","To Be Added","to be added",
1549,"aggregate analyte","Phosphorus, isotherm, 25 µg/mL P remaining in solution","p_iso25x","Piso25x","F","5.2","µg/mL","layer","mean","To Be Added","to be added",
2098,"aggregate analyte","Selenium, Water Extractable","se_watx","Se_wx","F","3.1","µg/kg","layer","mean","To Be Added","The selenium extracted by the Water solution.",
2097,"derived_analyte","Total Salt, Estimated, SI-Set 3, N Prep","te_salt_si3","EsSalt_d-3_N","F","4.1","% wt","layer",,"to be added","The total estimated salt content of a sample is calculated from the electrical conductivity. It is reported as gravimetric percent on a <2 mm base.","<2 mm"
2096,"derived_analyte","Total Salt, Estimated, SI-Set 3, S Prep","te_salt_si3","EsSalt_d-3_S","F","4.1","% wt","layer",,"to be added","The total estimated salt content of a sample is calculated from the electrical conductivity. It is reported as gravimetric percent on a <2 mm base.","<2 mm"
2095,"derived_analyte","Ratio, Sodium Absorption, SI-Set 3, N Prep","sar_si3","SAR_d-3_N","F","4.0","(NA)","layer",,"to be added","The sodium absorption ratio is calculated by NA_SATX/sqrt((CA_SATX+MG_SATX)/2). It is approximately equal to the exchangeable sodium percentage.","<2 mm"
2094,"derived_analyte","Ratio, Sodium Absorption, SI-Set 3, S Prep","sar_si3","SAR_d-3_S","F","4.0","(NA)","layer",,"to be added","The sodium absorption ratio is calculated by NA_SATX/sqrt((CA_SATX+MG_SATX)/2). It is approximately equal to the exchangeable sodium percentage.","<2 mm"
2093,"derived_analyte","Estimated Gypsum, Set 3, N Prep","egyp3","egyp_d-3_N","F","3.0","% wt","layer",,"to be added","Equivalent gypsum in the <2 mm fraction is reported as a gravimetric percent on a <2 mm base.","<2 mm"
2092,"derived_analyte","Estimated Gypsum, Set 3, S Prep","egyp3","egyp_d-3_S","F","3.0","% wt","layer",,"to be added","Equivalent gypsum in the <2 mm fraction is reported as a gravimetric percent on a <2 mm base.","<2 mm"
2091,"derived_analyte","Gypsum, screened MIR predicted, N","gypsum_smp","Gypsmp_d-1_N","F","3.0","% wt","layer",,"Gypsum predicted by MIR screened by having EC Predict >= 1.5 AND Water pH >= 7.0 AND Saturated Paste Ca >= 20.0 AND Saturated Paste SO4 >= 20.0","to be added","<2 mm"
2090,"derived_analyte","Gypsum, screened MIR predicted,GP","gypsum_smp","Gypsmp_d-1_GP","F","3.0","% wt","layer",,"Gypsum predicted by MIR screened by having EC Predict >= 1.5 AND Water pH >= 7.0 AND Saturated Paste Ca >= 20.0 AND Saturated Paste SO4 >= 20.0","to be added","whole soil"
2089,"derived_analyte","Gypsum, screened MIR predicted, SK","gypsum_smp","Gypsmp_d-1_SK","F","3.0","% wt","layer",,"Gypsum predicted by MIR screened by having EC Predict >= 1.5 AND Water pH >= 7.0 AND Saturated Paste Ca >= 20.0 AND Saturated Paste SO4 >= 20.0","to be added","2-20 mm"
2088,"derived_analyte","Gypsum, screened MIR predicted, S","gypsum_smp","Gypsmp_d-1_S","F","3.0","% wt","layer",,"Gypsum predicted by MIR screened by having EC Predict >= 1.5 AND Water pH >= 7.0 AND Saturated Paste Ca >= 20.0 AND Saturated Paste SO4 >= 20.0","to be added","<2 mm"
2087,"aggregate analyte","Gypsum, MIR predicted, unscreened","gypsum_ump","Gypump","F","3.0","% wt","layer","mean","To Be Added","Gypsum is predicted using a MIR spectrophotometer reading of the 80-mesh sieved air-dry soil and a model from a set of MIR scans.",
2086,"derived_analyte","Ratio, Total Carbon to Nitrogen, Elementar, N prep","c_n_ra","CNrat_d-2_N","F","3.0","(NA)","layer",,"(c_tot_ncs - 0.12 * caco3) / n_tot_ncs","The carbon to nitrogen ratio is calculated by C_TOT_NCS/N_TOT_NCS. It provides information related to soil fertility and the state of organic matter decomposition. It is reported on a <2 mm base.","<80 Mesh"
2085,"aggregate analyte","Boehmite, x-ray","min_BE_x-ray","Bexray","C","4","peak_size","layer","concat","to be added","to be added",
2084,"aggregate analyte","Silt, Medium","silt_m_psa","SiltMp","F","4.1","% wt","layer","mean","to be added","Medium silt is the soil separate with 0.005 to 0.02 mm particle size. It is reported as a gravimetric percent on a <2 mm base.","<2 mm"
2083,"derived_analyte","Silt, Total, Moist, Dith","silt_tot_Moist_dith","SiltMD_d-1_M","F","4.1","% wt","layer",,"to be added","Total silt is the soil separate with 0.002 to 0.05 mm particle size. It is reported as a gravimetric percent on a <2 mm base.","<2 mm"
2082,"derived_analyte","Silt, Coarse, Moist, Dith","silt_c_Moist_dith","CSiltMD_d-1_M","F","4.1","% wt","layer",,"to be added","Coarse silt is the soil separate with 0.02 to 0.05 mm particle size. It is reported as a gravimetric percent on a <2 mm base.","<2 mm"
2081,"derived_analyte","Sand, Total, Moist, Dith","sand_tot_Moist_dith","SandMD_d-1_M","F","4.1","% wt","layer",,"to be added","Total sand is the soil separate with 0.05 to 2.0 mm particle diameter. It is reported a gravimetric percent on a <2 mm base. S prep","<2 mm"
2080,"aggregate analyte","Organic Matter","om","OM","F","4.2","% wt","layer","mean",,"Organic matter determined by loss on ignition","<2 mm"
2079,"derived_analyte","Ratio, 15 Bar Water minus OM to Clay, <2mm","w15omcly","w15omcly_d-1_S","F","4.2","(NA)","layer",,"(w15l2 - om) / clay_tot_psa","The ratio of 15 bar H2O percent minus organic matter to clay percent is calculated by (W15AD or W15FM - OM)/CLAY_TOT, reported as grams per gram, on a <2 mm base.","<2 mm"
2078,"derived_analyte","Sulfate, Difference with Ion Summation","so4_diff","SO4diff_d-1_S","F","5.1","meq/L","layer",,"The 4 cations (Ca, Mg, Na, K) are summed as well as the 3 anions (CO3, HCO3, and Cl) in terms of concentration. The difference is attributed to the SO4 ion.","Sulfate based on Difference from total concentration minus summation of anaoins and cations","<2 mm"
2077,"derived_analyte","Estimated Total Carbon, Organic C, S prep","etc_org_c","etcorgc_d-1_S","F","4.1","%","layer",,"Total C reported as Y=1.13x+ 0.42: {r=0.997; (p=0.001); n=21} where x= Walkley Black OC if x>0.5%; If Walkley Black OC < 0.5% then Y=1.37x+ 0.29","Estimated Total Carbon based on Organic C, S prep","<2 mm"
2076,"derived_analyte","CaCO3, screened MIR predicted, N","caco3_smp","Carbsmp_d-1_N","F","3.0","% wt","layer",,"CaCO3 predicted by MIR screened by having effervescence (exists and <> 'none') and CaCl2 pH > 6.5","to be added","<2 mm"
2075,"derived_analyte","CaCO3, screened MIR predicted,GP","caco3_smp","Carbsmp_d-1_GP","F","3.0","% wt","layer",,"CaCO3 predicted by MIR screened by having effervescence (exists and <> 'none') and CaCl2 pH > 6.5","to be added","whole soil"
2074,"derived_analyte","CaCO3, screened MIR predicted, SK","caco3_smp","Carbsmp_d-1_SK","F","3.0","% wt","layer",,"CaCO3 predicted by MIR screened by having effervescence (exists and <> 'none') and CaCl2 pH > 6.5","to be added","2-20 mm"
2073,"derived_analyte","CaCO3, screened MIR predicted, S","caco3_smp","Carbsmp_d-1_S","F","3.0","% wt","layer",,"CaCO3 predicted by MIR screened by having effervescence (exists and <> 'none') and CaCl2 pH > 6.5","to be added","<2 mm"
2072,"aggregate analyte","Carbonate, MIR predicted, unscreened","caco3_ump","CaCO3","F","3.0","% wt","layer","mean","To Be Added","Carbonate is predicted using a MIR spectrophotometer reading of the 80-mesh sieved air-dry soil and a model from a set of MIR scans.",
2071,"derived_analyte","Ratio, Effective CEC to Clay, <2mm, CECd-Set 35","ecec_cly_cecd35","ececcl_d-41_S","F","4.2","(NA)","layer",,"(ecec_cec / clay_tot_psa)","The ECEC / total clay ratio is calculated by ECEC_CEC/CLAY_TOT. It is reported on a <2 mm base.","<2 mm"
2070,"derived_analyte","Ratio, Effective CEC to Clay, <2mm, CECd-Set 34","ecec_cly_cecd34","ececcl_d-40_S","F","4.2","(NA)","layer",,"(ecec_cec / clay_tot_psa)","The ECEC / total clay ratio is calculated by ECEC_CEC/CLAY_TOT. It is reported on a <2 mm base.","<2 mm"
2069,"derived_analyte","Ratio, Effective CEC to Clay, <2mm, CECd-Set 33","ecec_cly_cecd33","ececcl_d-39_S","F","4.2","(NA)","layer",,"(ecec_cec / clay_tot_psa)","The ECEC / total clay ratio is calculated by ECEC_CEC/CLAY_TOT. It is reported on a <2 mm base.","<2 mm"
2068,"derived_analyte","Ratio, Effective CEC to Clay, <2mm, CECd-Set 32","ecec_cly_cecd32","ececcl_d-38_S","F","4.2","(NA)","layer",,"(ecec_cec / clay_tot_psa)","The ECEC / total clay ratio is calculated by ECEC_CEC/CLAY_TOT. It is reported on a <2 mm base.","<2 mm"
2040,"derived_analyte","Aluminum Saturation, CECd-Set 30","al_sat_cecd30","AlSat_d-36_S-SK","I","3.0","%","layer",,"(AL_KCL/(Sum of bases))*100","Aluminum saturation is calculated by (AL_KCL/(Sum of bases))*100. It provides some inference of potential Al toxicity problems, although many other factors influence Al toxicity.","<2 mm"
2039,"derived_analyte","Aluminum Saturation, CECd-Set 29","al_sat_cecd29","AlSat_d-35_N","I","3.0","%","layer",,"(AL_KCL/(Sum of bases))*100","Aluminum saturation is calculated by (AL_KCL/(Sum of bases))*100. It provides some inference of potential Al toxicity problems, although many other factors influence Al toxicity.","<2 mm"
2038,"derived_analyte","Aluminum Saturation, CECd-Set 28","al_sat_cecd28","AlSat_d-34_M","I","3.0","%","layer",,"(AL_KCL/(Sum of bases))*100","Aluminum saturation is calculated by (AL_KCL/(Sum of bases))*100. It provides some inference of potential Al toxicity problems, although many other factors influence Al toxicity.","<2 mm"
2037,"derived_analyte","Aluminum Saturation, CECd-Set 27","al_sat_cecd27","AlSat_d-33_GP","I","3.0","%","layer",,"(AL_KCL/(Sum of bases))*100","Aluminum saturation is calculated by (AL_KCL/(Sum of bases))*100. It provides some inference of potential Al toxicity problems, although many other factors influence Al toxicity.","<2 mm"
2036,"derived_analyte","Aluminum Saturation, CECd-Set 26","al_sat_cecd26","AlSat_d-32_S","I","3.0","%","layer",,"(AL_KCL/(Sum of bases))*100","Aluminum saturation is calculated by (AL_KCL/(Sum of bases))*100. It provides some inference of potential Al toxicity problems, although many other factors influence Al toxicity.","<2 mm"
2035,"derived_analyte","Cation Exchange Capacity, Effective, CECd-Set 29","ecec_cecd29","ECEC_d-35_N","F","4.1","meq/100g","layer",,"Sum of bases + AL_KCL","The effective cation exchange capacity is calculated by BASE_SUM+AL_KCL. It is not calculated if soluble salts are present. It is reported as meq per 100 grams on a <2 mm base.","<2 mm"
2034,"derived_analyte","Cation Exchange Capacity, Effective, CECd-Set 35","ecec_cecd35","ECEC_d-41_N","F","4.1","meq/100g","layer",,"Sum of bases + AL_KCL","The effective cation exchange capacity is calculated by BASE_SUM+AL_KCL. It is not calculated if soluble salts are present. It is reported as meq per 100 grams on a <2 mm base.","<2 mm"
2033,"derived_analyte","Cation Exchange Capacity, Effective, CECd-Set 34","ecec_cecd34","ECEC_d-40_M","F","4.1","meq/100g","layer",,"Sum of bases + AL_KCL","The effective cation exchange capacity is calculated by BASE_SUM+AL_KCL. It is not calculated if soluble salts are present. It is reported as meq per 100 grams on a <2 mm base.","<2 mm"
2032,"derived_analyte","Cation Exchange Capacity, Effective, CECd-Set 33","ecec_cecd33","ECEC_d-39_S","F","4.1","meq/100g","layer",,"Sum of bases + AL_KCL","The effective cation exchange capacity is calculated by BASE_SUM+AL_KCL. It is not calculated if soluble salts are present. It is reported as meq per 100 grams on a <2 mm base.","<2 mm"
2031,"derived_analyte","Cation Exchange Capacity, Effective, CECd-Set 32","ecec_cecd32","ECEC_d-38_S","F","4.1","meq/100g","layer",,"Sum of bases + AL_KCL","The effective cation exchange capacity is calculated by BASE_SUM+AL_KCL. It is not calculated if soluble salts are present. It is reported as meq per 100 grams on a <2 mm base.","<80 mesh"
2030,"derived_analyte","Cation Exchange Capacity, Effective, CECd-Set 31","ecec_cecd31","ECEC_d-37_S","F","4.1","meq/100g","layer",,"Sum of bases + AL_KCL","The effective cation exchange capacity is calculated by BASE_SUM+AL_KCL. It is not calculated if soluble salts are present. It is reported as meq per 100 grams on a <2 mm base.","<80 mesh"
2029,"derived_analyte","Cation Exchange Capacity, Effective, CECd-Set 30","ecec_cecd30","ECEC_d-36_S-SK","F","4.1","meq/100g","layer",,"Sum of bases + AL_KCL","The effective cation exchange capacity is calculated by BASE_SUM+AL_KCL. It is not calculated if soluble salts are present. It is reported as meq per 100 grams on a <2 mm base.","<2 mm"
2028,"derived_analyte","Cation Exchange Capacity, Effective, CECd-Set 28","ecec_cecd28","ECEC_d-34_M","F","4.1","meq/100g","layer",,"Sum of bases + AL_KCL","The effective cation exchange capacity is calculated by BASE_SUM+AL_KCL. It is not calculated if soluble salts are present. It is reported as meq per 100 grams on a <2 mm base.","<2 mm"
2027,"derived_analyte","Cation Exchange Capacity, Effective, CECd-Set 27","ecec_cecd27","ECEC_d-33_GP","F","4.1","meq/100g","layer",,"Sum of bases + AL_KCL","The effective cation exchange capacity is calculated by BASE_SUM+AL_KCL. It is not calculated if soluble salts are present. It is reported as meq per 100 grams on a <2 mm base.","<2 mm"
2026,"derived_analyte","Cation Exchange Capacity, Effective, CECd-Set 26","ecec_cecd26","ECEC_d-32_S","F","4.1","meq/100g","layer",,"Sum of bases + AL_KCL","The effective cation exchange capacity is calculated by BASE_SUM+AL_KCL. It is not calculated if soluble salts are present. It is reported as meq per 100 grams on a <2 mm base.","<2 mm"
2025,"derived_analyte","Organic Carbon, Est, to 40 cm, Weighted Average, GP Prep","eoc_40cm_wtavg","eoc40avg_d-1_GP","F","4.1","% wt","pedon",,"to be added","Weighted average estimated organic carbon for top 40 cm","<2 mm"
2024,"derived_analyte","Organic Carbon, Est, to 40 cm, Weighted Average, N Prep","eoc_40cm_wtavg","eoc40avg_d-1_N","F","4.1","% wt","pedon",,"to be added","Weighted average estimated organic carbon for top 40 cm","<2 mm"
2023,"derived_analyte","Organic Carbon, Est, to 40 cm, Weighted Average, S Prep","eoc_40cm_wtavg","eoc40avg_d-1_S","F","4.1","% wt","pedon",,"to be added","Weighted average estimated organic carbon for top 40 cm","<2 mm"
2022,"derived_analyte","Estimated Organic Carbon, Total C, GP prep","eoc_tot_c","eoctotc_d-1_GP","F","4.1","%","layer",,"c_tot_ncs - .12 * caco3","Estimated Organic Carbon based on Total C, GP prep","<2 mm"
2021,"derived_analyte","Estimated Organic Carbon, Total C, N prep","eoc_tot_c","eoctotc_d-1_N","F","4.1","%","layer",,"c_tot_ncs - .12 * caco3","Estimated Organic Carbon based on Total C, N prep","<2 mm"
2020,"derived_analyte","Si, Ox times 8 plus Fe, Ox times 2, M prep, Inst Set 4","si8plusfe2_ox","si8pfe2_d-4_M","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable silica times 8 plus the amount of ammonium oxalate extractable iron times 2. It is reported a gravimetric percent on a <2 mm base. M prep.","<2 mm"
2019,"derived_analyte","Si, Ox times 8 plus Fe, Ox times 2, M prep, Inst Set 3","si8plusfe2_ox","si8pfe2_d-3_M","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable silica times 8 plus the amount of ammonium oxalate extractable iron times 2. It is reported a gravimetric percent on a <2 mm base. M prep.","<2 mm"
2018,"derived_analyte","Si, Ox times 8 plus Fe, Ox times 2, M prep, Inst Set 2","si8plusfe2_ox","si8pfe2_d-2_M","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable silica times 8 plus the amount of ammonium oxalate extractable iron times 2. It is reported a gravimetric percent on a <2 mm base. M prep.","<2 mm"
2017,"derived_analyte","Si, Ox times 8 plus Fe, Ox times 2, M prep, Inst Set 1","si8plusfe2_ox","si8pfe2_d-1_M","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable silica times 8 plus the amount of ammonium oxalate extractable iron times 2. It is reported a gravimetric percent on a <2 mm base. M prep.","<2 mm"
2016,"derived_analyte","Si, Ox times 8 plus Fe, Ox times 2, GP prep, Inst Set 4","si8plusfe2_ox","si8pfe2_d-4_GP","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable silica times 8 plus the amount of ammonium oxalate extractable iron times 2. It is reported a gravimetric percent on a <2 mm base. GP prep.","<2 mm"
2015,"derived_analyte","Si, Ox times 8 plus Fe, Ox times 2, GP prep, Inst Set 3","si8plusfe2_ox","si8pfe2_d-3_GP","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable silica times 8 plus the amount of ammonium oxalate extractable iron times 2. It is reported a gravimetric percent on a <2 mm base. GP prep.","<2 mm"
2014,"derived_analyte","Si, Ox times 8 plus Fe, Ox times 2, GP prep, Inst Set 2","si8plusfe2_ox","si8pfe2_d-2_GP","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable silica times 8 plus the amount of ammonium oxalate extractable iron times 2. It is reported a gravimetric percent on a <2 mm base. GP prep.","<2 mm"
2013,"derived_analyte","Si, Ox times 8 plus Fe, Ox times 2, GP prep, Inst Set 1","si8plusfe2_ox","si8pfe2_d-1_GP","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable silica times 8 plus the amount of ammonium oxalate extractable iron times 2. It is reported a gravimetric percent on a <2 mm base. GP prep.","<2 mm"
2012,"derived_analyte","Si, Ox times 8 plus Fe, Ox times 2, N prep, Inst Set 4","si8plusfe2_ox","si8pfe2_d-4_N","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable silica times 8 plus the amount of ammonium oxalate extractable iron times 2. It is reported a gravimetric percent on a <2 mm base. N prep.","<2 mm"
2011,"derived_analyte","Si, Ox times 8 plus Fe, Ox times 2, N prep, Inst Set 3","si8plusfe2_ox","si8pfe2_d-3_N","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable silica times 8 plus the amount of ammonium oxalate extractable iron times 2. It is reported a gravimetric percent on a <2 mm base. N prep.","<2 mm"
2010,"derived_analyte","Si, Ox times 8 plus Fe, Ox times 2, N prep, Inst Set 2","si8plusfe2_ox","si8pfe2_d-2_N","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable silica times 8 plus the amount of ammonium oxalate extractable iron times 2. It is reported a gravimetric percent on a <2 mm base. N prep.","<2 mm"
2009,"derived_analyte","Si, Ox times 8 plus Fe, Ox times 2, N prep, Inst Set 1","si8plusfe2_ox","si8pfe2_d-1_N","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable silica times 8 plus the amount of ammonium oxalate extractable iron times 2. It is reported a gravimetric percent on a <2 mm base. N prep.","<2 mm"
2008,"derived_analyte","Si, Ox times 8 plus Fe, Ox times 2, S prep, Inst Set 4","si8plusfe2_ox","si8pfe2_d-4_S","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable silica times 8 plus the amount of ammonium oxalate extractable iron times 2. It is reported a gravimetric percent on a <2 mm base. S prep.","<2 mm"
2007,"derived_analyte","Si, Ox times 8 plus Fe, Ox times 2, S prep, Inst Set 3","si8plusfe2_ox","si8pfe2_d-3_S","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable silica times 8 plus the amount of ammonium oxalate extractable iron times 2. It is reported a gravimetric percent on a <2 mm base. S prep.","<2 mm"
2006,"derived_analyte","Si, Ox times 8 plus Fe, Ox times 2, S prep, Inst Set 2","si8plusfe2_ox","si8pfe2_d-2_S","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable silica times 8 plus the amount of ammonium oxalate extractable iron times 2. It is reported a gravimetric percent on a <2 mm base. S prep.","<2 mm"
2005,"derived_analyte","Si, Ox times 8 plus Fe, Ox times 2, S prep, Inst Set 1","si8plusfe2_ox","si8pfe2_d-1_S","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable silica times 8 plus the amount of ammonium oxalate extractable iron times 2. It is reported a gravimetric percent on a <2 mm base. S prep.","<2 mm"
2004,"derived_analyte","Iron, Oxalate times 2, M prep, Inst Set 4","fetimes2_ox","feox2_d-4_M","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable iron times 2. It is reported a gravimetric percent on a <2 mm base. G prep.","<2 mm"
2003,"derived_analyte","Iron, Oxalate times 2, M prep, Inst Set 3","fetimes2_ox","feox2_d-3_M","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable iron times 2. It is reported a gravimetric percent on a <2 mm base. G prep.","<2 mm"
2002,"derived_analyte","Iron, Oxalate times 2, M prep, Inst Set 2","fetimes2_ox","feox2_d-2_M","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable iron times 2. It is reported a gravimetric percent on a <2 mm base. G prep.","<2 mm"
2001,"derived_analyte","Iron, Oxalate times 2, M prep, Inst Set 1","fetimes2_ox","feox2_d-1_M","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable iron times 2. It is reported a gravimetric percent on a <2 mm base. G prep.","<2 mm"
2000,"derived_analyte","Iron, Oxalate times 2, GP prep, Inst Set 4","fetimes2_ox","feox2_d-4_GP","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable iron times 2. It is reported a gravimetric percent on a <2 mm base. G prep.","<2 mm"
1105,"aggregate analyte","Sulfur, pom mineral","Smin","Smin","F","6.4","g/g","layer","mean","To Be Added","The sulfur content of the mineral particulate matter (>53 micron)",
1104,"aggregate analyte","Nitrogen, pom mineral","Nmin","Nmin","F","6.4","g/g","layer","mean","To Be Added","The nitrogen content of the mineral particulate matter (>53 micron)",
1103,"aggregate analyte","Carbon, pom mineral","Cmin","Cmin","F","6.4","g/g","layer","mean","To Be Added","The carbon content of the mineral particulate matter (>53 micron)",
1102,"aggregate analyte","Sulfur, pom","Spom","Spom","F","6.4","g/g","layer","mean","(pom_s/100)*((pom_dish_wt-dish_tare)/smp_wt)*FMOD","The sulfur content of the particulate organic matter (<53 micron)",
1101,"aggregate analyte","Nitrogen, pom","Npom","Npom","F","6.4","g/g","layer","mean","(pom_n/100)*((pom_dish_wt-dish_tare)/smp_wt)*FMOD","The nitrogen content of the particulate organic matter (<53 micron)",
1100,"aggregate analyte","Carbon, pom","Cpom","Cpom","F","6.4","g/g","layer","mean","(pom_c/100)*((pom_dish_wt-dish_tare)/smp_wt)*FMOD","The carbon content of the particulate organic matter (<53 micron)",
1099,"derived_analyte","Mineral Interpretation, clay, Set 1","min_interp_c1","MIc_d-1_S","C","10","(NA)","layer",,"to be added","Mineral interpretation from results on clay particle size fraction.","<0.002 mm"
1098,"derived_analyte","Ratio, Effective CEC to Clay, <2mm, CECd-Set 7","ecec_cly_cecd7","ececcl_d-13_S","F","4.2","(NA)","layer",,"(ecec_cec / clay_tot_psa)","The ECEC / total clay ratio is calculated by ECEC_CEC/CLAY_TOT. It is reported on a <2 mm base.","<2 mm"
1097,"derived_analyte","Cation Exchange Capacity, Effective, CECd-Set 7","ecec_cecd7","ECEC_d-13_S","F","4.1","meq/100g","layer",,"(base_sum + al_kcl)","The effective cation exchange capacity is calculated by BASE_SUM+AL_KCL. It is not calculated if soluble salts are present. It is reported as meq per 100 grams on a <2 mm base.","<2 mm"
1096,"derived_analyte","Aluminum Saturation, CECd-Set 7","al_sat_cecd7","AlSat_d-13_S","I","3.0","%","layer",,"(al_kcl/(ecec_cec))*100","Aluminum saturation is calculated by (AL_KCL/(Sum of bases))*100. It provides some inference of potential Al toxicity problems, although many other factors influence Al toxicity.","<2 mm"
1095,"derived_analyte","Aluminum plus half Iron Oxalate, MW Prep, Inst Set 3","al_fe_ox3","Alfeox_d-3_MW","F","5.2","% wt","layer",,"al_ox + fe_ox / 2","The extractable aluminum is added to half of the amount of extractable iron in an ammonium oxalate solution.","<2 mm"
1094,"derived_analyte","Aluminum plus half Iron Oxalate, GP Prep, Inst Set 3","al_fe_ox3","Alfeox_d-3_GP","F","5.2","% wt","layer",,"al_ox + fe_ox / 2","The extractable aluminum is added to half of the amount of extractable iron in an ammonium oxalate solution.","<2 mm"
1093,"derived_analyte","Aluminum plus half Iron Oxalate, N Prep, Inst Set 3","al_fe_ox3","Alfeox_d-3_N","F","5.2","% wt","layer",,"al_ox + fe_ox / 2","The extractable aluminum is added to half of the amount of extractable iron in an ammonium oxalate solution.","<2 mm"
1092,"derived_analyte","Aluminum plus half Iron Oxalate, HM Prep, Inst Set 3","al_fe_ox3","Alfeox_d-3_HM","F","5.2","% wt","layer",,"al_ox + fe_ox / 2","The extractable aluminum is added to half of the amount of extractable iron in an ammonium oxalate solution.","<2 mm"
1387,"aggregate analyte","pH, Water","ph_wat","pH_w","F","3.1","(NA)","layer","mean","To Be Added","The pH, is the pH of the water sample.",
1386,"aggregate analyte","Nitrate-N, Water Extractable","no3_no2_N_watx","NO3Nwx","F","6.2","µg/kg","layer","mean","To Be Added","The nitrate nitrogen is the fraction in NO3 form. It is extracted by 1M KCl and represents the soluble NO3 that may be subject to leaching.",
1385,"aggregate analyte","Zinc, Water Extractable","zn_watx","Zn_wx","F","3.1","µg/kg","layer","mean","To Be Added","The zinc extracted by the Water solution.",
318,"aggregate analyte","Sand, Fine","sand_f_psa","SndF_p","F","4.1","% wt","layer","mean","To Be Added","Fine sand is the soil separate with 0.10 to 0.25 mm diameter particles. It is reported as a gravimetric percent on a <2 mm base.",
317,"aggregate analyte","Sand, Coarse","sand_c_psa","SndC_p","F","4.1","% wt","layer","mean","To Be Added","Coarse sand is the soil separate with 0.5 to 1.0 mm particle diameter. It is reported a gravimetric percent on a <2 mm base.",
316,"aggregate analyte","Clay, Noncarbonate","nco3_cly","ClyNCO","F","4.1","%","layer","mean","To Be Added","Non Carbonate Clay is the weight percentage of noncarbonate clay relative to the total <2mm fraction",
315,"aggregate analyte","Clay, Fine","clay_f","ClyF_p","F","4.1","% wt","layer","mean","To Be Added","Fine clay is the <0.0002 mm particle diameter soil separate. It is reported as a weight percent of the <2mm fraction.",
314,"aggregate analyte","Clay, Carbonate","co3_cly","ClyCO3","F","4.1","% wt","layer","mean","To Be Added","Carbonate clay is the part of <0.002 mm diameter particles that are composed of carbonates. It is reported as a weight percent of the <2 mm fraction.",
313,"aggregate analyte","Clay","clay_tot_psa","ClyT_p","F","4.1","% wt","layer","mean","To Be Added","Total clay is the soil separate with <0.002 mm particle diameter. Clay size carbonate is included. Total clay is reported as a weight percent of the <2 mm fraction.",
312,"aggregate analyte","Silt, Fine PSDA, NaOH, Pipet","silt_f_NaOH","SiltFH","F","4.1","% wt","layer","mean","To Be Added","Fine silt is the soil separate with 0.002 to 0.02 mm particle diameter. It is reported as a gravimetric percent on a <2 mm base., PSDA, NaOH, Pipet",
311,"aggregate analyte","Sand, Very Fine PSDA, NaOH, Pipet","sand_vf_NaOH","SndVFH","F","4.1","% wt","layer","mean","To Be Added","Very fine sand is the soil separate with 0.05 to 0.10 mm particle diameter. It is reported as a gravimetric percent on a <2 mm base., PSDA, NaOH, Pipet",
310,"aggregate analyte","Sand, Very Coarse PSDA, NaOH, Pipet","sand_vc_NaOH","SndVCH","F","4.1","% wt","layer","mean","To Be Added","Very coarse sand is the soil separate with 1.0 to 2.0 mm particle diameter. It is reported as a gravimetric percent on a <2 mm base., PSDA, NaOH, Pipet",
309,"aggregate analyte","Sand, Medium PSDA, NaOH, Pipet","sand_m_NaOH","SndMOH","F","4.1","% wt","layer","mean","To Be Added","Medium sand is the soil separate with 0.25 to 0.50 mm particle diameter. It is reported as a gravimetric percent on a <2 mm base., PSDA, NaOH, Pipet",
308,"aggregate analyte","Sand, Fine PSDA, NaOH, Pipet","sand_f_NaOH","SndFOH","F","4.1","% wt","layer","mean","To Be Added","Fine sand is the soil separate with 0.10 to 0.25 mm diameter particles. It is reported as a gravimetric percent on a <2 mm base., PSDA, NaOH, Pipet",
307,"aggregate analyte","Sand, Coarse PSDA, NaOH, Pipet","sand_c_NaOH","SndCOH","F","4.1","% wt","layer","mean","To Be Added","Coarse sand is the soil separate with 0.5 to 1.0 mm particle diameter. It is reported a gravimetric percent on a <2 mm base., PSDA, NaOH, Pipet",
306,"aggregate analyte","Clay PSDA, NaOH, Pipet","clay_tot_NaOH","ClyTOH","F","4.1","% wt","layer","mean","To Be Added","Total clay is the soil separate with <0.002 mm particle diameter. Clay size carbonate is included. Total clay is reported as a weight percent of the <2 mm fraction., PSDA, NaOH, Pipet",
305,"aggregate analyte","Silt, Fine PSDA, NaOAc, Pipet","silt_f_NaOAc","SiltFN","F","4.1","% wt","layer","mean","To Be Added","Fine silt is the soil separate with 0.002 to 0.02 mm particle diameter. It is reported as a gravimetric percent on a <2 mm base., PSDA, NaOAc, Pipet",
304,"aggregate analyte","Sand, Very Fine PSDA, NaOAc, Pipet","sand_vf_NaOAc","SndVFN","F","4.1","% wt","layer","mean","To Be Added","Very fine sand is the soil separate with 0.05 to 0.10 mm particle diameter. It is reported as a gravimetric percent on a <2 mm base., PSDA, NaOAc, Pipet",
303,"aggregate analyte","Sand, Very Coarse PSDA, NaOAc, Pipet","sand_vc_NaOAc","SndVCN","F","4.1","% wt","layer","mean","To Be Added","Very coarse sand is the soil separate with 1.0 to 2.0 mm particle diameter. It is reported as a gravimetric percent on a <2 mm base., PSDA, NaOAc, Pipet",
287,"aggregate analyte","Sand, Fine PSDA, Moist, Pipet","sand_f_Moist","SndFMp","F","4.1","% wt","layer","mean","To Be Added","Fine sand is the soil separate with 0.10 to 0.25 mm diameter particles. It is reported as a gravimetric percent on a <2 mm base., PSDA, Moist, Pipet",
286,"aggregate analyte","Sand, Coarse PSDA, Moist, Pipet","sand_c_Moist","SndCMp","F","4.1","% wt","layer","mean","To Be Added","Coarse sand is the soil separate with 0.5 to 1.0 mm particle diameter. It is reported a gravimetric percent on a <2 mm base., PSDA, Moist, Pipet",
1999,"derived_analyte","Iron, Oxalate times 2, GP prep, Inst Set 3","fetimes2_ox","feox2_d-3_GP","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable iron times 2. It is reported a gravimetric percent on a <2 mm base. G prep.","<2 mm"
1998,"derived_analyte","Iron, Oxalate times 2, GP prep, Inst Set 2","fetimes2_ox","feox2_d-2_GP","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable iron times 2. It is reported a gravimetric percent on a <2 mm base. G prep.","<2 mm"
1997,"derived_analyte","Iron, Oxalate times 2, GP prep, Inst Set 1","fetimes2_ox","feox2_d-1_GP","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable iron times 2. It is reported a gravimetric percent on a <2 mm base. G prep.","<2 mm"
1996,"derived_analyte","Iron, Oxalate times 2, N prep, Inst Set 4","fetimes2_ox","feox2_d-4_N","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable iron times 2. It is reported a gravimetric percent on a <2 mm base. N prep.","<2 mm"
1995,"derived_analyte","Iron, Oxalate times 2, N prep, Inst Set 3","fetimes2_ox","feox2_d-3_N","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable iron times 2. It is reported a gravimetric percent on a <2 mm base. N prep.","<2 mm"
1994,"derived_analyte","Iron, Oxalate times 2, N prep, Inst Set 2","fetimes2_ox","feox2_d-2_N","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable iron times 2. It is reported a gravimetric percent on a <2 mm base. N prep.","<2 mm"
1993,"derived_analyte","Iron, Oxalate times 2, N prep, Inst Set 1","fetimes2_ox","feox2_d-1_N","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable iron times 2. It is reported a gravimetric percent on a <2 mm base. N prep.","<2 mm"
1992,"derived_analyte","Iron, Oxalate times 2, S prep, Inst Set 4","fetimes2_ox","feox2_d-4_S","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable iron times 2. It is reported a gravimetric percent on a <2 mm base. S prep.","<2 mm"
1991,"derived_analyte","Iron, Oxalate times 2, S prep, Inst Set 3","fetimes2_ox","feox2_d-3_S","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable iron times 2. It is reported a gravimetric percent on a <2 mm base. S prep.","<2 mm"
1990,"derived_analyte","Iron, Oxalate times 2, S prep, Inst Set 2","fetimes2_ox","feox2_d-2_S","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable iron times 2. It is reported a gravimetric percent on a <2 mm base. S prep.","<2 mm"
1989,"derived_analyte","Iron, Oxalate times 2, S prep, Inst Set 1","fetimes2_ox","feox2_d-1_S","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable iron times 2. It is reported a gravimetric percent on a <2 mm base. S prep.","<2 mm"
1988,"derived_analyte","Silicon, Oxalate times 8, M prep, Inst Set 4","sitimes8_ox","siox8_d-4_M","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable silica times 8. It is reported a gravimetric percent on a <2 mm base. G prep.","<2 mm"
1987,"derived_analyte","Silicon, Oxalate times 8, M prep, Inst Set 3","sitimes8_ox","siox8_d-3_M","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable silica times 8. It is reported a gravimetric percent on a <2 mm base. G prep.","<2 mm"
1986,"derived_analyte","Silicon, Oxalate times 8, M prep, Inst Set 2","sitimes8_ox","siox8_d-2_M","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable silica times 8. It is reported a gravimetric percent on a <2 mm base. G prep.","<2 mm"
1985,"derived_analyte","Silicon, Oxalate times 8, M prep, Inst Set 1","sitimes8_ox","siox8_d-1_M","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable silica times 8. It is reported a gravimetric percent on a <2 mm base. G prep.","<2 mm"
57,"aggregate analyte","Aluminum, Sodium Pyrophosphate Extractable","al_pyp","Al_pyp","F","5.1","% wt","layer","mean","To Be Added","Sodium pyrophosphate extractable aluminum is the fraction extracted by 0.1M sodium pyrophosphate. It was originally considered the portion associated with organic compounds, although subsequent evidence indicates other forms are also removed.",
56,"aggregate analyte","Manganese, KCl Extractable","mn_kcl","Mn_kcl","F","4.1","mg/kg","layer","mean","To Be Added","The KCl extractable manganese approximates the exchangeable or plant available fraction. It is reported as milligrams per kilogram on a <2 mm base.",
55,"aggregate analyte","Aluminum, KCl Extractable","al_kcl","Al_kcl","F","4.1","cmol(+)/kg","layer","mean","To Be Added","KCl extractable aluminum approximates the exchangeable Al, and is a measure of the active acidity present in soils with a 1:1 water pH less than 5.5. It relates to the immediate lime requirement and the CEC of the soil.",
54,"aggregate analyte","Silicon, Dithionite Citrate Extractable","si_dith","Si_dc","F","4.1","% wt","layer","mean","To Be Added","Dithionite citrate extractable silica is considered an indicator of the amount of amorphous or more readily soluble silica. It is reported as gravimetric % on a <2 mm base.",
53,"aggregate analyte","Manganese, Dithionite Citrate Extractable","mn_dith","Mn_dc","F","4.1","% wt","layer","mean","To Be Added","Dithionite citrate extractable manganese is considered easily reducible manganese. It is reported as gravimetric percent on a <2 mm base. Values >0.2% are rare.",
52,"aggregate analyte","Iron, Dithionite Citrate Extractable","fe_dith","Fe_dc","F","4.1","% wt","layer","mean","To Be Added","Dithionite citrate extractable iron is considered a general measure of total pedogenic iron. It provides inferences on the amount of iron in various forms, P fixing potential, aggregate stability, and degree of weathering. Reported as grav % on <2mm.",
51,"aggregate analyte","Aluminum, Dithionite Citrate Extractable","al_dith","Al_dc","F","4.1","% wt","layer","mean","To Be Added","Dithionite citrate extractable aluminum is an indicator of the amount of aluminum substituted for iron in iron oxides. It does not necessarily represent total pedogenic Al.",
50,"aggregate analyte","Silicon, Oxalate Extractable","si_ox","Si_ox","F","5.2","% wt","layer","mean","To Be Added","The amount of ammonium oxalate extractable silica relates to the amount of allophane and imogolite in andic materials. It is reported as a gravimetric percent on a <2 mm base.",
49,"aggregate analyte","Phosphorus, Oxalate Extractable","p_ox","P_ox","F","6.1","mg/kg","layer","mean","To Be Added","Phosphorus extracted with ammonium oxalate",
48,"aggregate analyte","Manganese, Oxalate Extractable","mn_ox","Mn_ox","F","7.1","mg/kg","layer","mean","To Be Added","The ammonium oxalate extractable manganese is assumed to be the fraction held in noncrystalline compounds. It is reported as milligrams per kilogram on a <2 mm base.",
47,"aggregate analyte","Iron, Oxalate Extractable","fe_ox","Fe_ox","F","5.2","% wt","layer","mean","To Be Added","Ammonium oxalate extractable iron is considered a measure of the noncrystalline Fe in soils. It provides some inferences of the amount of Fe in various forms. It is reported as gravimetric % on a <2mm base.",
46,"aggregate analyte","Aluminum, Oxalate Extractable","al_ox","Al_ox","F","5.2","% wt","layer","mean","To Be Added","Ammonium oxalate extractable aluminum is an estimate of the total pedogenic Al, much of which may be in noncrystalline materials or complexed by organic matter. It is reported as gravimetric percent on a <2 mm base.",
45,"aggregate analyte","Carbon, Total","c_tot","C_tot","F","4.2","% wt","layer","mean","To Be Added","Total carbon is a measure of all organic and inorganic nitrogen, including that found in organic minerals.",
44,"aggregate analyte","Carbonate, 2-20mm Fraction","caco32_20","CaCO20","F","3.0","% wt","layer","mean","To Be Added","Carbonate in the 2-20mm fraction is measured by CO2 evolution after acid treatment. It is reported as gravimetric percent CaCO3 on a 2-20 mm base, even though carbonates of Mg, Na, K, and Fe may be present and react with the acid.",
43,"aggregate analyte","Kaolinite, dsc","min_KK_dsc","KK_dsc","F","3.0","%","layer","mean","to be added","to be added",
42,"aggregate analyte","Gibbsite, dsc","min_GI_dsc","GI_dsc","F","3.0","%","layer","mean","to be added","to be added",
41,"aggregate analyte","Carbonate, <2mm Fraction","caco3","CaCO3","F","3.0","% wt","layer","mean","To Be Added","Carbonate in the < 2mm fraction is measured by CO2 evolution after acid treatment. It is reported as gravimetric percent CaCO3 on a <2 mm base, even though carbonates of Mg, Na, K, and Fe may be present and react with the acid.",
40,"aggregate analyte","Weight, sub-sample air-dry","wt_sub_sam","Wtsubs","F","5.0","g","layer","mean","to be added","The weight of the air-dry bulk sample after removal of clods and/or natural fabric and before any other processing occurs.",
962,"derived_analyte","Resistant Aggregates, mica_adjustment","min_RA_mica_adj","RA_mica","I","3.0","%","layer","mean","to be added","to be added",
961,"derived_analyte","Quartz, mica_adjustment","min_QZ_mica_adj","QZ_mica","I","3.0","%","layer","mean","to be added","to be added",
960,"derived_analyte","Pyroxene, mica_adjustment","min_PR_mica_adj","PR_mica","I","3.0","%","layer","mean","to be added","to be added",
959,"derived_analyte","Pyrophyllite, mica_adjustment","min_PY_mica_adj","PY_mica","I","3.0","%","layer","mean","to be added","to be added",
958,"derived_analyte","Pyrolusite, mica_adjustment","min_PU_mica_adj","PU_mica","I","3.0","%","layer","mean","to be added","to be added",
957,"derived_analyte","Pyrite, mica_adjustment","min_PI_mica_adj","PI_mica","I","3.0","%","layer","mean","to be added","to be added",
956,"derived_analyte","Potassium Feldspar, mica_adjustment","min_FK_mica_adj","FK_mica","I","3.0","%","layer","mean","to be added","to be added",
955,"derived_analyte","Pollen, mica_adjustment","min_PN_mica_adj","PN_mica","I","3.0","%","layer","mean","to be added","to be added",
954,"derived_analyte","Plumbojarosite, mica_adjustment","min_PJ_mica_adj","PJ_mica","I","3.0","%","layer","mean","to be added","to be added",
953,"derived_analyte","Plant Opal, mica_adjustment","min_PO_mica_adj","PO_mica","I","3.0","%","layer","mean","to be added","to be added",
952,"derived_analyte","Plagioclase Feldspar, mica_adjustment","min_FP_mica_adj","FP_mica","I","3.0","%","layer","mean","to be added","to be added",
951,"derived_analyte","Piemontite, mica_adjustment","min_PD_mica_adj","PD_mica","I","3.0","%","layer","mean","to be added","to be added",
950,"derived_analyte","Phlogopite, mica_adjustment","min_PL_mica_adj","PL_mica","I","3.0","%","layer","mean","to be added","to be added",
949,"derived_analyte","Perovskite, mica_adjustment","min_PK_mica_adj","PK_mica","I","3.0","%","layer","mean","to be added","to be added",
948,"derived_analyte","Other, mica_adjustment","min_OT_mica_adj","OT_mica","I","3.0","%","layer","mean","to be added","to be added",
947,"derived_analyte","Other Weatherable Minerals, mica_adjustment","min_OW_mica_adj","OW_mica","I","3.0","%","layer","mean","to be added","to be added",
946,"derived_analyte","Other Resistant Minerals, mica_adjustment","min_OR_mica_adj","OR_mica","I","3.0","%","layer","mean","to be added","to be added",
945,"derived_analyte","Orthoclase, mica_adjustment","min_FR_mica_adj","FR_mica","I","3.0","%","layer","mean","to be added","to be added",
944,"derived_analyte","Opaques, mica_adjustment","min_OP_mica_adj","OP_mica","I","3.0","%","layer","mean","to be added","to be added",
943,"derived_analyte","Olivine, mica_adjustment","min_OV_mica_adj","OV_mica","I","3.0","%","layer","mean","to be added","to be added",
942,"derived_analyte","Oligoclase, mica_adjustment","min_FO_mica_adj","FO_mica","I","3.0","%","layer","mean","to be added","to be added",
941,"derived_analyte","Non-Crystalline, mica_adjustment","min_NX_mica_adj","NX_mica","I","3.0","%","layer","mean","to be added","to be added",
940,"derived_analyte","Nepheline, mica_adjustment","min_NE_mica_adj","NE_mica","I","3.0","%","layer","mean","to be added","to be added",
939,"derived_analyte","Muscovite, mica_adjustment","min_MS_mica_adj","MS_mica","I","3.0","%","layer","mean","to be added","to be added",
938,"derived_analyte","Montmorillonite, mica_adjustment","min_MT_mica_adj","MT_mica","I","3.0","%","layer","mean","to be added","to be added",
937,"derived_analyte","Monazite, mica_adjustment","min_MZ_mica_adj","MZ_mica","I","3.0","%","layer","mean","to be added","to be added",
936,"derived_analyte","Microcline, mica_adjustment","min_FC_mica_adj","FC_mica","I","3.0","%","layer","mean","to be added","to be added",
935,"derived_analyte","Mica, mica_adjustment","min_MI_mica_adj","MI_mica","I","3.0","%","layer","mean","to be added","to be added",
934,"derived_analyte","Melilite, mica_adjustment","min_ML_mica_adj","ML_mica","I","3.0","%","layer","mean","to be added","to be added",
933,"derived_analyte","Marcasite, mica_adjustment","min_MR_mica_adj","MR_mica","I","3.0","%","layer","mean","to be added","to be added",
932,"derived_analyte","Magnetite, mica_adjustment","min_MG_mica_adj","MG_mica","I","3.0","%","layer","mean","to be added","to be added",
931,"derived_analyte","Magnesite, mica_adjustment","min_ME_mica_adj","ME_mica","I","3.0","%","layer","mean","to be added","to be added",
930,"derived_analyte","Lithiophorite, mica_adjustment","min_LT_mica_adj","LT_mica","I","3.0","%","layer","mean","to be added","to be added",
929,"derived_analyte","Limonite, mica_adjustment","min_LM_mica_adj","LM_mica","I","3.0","%","layer","mean","to be added","to be added",
928,"derived_analyte","Leucoxene, mica_adjustment","min_LU_mica_adj","LU_mica","I","3.0","%","layer","mean","to be added","to be added",
927,"derived_analyte","Lepidomelane, mica_adjustment","min_LO_mica_adj","LO_mica","I","3.0","%","layer","mean","to be added","to be added",
926,"derived_analyte","Lepidolite, mica_adjustment","min_LP_mica_adj","LP_mica","I","3.0","%","layer","mean","to be added","to be added",
925,"derived_analyte","Lamprobolite, mica_adjustment","min_LA_mica_adj","LA_mica","I","3.0","%","layer","mean","to be added","to be added",
924,"derived_analyte","Labradorite, mica_adjustment","min_FL_mica_adj","FL_mica","I","3.0","%","layer","mean","to be added","to be added",
923,"derived_analyte","Kyanite, mica_adjustment","min_KY_mica_adj","KY_mica","I","3.0","%","layer","mean","to be added","to be added",
922,"derived_analyte","Kaolinite, mica_adjustment","min_KK_mica_adj","KK_mica","I","3.0","%","layer","mean","to be added","to be added",
921,"derived_analyte","Jarosite, mica_adjustment","min_JO_mica_adj","JO_mica","I","3.0","%","layer","mean","to be added","to be added",
920,"derived_analyte","Iron Oxide-Coated Quartz, mica_adjustment","min_QI_mica_adj","QI_mica","I","3.0","%","layer","mean","to be added","to be added",
919,"derived_analyte","Iddingsite, mica_adjustment","min_ID_mica_adj","ID_mica","I","3.0","%","layer","mean","to be added","to be added",
918,"derived_analyte","Hydrobiotite, mica_adjustment","min_HB_mica_adj","HB_mica","I","3.0","%","layer","mean","to be added","to be added",
917,"derived_analyte","Hornblende, mica_adjustment","min_HN_mica_adj","HN_mica","I","3.0","%","layer","mean","to be added","to be added",
916,"derived_analyte","Hematite, mica_adjustment","min_HE_mica_adj","HE_mica","I","3.0","%","layer","mean","to be added","to be added",
915,"derived_analyte","Halloysite, mica_adjustment","min_KH_mica_adj","KH_mica","I","3.0","%","layer","mean","to be added","to be added",
914,"derived_analyte","Gypsum, mica_adjustment","min_GY_mica_adj","GY_mica","I","3.0","%","layer","mean","to be added","to be added",
913,"derived_analyte","Gold, mica_adjustment","min_GD_mica_adj","GD_mica","I","3.0","%","layer","mean","to be added","to be added",
912,"derived_analyte","Goethite, mica_adjustment","min_GE_mica_adj","GE_mica","I","3.0","%","layer","mean","to be added","to be added",
911,"derived_analyte","Glaucophane, mica_adjustment","min_GO_mica_adj","GO_mica","I","3.0","%","layer","mean","to be added","to be added",
910,"derived_analyte","Glauconite, mica_adjustment","min_GL_mica_adj","GL_mica","I","3.0","%","layer","mean","to be added","to be added",
909,"derived_analyte","Glassy Materials, mica_adjustment","min_GM_mica_adj","GM_mica","I","3.0","%","layer","mean","to be added","to be added",
908,"derived_analyte","Glass, mica_adjustment","min_GS_mica_adj","GS_mica","I","3.0","%","layer","mean","to be added","to be added",
907,"derived_analyte","Glass Coated Quartz, mica_adjustment","min_QG_mica_adj","QG_mica","I","3.0","%","layer","mean","to be added","to be added",
906,"derived_analyte","Glass Coated Opaque, mica_adjustment","min_OG_mica_adj","OG_mica","I","3.0","%","layer","mean","to be added","to be added",
905,"derived_analyte","Glass Coated Hornblende, mica_adjustment","min_HG_mica_adj","HG_mica","I","3.0","%","layer","mean","to be added","to be added",
904,"derived_analyte","Glass Coated Grain, mica_adjustment","min_GC_mica_adj","GC_mica","I","3.0","%","layer","mean","to be added","to be added",
903,"derived_analyte","Glass Coated Feldspar, mica_adjustment","min_FG_mica_adj","FG_mica","I","3.0","%","layer","mean","to be added","to be added",
902,"derived_analyte","Glass Aggregates, mica_adjustment","min_GA_mica_adj","GA_mica","I","3.0","%","layer","mean","to be added","to be added",
901,"derived_analyte","Gibbsite, mica_adjustment","min_GI_mica_adj","GI_mica","I","3.0","%","layer","mean","to be added","to be added",
900,"derived_analyte","Garnet, mica_adjustment","min_GN_mica_adj","GN_mica","I","3.0","%","layer","mean","to be added","to be added",
899,"derived_analyte","Galena, mica_adjustment","min_GG_mica_adj","GG_mica","I","3.0","%","layer","mean","to be added","to be added",
1531,"aggregate analyte","Sand, Very Fine, no pretreatment, Pipet","sand_vf_psa1","SndVFp1","F","4.1","% wt","layer","mean","To Be Added","Very fine sand is the soil separate with 0.05 to 0.10 mm particle diameter. It is reported as a gravimetric percent on a <2 mm base. Organic matter and soluble salts not removed.",
1530,"aggregate analyte","Sand, Very Coarse, no pretreatment, Pipet","sand_vc_psa1","SndVCp1","F","4.1","% wt","layer","mean","To Be Added","Very coarse sand is the soil separate with 1.0 to 2.0 mm particle diameter. It is reported as a gravimetric percent on a <2 mm base. Organic matter and soluble salts not removed.",
1529,"aggregate analyte","Sand, Medium, no pretreatment, Pipet","sand_m_psa1","SndM_p1","F","4.1","% wt","layer","mean","To Be Added","Medium sand is the soil separate with 0.25 to 0.50 mm particle diameter. It is reported as a gravimetric percent on a <2 mm base. Organic matter and soluble salts not removed.",
1528,"aggregate analyte","Sand, Fine, no pretreatment, Pipet","sand_f_psa1","SndF_p1","F","4.1","% wt","layer","mean","To Be Added","Fine sand is the soil separate with 0.10 to 0.25 mm diameter particles. It is reported as a gravimetric percent on a <2 mm base. Organic matter and soluble salts not removed.",
1527,"aggregate analyte","Sand, Coarse, no pretreatment, Pipet","sand_c_psa1","SndC_p1","F","4.1","% wt","layer","mean","To Be Added","Coarse sand is the soil separate with 0.5 to 1.0 mm particle diameter. It is reported a gravimetric percent on a <2 mm base. Organic matter and soluble salts not removed.",
1526,"aggregate analyte","Clay, no pretreatment, Pipet","clay_tot_psa1","ClyT_p1","F","4.1","% wt","layer","mean","To Be Added","Total clay is the soil separate with <0.002 mm particle diameter. Clay size carbonate is included. Total clay is reported as a weight percent of the <2 mm fraction. Organic matter and soluble salts not removed.",
1525,"derived_analyte","Mineral Interpretation, GP prep, clay, Set 2","min_interp_c2","MIc_d-2_GP","C","10","(NA)","layer",,"to be added","Mineral interpretation from results on clay particle size fraction.","<0.002 mm"
1524,"derived_analyte","Mineral Interpretation, clay, Set 2","min_interp_c2","MIc_d-2_S","C","10","(NA)","layer",,"to be added","Mineral interpretation from results on clay particle size fraction.","<0.002 mm"
1523,"derived_analyte","Total Salt, Estimated, SI-Set 2, N Prep","te_salt_si2","EsSalt_d-2_N","F","4.1","% wt","layer",,"to be added","The total estimated salt content of a sample is calculated from the electrical conductivity. It is reported as gravimetric percent on a <2 mm base.","<2 mm"
1522,"derived_analyte","Total Salt, Estimated, SI-Set 2, S Prep","te_salt_si2","EsSalt_d-2_S","F","4.1","% wt","layer",,"to be added","The total estimated salt content of a sample is calculated from the electrical conductivity. It is reported as gravimetric percent on a <2 mm base.","<2 mm"
1521,"derived_analyte","Ratio, Sodium Absorption, SI-Set 2, N Prep","sar_si2","SAR_d-2_N","F","4.0","(NA)","layer",,"to be added","The sodium absorption ratio is calculated by NA_SATX/sqrt((CA_SATX+MG_SATX)/2). It is approximately equal to the exchangeable sodium percentage.","<2 mm"
1520,"derived_analyte","Ratio, Sodium Absorption, SI-Set 2, S Prep","sar_si2","SAR_d-2_S","F","4.0","(NA)","layer",,"to be added","The sodium absorption ratio is calculated by NA_SATX/sqrt((CA_SATX+MG_SATX)/2). It is approximately equal to the exchangeable sodium percentage.","<2 mm"
1519,"derived_analyte","Exchangeable Sodium Percentage, SI-Set 2, CEC-Set 5","na_exch_si1_icp2","ESPsat_d-18_S","F","3.0","%","layer",,"to be added","This is the exchangeable sodium percentage (ESP), reported on a <2 mm base. If salts are present, ESP has been corrected for the water soluble Na.","<2 mm"
1518,"derived_analyte","Exchangeable Sodium Percentage, SI-Set 2, CECd-Set 4","na_exch_sat1_cecd8","ESPsat_d-17_S","F","3.0","%","layer",,"to be added","This is the exchangeable sodium percentage (ESP), reported on a <2 mm base. If salts are present, ESP has been corrected for the water soluble Na.","<2 mm"
1517,"derived_analyte","Exchangeable Sodium Percentage, SI-Set 2, CECd-Set 3","na_exch_sat1_cecd7","ESPsat_d-16_S","F","3.0","%","layer",,"to be added","This is the exchangeable sodium percentage (ESP), reported on a <2 mm base. If salts are present, ESP has been corrected for the water soluble Na.","<2 mm"
818,"derived_analyte","Iron Oxide, Total","fe2o3_tot","Fe2O3","F","4.1","% wt","layer","mean","To Be Added","Total Fe oxide is calculated from the iron measured after total dissolution of a size fraction of soil material. It is stored and reported as percent oxide on the base of the size fraction used.",
817,"aggregate analyte","Weatherable Aggregates, CMS glass_count","min_AR_glass_count","AR_gc","I","3.0","%","layer","mean","to be added","to be added",
816,"aggregate analyte","Quartz, dta","min_QZ_dta","QZ_dta","F","3.0","%","layer","mean","to be added","CMS value",
815,"aggregate analyte","Halloysite, dta","min_KH_dta","KH_dta","F","3.0","%","layer","mean","to be added","CMS value",
814,"aggregate analyte","Goethite, dta","min_GE_dta","GE_dta","F","3.0","%","layer","mean","to be added","CMS value",
813,"aggregate analyte","Hydroxy-Interlayered Vermiculite, x-ray","min_HV_x-ray","HVxray","C","4","peak_size","layer","concat","to be added","to be added",
812,"aggregate analyte","Hydroxy-Interlayered Smectite, x-ray","min_HS_x-ray","HSxray","C","4","peak_size","layer","concat","to be added","to be added",
811,"aggregate analyte","Halite, x-ray","min_HA_x-ray","HAxray","C","4","peak_size","layer","concat","to be added","to be added",
810,"aggregate analyte","Kaolinite, dta","min_KK_dta","KK_dta","F","3.0","%","layer","mean","to be added","CMS value",
809,"aggregate analyte","Gibbsite, dta","min_GI_dta","GI_dta","F","3.0","%","layer","mean","to be added","CMS value",
808,"aggregate analyte","Hypersthene, CMS petro_count","min_HY_petro_count","HY_pc","I","3.0","%","layer","mean","to be added","CMS value",
807,"derived_analyte","Coarse Fragments, Greater 2mm, Wt Percent, Whole Soil Base. see wf_g2_ws","CFRAG_WS","cfWSCMS_d-1","F","4.1","% wt","layer",,"To Be Added","CMS derived value default, same as wf_g2_ws","whole soil"
806,"derived_analyte","Silt, Total, default","silt_tot","SiltCMS_d-1","F","4.1","% wt","layer",,"To Be Added","Total silt . CMS derived value default, should not be used","<2 mm"
805,"derived_analyte","Silt, Coarse. default","silt_c","cSiltCMS_d-1","F","4.1","% wt","layer",,"To Be Added","Coarse silt is the soil separate with 0.02 to 0.05 mm particle size. It is reported as a gravimetric percent on a <2 mm base.CMS derived value default, should not be used","<2 mm"
804,"derived_analyte","Sand, Total, default","sand_tot","SndCMS_d-1","F","4.1","% wt","layer",,"To Be Added","Total sand. CMS derived value default, should not be used","<2 mm"
803,"derived_analyte","Ratio, Sodium Absorption, SI-Set 1, default","SAR","SAR_d-0_S","F","4.0","(NA)","layer",,"na_satx / Sqr((ca_satx + mg_satx)/2)","The sodium absorption ratio is calculated by NA_SATX/sqrt((CA_SATX+MG_SATX)/2). It is approximately equal to the exchangeable sodium percentage. CMS derived value default","<2 mm"
802,"derived_analyte","Clay, carbonate free.","nco3_cly","nco3cly_d-0_S","F","4.1","% wt","layer",,"To Be Added","None carbonate clay. CMS derived value default","<2 mm"
1984,"derived_analyte","Silicon, Oxalate times 8, GP prep, Inst Set 4","sitimes8_ox","siox8_d-4_GP","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable silica times 8. It is reported a gravimetric percent on a <2 mm base. G prep.","<2 mm"
1983,"derived_analyte","Silicon, Oxalate times 8, GP prep, Inst Set 3","sitimes8_ox","siox8_d-3_GP","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable silica times 8. It is reported a gravimetric percent on a <2 mm base. G prep.","<2 mm"
1982,"derived_analyte","Silicon, Oxalate times 8, GP prep, Inst Set 2","sitimes8_ox","siox8_d-2_GP","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable silica times 8. It is reported a gravimetric percent on a <2 mm base. G prep.","<2 mm"
1981,"derived_analyte","Silicon, Oxalate times 8, GP prep, Inst Set 1","sitimes8_ox","siox8_d-1_GP","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable silica times 8. It is reported a gravimetric percent on a <2 mm base. G prep.","<2 mm"
1980,"derived_analyte","Silicon, Oxalate times 8, N prep, Inst Set 4","sitimes8_ox","siox8_d-4_N","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable silica times 8. It is reported a gravimetric percent on a <2 mm base. N prep.","<2 mm"
1979,"derived_analyte","Silicon, Oxalate times 8, N prep, Inst Set 3","sitimes8_ox","siox8_d-3_N","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable silica times 8. It is reported a gravimetric percent on a <2 mm base. N prep.","<2 mm"
1978,"derived_analyte","Silicon, Oxalate times 8, N prep, Inst Set 2","sitimes8_ox","siox8_d-2_N","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable silica times 8. It is reported a gravimetric percent on a <2 mm base. N prep.","<2 mm"
1977,"derived_analyte","Silicon, Oxalate times 8, N prep, Inst Set 1","sitimes8_ox","siox8_d-1_N","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable silica times 8. It is reported a gravimetric percent on a <2 mm base. N prep.","<2 mm"
1976,"derived_analyte","Silicon, Oxalate times 8, S prep, Inst Set 4","sitimes8_ox","siox8_d-4_S","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable silica times 8. It is reported a gravimetric percent on a <2 mm base. S prep.","<2 mm"
1975,"derived_analyte","Silicon, Oxalate times 8, S prep, Inst Set 3","sitimes8_ox","siox8_d-3_S","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable silica times 8. It is reported a gravimetric percent on a <2 mm base. S prep.","<2 mm"
1974,"derived_analyte","Silicon, Oxalate times 8, S prep, Inst Set 2","sitimes8_ox","siox8_d-2_S","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable silica times 8. It is reported a gravimetric percent on a <2 mm base. S prep.","<2 mm"
1973,"derived_analyte","Silicon, Oxalate times 8, S prep, Inst Set 1","sitimes8_ox","siox8_d-1_S","F","5.0","% wt","layer",,"to be added","The amount of ammonium oxalate extractable silica times 8. It is reported a gravimetric percent on a <2 mm base. S prep.","<2 mm"
1972,"derived_analyte","AlplushalfFe times 60.0 plus Glass, M prep, Inst Set 4","alfe60_glass","alfe60gc_d-4_M","I","3.0","%","layer",,"to be added","Al plus 1/2 Fe from Oxalate times 60.0 plus weighted average of glass minerals in the .02 to 2 mm particle size fraction, based on particle size distribution percentages.","0.02-2 mm"
1971,"derived_analyte","AlplushalfFe times 60.0 plus Glass, M prep, Inst Set 3","alfe60_glass","alfe60gc_d-3_M","I","3.0","%","layer",,"to be added","Al plus 1/2 Fe from Oxalate times 60.0 plus weighted average of glass minerals in the .02 to 2 mm particle size fraction, based on particle size distribution percentages.","0.02-2 mm"
1970,"derived_analyte","AlplushalfFe times 60.0 plus Glass, M prep, Inst Set 2","alfe60_glass","alfe60gc_d-2_M","I","3.0","%","layer",,"to be added","Al plus 1/2 Fe from Oxalate times 60.0 plus weighted average of glass minerals in the .02 to 2 mm particle size fraction, based on particle size distribution percentages.","0.02-2 mm"
1969,"derived_analyte","AlplushalfFe times 60.0 plus Glass, M prep, Inst Set 1","alfe60_glass","alfe60gc_d-1_M","I","3.0","%","layer",,"to be added","Al plus 1/2 Fe from Oxalate times 60.0 plus weighted average of glass minerals in the .02 to 2 mm particle size fraction, based on particle size distribution percentages.","0.02-2 mm"
1968,"derived_analyte","AlplushalfFe times 60.0 plus Glass, GP prep, Inst Set 4","alfe60_glass","alfe60gc_d-4_GP","I","3.0","%","layer",,"to be added","Al plus 1/2 Fe from Oxalate times 60.0 plus weighted average of glass minerals in the .02 to 2 mm particle size fraction, based on particle size distribution percentages.","0.02-2 mm"
1967,"derived_analyte","AlplushalfFe times 60.0 plus Glass, GP prep, Inst Set 3","alfe60_glass","alfe60gc_d-3_GP","I","3.0","%","layer",,"to be added","Al plus 1/2 Fe from Oxalate times 60.0 plus weighted average of glass minerals in the .02 to 2 mm particle size fraction, based on particle size distribution percentages.","0.02-2 mm"
1966,"derived_analyte","AlplushalfFe times 60.0 plus Glass, GP prep, Inst Set 2","alfe60_glass","alfe60gc_d-2_GP","I","3.0","%","layer",,"to be added","Al plus 1/2 Fe from Oxalate times 60.0 plus weighted average of glass minerals in the .02 to 2 mm particle size fraction, based on particle size distribution percentages.","0.02-2 mm"
1965,"derived_analyte","AlplushalfFe times 60.0 plus Glass, GP prep, Inst Set 1","alfe60_glass","alfe60gc_d-1_GP","I","3.0","%","layer",,"to be added","Al plus 1/2 Fe from Oxalate times 60.0 plus weighted average of glass minerals in the .02 to 2 mm particle size fraction, based on particle size distribution percentages.","0.02-2 mm"
1964,"derived_analyte","AlplushalfFe times 60.0 plus Glass, N prep, Inst Set 4","alfe60_glass","alfe60gc_d-4_N","I","3.0","%","layer",,"to be added","Al plus 1/2 Fe from Oxalate times 60.0 plus weighted average of glass minerals in the .02 to 2 mm particle size fraction, based on particle size distribution percentages.","0.02-2 mm"
1963,"derived_analyte","AlplushalfFe times 60.0 plus Glass, N prep, Inst Set 3","alfe60_glass","alfe60gc_d-3_N","I","3.0","%","layer",,"to be added","Al plus 1/2 Fe from Oxalate times 60.0 plus weighted average of glass minerals in the .02 to 2 mm particle size fraction, based on particle size distribution percentages.","0.02-2 mm"
1962,"derived_analyte","AlplushalfFe times 60.0 plus Glass, N prep, Inst Set 2","alfe60_glass","alfe60gc_d-2_N","I","3.0","%","layer",,"to be added","Al plus 1/2 Fe from Oxalate times 60.0 plus weighted average of glass minerals in the .02 to 2 mm particle size fraction, based on particle size distribution percentages.","0.02-2 mm"
1961,"derived_analyte","AlplushalfFe times 60.0 plus Glass, N prep, Inst Set 1","alfe60_glass","alfe60gc_d-1_N","I","3.0","%","layer",,"to be added","Al plus 1/2 Fe from Oxalate times 60.0 plus weighted average of glass minerals in the .02 to 2 mm particle size fraction, based on particle size distribution percentages.","0.02-2 mm"
1960,"derived_analyte","AlplushalfFe times 60.0 plus Glass, S prep, Inst Set 4","alfe60_glass","alfe60gc_d-4_S","I","3.0","%","layer",,"to be added","Al plus 1/2 Fe from Oxalate times 60.0 plus weighted average of glass minerals in the .02 to 2 mm particle size fraction, based on particle size distribution percentages.","0.02-2 mm"
1959,"derived_analyte","AlplushalfFe times 60.0 plus Glass, S prep, Inst Set 3","alfe60_glass","alfe60gc_d-3_S","I","3.0","%","layer",,"to be added","Al plus 1/2 Fe from Oxalate times 60.0 plus weighted average of glass minerals in the .02 to 2 mm particle size fraction, based on particle size distribution percentages.","0.02-2 mm"
1958,"derived_analyte","AlplushalfFe times 60.0 plus Glass, S prep, Inst Set 2","alfe60_glass","alfe60gc_d-2_S","I","3.0","%","layer",,"to be added","Al plus 1/2 Fe from Oxalate times 60.0 plus weighted average of glass minerals in the .02 to 2 mm particle size fraction, based on particle size distribution percentages.","0.02-2 mm"
2054,"derived_analyte","Ratio, Effective CEC to Clay, <2mm, CECd-Set 18","ecec_cly_cecd18","ececcl_d-24_S","F","4.2","(NA)","layer",,"(ecec_cec / clay_tot_psa)","The ECEC / total clay ratio is calculated by ECEC_CEC/CLAY_TOT. It is reported on a <2 mm base.","<2 mm"
2053,"derived_analyte","Ratio, Effective CEC to Clay, <2mm, CECd-Set 17","ecec_cly_cecd17","ececcl_d-23_S","F","4.2","(NA)","layer",,"(ecec_cec / clay_tot_psa)","The ECEC / total clay ratio is calculated by ECEC_CEC/CLAY_TOT. It is reported on a <2 mm base.","<2 mm"
2052,"derived_analyte","Ratio, Effective CEC to Clay, <2mm, CECd-Set 16","ecec_cly_cecd16","ececcl_d-22_S","F","4.2","(NA)","layer",,"(ecec_cec / clay_tot_psa)","The ECEC / total clay ratio is calculated by ECEC_CEC/CLAY_TOT. It is reported on a <2 mm base.","<2 mm"
2051,"derived_analyte","Ratio, Effective CEC to Clay, <2mm, CECd-Set 15","ecec_cly_cecd15","ececcl_d-21_S","F","4.2","(NA)","layer",,"(ecec_cec / clay_tot_psa)","The ECEC / total clay ratio is calculated by ECEC_CEC/CLAY_TOT. It is reported on a <2 mm base.","<2 mm"
2050,"derived_analyte","Ratio, Effective CEC to Clay, <2mm, CECd-Set 14","ecec_cly_cecd14","ececcl_d-20_S","F","4.2","(NA)","layer",,"(ecec_cec / clay_tot_psa)","The ECEC / total clay ratio is calculated by ECEC_CEC/CLAY_TOT. It is reported on a <2 mm base.","<2 mm"
2049,"derived_analyte","Ratio, Effective CEC to Clay, <2mm, CECd-Set 13","ecec_cly_cecd13","ececcl_d-19_S","F","4.2","(NA)","layer",,"(ecec_cec / clay_tot_psa)","The ECEC / total clay ratio is calculated by ECEC_CEC/CLAY_TOT. It is reported on a <2 mm base.","<2 mm"
2048,"derived_analyte","Ratio, Effective CEC to Clay, <2mm, CECd-Set 12","ecec_cly_cecd12","ececcl_d-18_S","F","4.2","(NA)","layer",,"(ecec_cec / clay_tot_psa)","The ECEC / total clay ratio is calculated by ECEC_CEC/CLAY_TOT. It is reported on a <2 mm base.","<2 mm"
2047,"derived_analyte","Ratio, Effective CEC to Clay, <2mm, CECd-Set 11","ecec_cly_cecd11","ececcl_d-17_S","F","4.2","(NA)","layer",,"(ecec_cec / clay_tot_psa)","The ECEC / total clay ratio is calculated by ECEC_CEC/CLAY_TOT. It is reported on a <2 mm base.","<2 mm"
2046,"derived_analyte","Ratio, Effective CEC to Clay, <2mm, CECd-Set 10","ecec_cly_cecd10","ececcl_d-16_S","F","4.2","(NA)","layer",,"(ecec_cec / clay_tot_psa)","The ECEC / total clay ratio is calculated by ECEC_CEC/CLAY_TOT. It is reported on a <2 mm base.","<2 mm"
2045,"derived_analyte","Aluminum Saturation, CECd-Set 35","al_sat_cecd35","AlSat_d-41_N","I","3.0","%","layer",,"(AL_KCL/(Sum of bases))*100","Aluminum saturation is calculated by (AL_KCL/(Sum of bases))*100. It provides some inference of potential Al toxicity problems, although many other factors influence Al toxicity.","<2 mm"
2044,"derived_analyte","Aluminum Saturation, CECd-Set 34","al_sat_cecd34","AlSat_d-40_M","I","3.0","%","layer",,"(AL_KCL/(Sum of bases))*100","Aluminum saturation is calculated by (AL_KCL/(Sum of bases))*100. It provides some inference of potential Al toxicity problems, although many other factors influence Al toxicity.","<2 mm"
2043,"derived_analyte","Aluminum Saturation, CECd-Set 33","al_sat_cecd33","AlSat_d-39_S","I","3.0","%","layer",,"(AL_KCL/(Sum of bases))*100","Aluminum saturation is calculated by (AL_KCL/(Sum of bases))*100. It provides some inference of potential Al toxicity problems, although many other factors influence Al toxicity.","<2 mm"
2042,"derived_analyte","Aluminum Saturation, CECd-Set 32","al_sat_cecd32","AlSat_d-38_S","I","3.0","%","layer",,"(AL_KCL/(Sum of bases))*100","Aluminum saturation is calculated by (AL_KCL/(Sum of bases))*100. It provides some inference of potential Al toxicity problems, although many other factors influence Al toxicity.","<80 mesh"
2041,"derived_analyte","Aluminum Saturation, CECd-Set 31","al_sat_cecd31","AlSat_d-37_S","I","3.0","%","layer",,"(AL_KCL/(Sum of bases))*100","Aluminum saturation is calculated by (AL_KCL/(Sum of bases))*100. It provides some inference of potential Al toxicity problems, although many other factors influence Al toxicity.","<80 mesh"
1810,"aggregate_analyte","Water Content At 1/3 Bar, Replicate 0","W_1by3","W_1by3","F","5.2","% wt","layer","mean",,"Water Release Curve - Replicate 0 - water content at 1/3 bar","<2 mm"
1809,"aggregate_analyte","Water Content At 1/10 Bar, Replicate 0","W_1by10","W_1by10","F","5.2","% wt","layer","mean",,"Water Release Curve - Replicate 0 - water content at 1/10 bar","<2 mm"
1808,"aggregate_analyte","Bulk Density, Replicate 2","B_DEN_2","B_DEN_2","F","4.2","g/cc","layer","mean",,"Water Release Curve - Replicate 2 - bulk density (g/cc)","<2 mm"
1807,"aggregate_analyte","Bulk Density, Replicate 1","B_DEN_1","B_DEN_1","F","4.2","g/cc","layer","mean",,"Water Release Curve - Replicate 1 - bulk density (g/cc)","<2 mm"
1806,"aggregate_analyte","Bulk Density, Replicate 0","B_DEN_0","B_DEN_0","F","4.2","g/cc","layer","mean",,"Water Release Curve - Replicate 0 - bulk density (g/cc)","<2 mm"
1805,"aggregate_analyte","Saturated Conductivity, Replicate 2","SATHYD2","SATHYD2","F","5.2","cm/hr","layer","mean",,"Water Release Curve - Replicate 2 - saturated conductivity","<2 mm"
1804,"aggregate_analyte","Saturated Conductivity, Replicate 1","SATHYD1","SATHYD1","F","5.2","cm/hr","layer","mean",,"Water Release Curve - Replicate 1 - saturated conductivity","<2 mm"
1803,"aggregate_analyte","Saturated Conductivity, Replicate 0","SATHYD0","SATHYD0","F","5.2","cm/hr","layer","mean",,"Water Release Curve - Replicate 0 - saturated conductivity","<2 mm"
1802,"aggregate_analyte","Moisture Percent, particles less than 0.002mm","MAltpt002","MAltpt002","I","3.0","%","layer","mean",,"Water Release Curve - Moisture Percent, particles less than 0.002mm","<2 mm"
1801,"aggregate_analyte","Moisture Percent, particles less than 0.005mm","MAltpt005","MAltpt005","I","3.0","%","layer","mean",,"Water Release Curve - Moisture Percent, particles less than 0.005mm","<2 mm"
1800,"aggregate_analyte","Moisture Percent, particles less than 0.02mm","MAltpt02","MAltpt02","I","3.0","%","layer","mean",,"Water Release Curve - Moisture Percent, particles less than 0.02mm","<2 mm"
1799,"aggregate_analyte","Moisture Percent, particles less than 0.04mm","MAltpt05","MAltpt05","I","3.0","%","layer","mean",,"Water Release Curve - Moisture Percent, particles less than 0.04mm","<2 mm"
1798,"aggregate_analyte","Moisture Percent, particles less than 0.074mm","MAlt_pt074","MAlt_pt074","I","3.0","%","layer","mean",,"Water Release Curve - Moisture Percent, particles less than 0.074mm","<2 mm"
1797,"aggregate_analyte","Moisture Percent, particles less than 0.42mm","MAltpt42","MAltpt42","I","3.0","%","layer","mean",,"Water Release Curve - Moisture Percent, particles less than 0.42mm","<2 mm"
1796,"aggregate_analyte","Moisture Percent, particles less than 2.0mm","MAlt2pt0","MAlt2pt0","I","3.0","%","layer","mean",,"Water Release Curve - Moisture Percent, particles less than 2.0mm","<2 mm"
1795,"aggregate_analyte","Moisture, Optimal","OPTMOIST","OPTMOIST","F","3.1","%","layer","mean",,"Water Release Curve - optimal moisture","<2 mm"
1794,"aggregate_analyte","Bulk Density, Maximum Dry","MAXDRYDE","MAXDRYDE","F","4.1","g/cc","layer","mean",,"Water Release Curve - maximum dry density (g/cc)","<2 mm"
155,"aggregate analyte","Goethite, petro_count","min_GE_petro_count","GE_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
154,"aggregate analyte","Glaucophane, petro_count","min_GO_petro_count","GO_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
153,"aggregate analyte","Glauconite, petro_count","min_GL_petro_count","GL_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
152,"aggregate analyte","Glassy Materials, petro_count","min_GM_petro_count","GM_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
151,"aggregate analyte","Glass, petro_count","min_GS_petro_count","GS_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
150,"aggregate analyte","Glass Coated Quartz, petro_count","min_QG_petro_count","QG_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
149,"aggregate analyte","Glass Coated Opaque, petro_count","min_OG_petro_count","OG_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
148,"aggregate analyte","Glass Coated Hornblende, petro_count","min_HG_petro_count","HG_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
147,"aggregate analyte","Glass Coated Grain, petro_count","min_GC_petro_count","GC_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
146,"aggregate analyte","Glass Coated Feldspar, petro_count","min_FG_petro_count","FG_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
145,"aggregate analyte","Glass Aggregates, petro_count","min_GA_petro_count","GA_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
144,"aggregate analyte","Gibbsite, petro_count","min_GI_petro_count","GI_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
143,"aggregate analyte","Garnet, petro_count","min_GN_petro_count","GN_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
142,"aggregate analyte","Galena, petro_count","min_GG_petro_count","GG_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
141,"aggregate analyte","Foraminifera, petro_count","min_FF_petro_count","FF_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
140,"aggregate analyte","Fluorite, petro_count","min_FU_petro_count","FU_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
139,"aggregate analyte","Ferromagnesium Mineral, petro_count","min_FM_petro_count","FM_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
138,"aggregate analyte","Feldspathoids, petro_count","min_FZ_petro_count","FZ_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
137,"aggregate analyte","Feldspar, petro_count","min_FD_petro_count","FD_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
136,"aggregate analyte","Epidote, petro_count","min_EP_petro_count","EP_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
135,"aggregate analyte","Enstatite, petro_count","min_EN_petro_count","EN_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
134,"aggregate analyte","Dumortierite, petro_count","min_DU_petro_count","DU_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
133,"aggregate analyte","Dolomite, petro_count","min_DL_petro_count","DL_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
132,"aggregate analyte","Diopside, petro_count","min_DP_petro_count","DP_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
131,"aggregate analyte","Diatoms, petro_count","min_DI_petro_count","DI_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
130,"aggregate analyte","Cristobalite, petro_count","min_CR_petro_count","CR_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
129,"aggregate analyte","Corundum, petro_count","min_CN_petro_count","CN_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
128,"aggregate analyte","Collophane, petro_count","min_CO_petro_count","CO_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
127,"aggregate analyte","Coal, petro_count","min_CC_petro_count","CC_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
126,"aggregate analyte","Clinozoisite, petro_count","min_CZ_petro_count","CZ_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
125,"aggregate analyte","Cliachite (Bauxite), petro_count","min_CH_petro_count","CH_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
124,"aggregate analyte","Clay-Coated Quartz, petro_count","min_QC_petro_count","QC_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
123,"aggregate analyte","Chrysotile, petro_count","min_CY_petro_count","CY_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
122,"aggregate analyte","Chlorite-Mica, petro_count","min_CM_petro_count","CM_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
121,"aggregate analyte","Chlorite, petro_count","min_CL_petro_count","CL_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
120,"aggregate analyte","Chert (Chalcedony, Jasper, Agate, Onyx), petro_count","min_CD_petro_count","CD_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
119,"aggregate analyte","Cassiterite, petro_count","min_CT_petro_count","CT_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
118,"aggregate analyte","Carbonate Aggregates, petro_count","min_CB_petro_count","CB_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
117,"aggregate analyte","Calcite, petro_count","min_CA_petro_count","CA_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
116,"aggregate analyte","Brucite, petro_count","min_BR_petro_count","BR_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
115,"aggregate analyte","Brookite, petro_count","min_BK_petro_count","BK_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
114,"aggregate analyte","Bronzite, petro_count","min_BZ_petro_count","BZ_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
113,"aggregate analyte","Boehmite, petro_count","min_BE_petro_count","BE_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
112,"aggregate analyte","Biotite-Chlorite, petro_count","min_BC_petro_count","BC_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
111,"aggregate analyte","Biotite, petro_count","min_BT_petro_count","BT_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
110,"aggregate analyte","Beryl, petro_count","min_BY_petro_count","BY_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
109,"aggregate analyte","Basic Glass, petro_count","min_BG_petro_count","BG_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
108,"aggregate analyte","Barite, petro_count","min_BA_petro_count","BA_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
107,"aggregate analyte","Augite, petro_count","min_AU_petro_count","AU_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
106,"aggregate analyte","Arfvedsonite, petro_count","min_AF_petro_count","AF_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
1740,"aggregate analyte","Montmorillonite-Mica, x-ray pm","min_MM_x-ray_pm","MMxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1739,"aggregate analyte","Maghemite, x-ray pm","min_MH_x-ray_pm","MHxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1738,"aggregate analyte","Montmorillonite-Chlorite, x-ray pm","min_MC_x-ray_pm","MCxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1737,"aggregate analyte","Leucite, x-ray pm","min_LI_x-ray_pm","LIxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1736,"aggregate analyte","Lepidocrocite, x-ray pm","min_LE_x-ray_pm","LExrpm","C","4","peak_size","layer","concat","to be added","to be added",
1735,"aggregate analyte","Analcime, x-ray pm","min_LC_x-ray_pm","LCxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1734,"aggregate analyte","Illite (Hydromuscovite), x-ray pm","min_IL_x-ray_pm","ILxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1733,"aggregate analyte","Halite, x-ray pm","min_HA_x-ray_pm","HAxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1732,"aggregate analyte","Cobaltite, x-ray pm","min_CE_x-ray_pm","CExrpm","C","4","peak_size","layer","concat","to be added","to be added",
1731,"aggregate analyte","Allophane, x-ray pm","min_AL_x-ray_pm","ALxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1730,"aggregate analyte","Aegirine-Augite, x-ray pm","min_AI_x-ray_pm","AIxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1729,"aggregate analyte","Zoisite, x-ray pm","min_ZO_x-ray_pm","ZOxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1728,"aggregate analyte","Zircon, x-ray pm","min_ZR_x-ray_pm","ZRxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1727,"aggregate analyte","Zeolite, x-ray pm","min_ZE_x-ray_pm","ZExrpm","C","4","peak_size","layer","concat","to be added","to be added",
1726,"aggregate analyte","Weatherable Mineral, x-ray pm","min_WE_x-ray_pm","WExrpm","C","4","peak_size","layer","concat","to be added","to be added",
1725,"aggregate analyte","Weatherable Aggregates, x-ray pm","min_AR_x-ray_pm","ARxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1724,"aggregate analyte","Wavellite, x-ray pm","min_WV_x-ray_pm","WVxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1723,"aggregate analyte","Vivianite, x-ray pm","min_VI_x-ray_pm","VIxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1722,"aggregate analyte","Vermiculite-Mica, x-ray pm","min_VM_x-ray_pm","VMxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1721,"aggregate analyte","Vermiculite-Hydrobiotite, x-ray pm","min_VH_x-ray_pm","VHxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1720,"aggregate analyte","Vermiculite-Chlorite, x-ray pm","min_VC_x-ray_pm","VCxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1719,"aggregate analyte","Vermiculite, x-ray pm","min_VR_x-ray_pm","VRxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1718,"aggregate analyte","Tremolite, x-ray pm","min_TE_x-ray_pm","TExrpm","C","4","peak_size","layer","concat","to be added","to be added",
1717,"aggregate analyte","Tourmaline, x-ray pm","min_TM_x-ray_pm","TMxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1716,"aggregate analyte","Topaz, x-ray pm","min_TP_x-ray_pm","TPxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1715,"aggregate analyte","Talc, x-ray pm","min_TA_x-ray_pm","TAxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1714,"aggregate analyte","Sulphur, x-ray pm","min_SU_x-ray_pm","SUxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1713,"aggregate analyte","Stilbite, x-ray pm","min_ST_x-ray_pm","STxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1712,"aggregate analyte","Staurolite, x-ray pm","min_SO_x-ray_pm","SOxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1711,"aggregate analyte","Sponge Spicule, x-ray pm","min_SS_x-ray_pm","SSxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1710,"aggregate analyte","Spinel, x-ray pm","min_SN_x-ray_pm","SNxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1709,"aggregate analyte","Sphene, x-ray pm","min_SP_x-ray_pm","SPxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1708,"aggregate analyte","Sphalerite, x-ray pm","min_SG_x-ray_pm","SGxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1707,"aggregate analyte","Sillimanite, x-ray pm","min_SL_x-ray_pm","SLxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1706,"aggregate analyte","Siliceous Aggregates, x-ray pm","min_SA_x-ray_pm","SAxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1705,"aggregate analyte","Siderite, x-ray pm","min_SI_x-ray_pm","SIxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1704,"aggregate analyte","Sericite, x-ray pm","min_SR_x-ray_pm","SRxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1703,"aggregate analyte","Sanidine, x-ray pm","min_FS_x-ray_pm","FSxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1702,"aggregate analyte","Rutile, x-ray pm","min_RU_x-ray_pm","RUxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1701,"aggregate analyte","Riebeckite (Blue Amphibole), x-ray pm","min_RB_x-ray_pm","RBxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1700,"aggregate analyte","Rhodochrosite, x-ray pm","min_RO_x-ray_pm","ROxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1699,"aggregate analyte","Resistant Minerals, x-ray pm","min_RE_x-ray_pm","RExrpm","C","4","peak_size","layer","concat","to be added","to be added",
1698,"aggregate analyte","Resistant Mineraloids, x-ray pm","min_MD_x-ray_pm","MDxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1697,"aggregate analyte","Resistant Aggregates, x-ray pm","min_RA_x-ray_pm","RAxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1696,"aggregate analyte","Quartz, x-ray pm","min_QZ_x-ray_pm","QZxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1695,"aggregate analyte","Pyroxene, x-ray pm","min_PR_x-ray_pm","PRxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1694,"aggregate analyte","Pyrophyllite, x-ray pm","min_PY_x-ray_pm","PYxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1693,"aggregate analyte","Pyrolusite, x-ray pm","min_PU_x-ray_pm","PUxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1692,"aggregate analyte","Pyrite, x-ray pm","min_PI_x-ray_pm","PIxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1691,"aggregate analyte","Potassium Feldspar, x-ray pm","min_FK_x-ray_pm","FKxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1690,"aggregate analyte","Pollen, x-ray pm","min_PN_x-ray_pm","PNxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1689,"aggregate analyte","Plumbojarosite, x-ray pm","min_PJ_x-ray_pm","PJxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1688,"aggregate analyte","Plant Opal, x-ray pm","min_PO_x-ray_pm","POxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1687,"aggregate analyte","Plagioclase Feldspar, x-ray pm","min_FP_x-ray_pm","FPxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1686,"aggregate analyte","Piemontite, x-ray pm","min_PD_x-ray_pm","PDxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1685,"aggregate analyte","Phlogopite, x-ray pm","min_PL_x-ray_pm","PLxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1684,"aggregate analyte","Perovskite, x-ray pm","min_PK_x-ray_pm","PKxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1683,"aggregate analyte","Other, x-ray pm","min_OT_x-ray_pm","OTxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1682,"aggregate analyte","Other Weatherable Minerals, x-ray pm","min_OW_x-ray_pm","OWxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1681,"aggregate analyte","Other Resistant Minerals, x-ray pm","min_OR_x-ray_pm","ORxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1680,"aggregate analyte","Orthoclase, x-ray pm","min_FR_x-ray_pm","FRxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1679,"aggregate analyte","Opaques, x-ray pm","min_OP_x-ray_pm","OPxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1678,"aggregate analyte","Olivine, x-ray pm","min_OV_x-ray_pm","OVxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1677,"aggregate analyte","Oligoclase, x-ray pm","min_FO_x-ray_pm","FOxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1676,"aggregate analyte","Non-Crystalline, x-ray pm","min_NX_x-ray_pm","NXxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1675,"aggregate analyte","Nepheline, x-ray pm","min_NE_x-ray_pm","NExrpm","C","4","peak_size","layer","concat","to be added","to be added",
1674,"aggregate analyte","Muscovite, x-ray pm","min_MS_x-ray_pm","MSxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1673,"aggregate analyte","Montmorillonite, x-ray pm","min_MT_x-ray_pm","MTxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1672,"aggregate analyte","Monazite, x-ray pm","min_MZ_x-ray_pm","MZxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1671,"aggregate analyte","Microcline, x-ray pm","min_FC_x-ray_pm","FCxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1670,"aggregate analyte","Mica, x-ray pm","min_MI_x-ray_pm","MIxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1669,"aggregate analyte","Melilite, x-ray pm","min_ML_x-ray_pm","MLxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1668,"aggregate analyte","Marcasite, x-ray pm","min_MR_x-ray_pm","MRxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1667,"aggregate analyte","Magnetite, x-ray pm","min_MG_x-ray_pm","MGxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1666,"aggregate analyte","Magnesite, x-ray pm","min_ME_x-ray_pm","MExrpm","C","4","peak_size","layer","concat","to be added","to be added",
1665,"aggregate analyte","Lithiophorite, x-ray pm","min_LT_x-ray_pm","LTxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1664,"aggregate analyte","Limonite, x-ray pm","min_LM_x-ray_pm","LMxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1663,"aggregate analyte","Leucoxene, x-ray pm","min_LU_x-ray_pm","LUxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1662,"aggregate analyte","Lepidomelane, x-ray pm","min_LO_x-ray_pm","LOxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1661,"aggregate analyte","Lepidolite, x-ray pm","min_LP_x-ray_pm","LPxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1660,"aggregate analyte","Lamprobolite, x-ray pm","min_LA_x-ray_pm","LAxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1659,"aggregate analyte","Labradorite, x-ray pm","min_FL_x-ray_pm","FLxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1658,"aggregate analyte","Kyanite, x-ray pm","min_KY_x-ray_pm","KYxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1657,"aggregate analyte","Kaolinite, x-ray pm","min_KK_x-ray_pm","KKxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1656,"aggregate analyte","Jarosite, x-ray pm","min_JO_x-ray_pm","JOxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1655,"aggregate analyte","Iron Oxides (Goethite, Magnetite, Hematite, Li), x-ray pm","min_FE_x-ray_pm","FExrpm","C","4","peak_size","layer","concat","to be added","to be added",
1654,"aggregate analyte","Iron Oxide-Coated Quartz, x-ray pm","min_QI_x-ray_pm","QIxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1653,"aggregate analyte","Iddingsite, x-ray pm","min_ID_x-ray_pm","IDxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1652,"aggregate analyte","Hydrobiotite, x-ray pm","min_HB_x-ray_pm","HBxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1651,"aggregate analyte","Hornblende, x-ray pm","min_HN_x-ray_pm","HNxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1650,"aggregate analyte","Hematite, x-ray pm","min_HE_x-ray_pm","HExrpm","C","4","peak_size","layer","concat","to be added","to be added",
1649,"aggregate analyte","Halloysite, x-ray pm","min_KH_x-ray_pm","KHxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1648,"aggregate analyte","Gypsum, x-ray pm","min_GY_x-ray_pm","GYxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1647,"aggregate analyte","Gold, x-ray pm","min_GD_x-ray_pm","GDxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1646,"aggregate analyte","Goethite, x-ray pm","min_GE_x-ray_pm","GExrpm","C","4","peak_size","layer","concat","to be added","to be added",
1645,"aggregate analyte","Glaucophane, x-ray pm","min_GO_x-ray_pm","GOxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1644,"aggregate analyte","Glauconite, x-ray pm","min_GL_x-ray_pm","GLxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1643,"aggregate analyte","Glassy Materials, x-ray pm","min_GM_x-ray_pm","GMxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1642,"aggregate analyte","Glass, x-ray pm","min_GS_x-ray_pm","GSxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1641,"aggregate analyte","Glass Coated Quartz, x-ray pm","min_QG_x-ray_pm","QGxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1640,"aggregate analyte","Glass Coated Opaque, x-ray pm","min_OG_x-ray_pm","OGxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1639,"aggregate analyte","Glass Coated Hornblende, x-ray pm","min_HG_x-ray_pm","HGxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1638,"aggregate analyte","Glass Coated Grain, x-ray pm","min_GC_x-ray_pm","GCxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1637,"aggregate analyte","Glass Coated Feldspar, x-ray pm","min_FG_x-ray_pm","FGxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1636,"aggregate analyte","Glass Aggregates, x-ray pm","min_GA_x-ray_pm","GAxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1635,"aggregate analyte","Gibbsite, x-ray pm","min_GI_x-ray_pm","GIxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1634,"aggregate analyte","Garnet, x-ray pm","min_GN_x-ray_pm","GNxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1633,"aggregate analyte","Galena, x-ray pm","min_GG_x-ray_pm","GGxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1632,"aggregate analyte","Foraminifera, x-ray pm","min_FF_x-ray_pm","FFxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1631,"aggregate analyte","Fluorite, x-ray pm","min_FU_x-ray_pm","FUxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1630,"aggregate analyte","Ferromagnesium Mineral, x-ray pm","min_FM_x-ray_pm","FMxrpm","C","4","peak_size","layer","concat","to be added","to be added",
736,"derived_analyte","Cation Exchange Capacity, Sum of Cations, CECd-Set 1","cec_sum_cecd1","CECsum_d-4_S","F","4.1","meq/100g","layer",,"(base_sum + acid_tea)","This is the calculated CEC at pH 8.2. It is calculated by (BASE_SUM+ACID_TEA). It is reported as meq per 100 grams sample on a <2 mm base.","<2 mm"
735,"derived_analyte","Base Saturation, NH4OAc, pH 7.0, CECd-Set 3","bsesat_cecd3","BSSBas_d-6_S","I","3.0","%","layer",,"([base_sum] / [cec_nh4]) * 100","NH4OAC base saturation (pH 7.0) is calculated by (BASE_SUM/CEC_NH4)*100.","<2 mm"
734,"derived_analyte","Base Saturation, NH4OAc, pH 7.0, CECd-Set 2","bsesat_cecd2","BSSBas_d-5_S","I","3.0","%","layer",,"([base_sum] / [cec_nh4]) * 100","NH4OAC base saturation (pH 7.0) is calculated by (BASE_SUM/CEC_NH4)*100.","<2 mm"
733,"derived_analyte","Base Saturation, NH4OAc, pH 7.0, CECd-Set 1","bsesat_cecd1","BSSBas_d-4_S","I","3.0","%","layer",,"([base_sum] / [cec_nh4]) * 100","NH4OAC base saturation (pH 7.0) is calculated by (BASE_SUM/CEC_NH4)*100.","<2 mm"
732,"derived_analyte","Base Saturation, Sum of Cations, pH 8.2, CECd-Set 9","bsecat_cecd9","BSSCat_d-19_S","I","3.0","%","layer",,"([base_sum] / [cec_sum]) * 100","Base saturation by sum of cations (pH 8.2) is calculated by (BASE_SUM/CEC_SUM)*100.","<2 mm"
731,"derived_analyte","Base Saturation, Sum of Cations, pH 8.2, CECd-Set 15","bsecat_cecd15","BSSCat_d-25_S","I","3.0","%","layer",,"([base_sum] / [cec_sum]) * 100","Base saturation by sum of cations (pH 8.2) is calculated by (BASE_SUM/CEC_SUM)*100.","<80 mesh"
730,"derived_analyte","Base Saturation, Sum of Cations, pH 8.2, CECd-Set 14","bsecat_cecd14","BSSCat_d-24_S","I","3.0","%","layer",,"([base_sum] / [cec_sum]) * 100","Base saturation by sum of cations (pH 8.2) is calculated by (BASE_SUM/CEC_SUM)*100.","<80 mesh"
729,"derived_analyte","Base Saturation, Sum of Cations, pH 8.2, CECd-Set 13","bsecat_cecd13","BSSCat_d-23_S-SK","I","3.0","%","layer",,"([base_sum] / [cec_sum]) * 100","Base saturation by sum of cations (pH 8.2) is calculated by (BASE_SUM/CEC_SUM)*100.","<2 mm"
728,"derived_analyte","Base Saturation, Sum of Cations, pH 8.2, CECd-Set 5","bsecat_cecd5","BSSCat_d-15_S","I","3.0","%","layer",,"([base_sum] / [cec_sum]) * 100","Base saturation by sum of cations (pH 8.2) is calculated by (BASE_SUM/CEC_SUM)*100.","<2 mm"
727,"derived_analyte","Base Saturation, Sum of Cations, pH 8.2, CECd-Set 12","bsecat_cecd12","BSSCat_d-22_N","I","3.0","%","layer",,"([base_sum] / [cec_sum]) * 100","Base saturation by sum of cations (pH 8.2) is calculated by (BASE_SUM/CEC_SUM)*100.","<2 mm"
726,"derived_analyte","Base Saturation, Sum of Cations, pH 8.2, CECd-Set 11","bsecat_cecd11","BSSCat_d-21_M","I","3.0","%","layer",,"([base_sum] / [cec_sum]) * 100","Base saturation by sum of cations (pH 8.2) is calculated by (BASE_SUM/CEC_SUM)*100.","<2 mm"
725,"derived_analyte","Base Saturation, Sum of Cations, pH 8.2, CECd-Set 10","bsecat_cecd10","BSSCat_d-20_GP","I","3.0","%","layer",,"([base_sum] / [cec_sum]) * 100","Base saturation by sum of cations (pH 8.2) is calculated by (BASE_SUM/CEC_SUM)*100.","<2 mm"
724,"derived_analyte","Base Saturation, Sum of Cations, pH 8.2, CECd-Set 1","bsecat_cecd1","BSSCat_d-11_S","I","3.0","%","layer",,"([base_sum] / [cec_sum]) * 100","Base saturation by sum of cations (pH 8.2) is calculated by (BASE_SUM/CEC_SUM)*100.","<2 mm"
261,"aggregate analyte","Clay PSDA, Moist, Dith, Pipet","clay_tot_Moist_Dith","ClyTMD","F","4.1","% wt","layer","mean","To Be Added","Total clay is the soil separate with <0.002 mm particle diameter. Clay size carbonate is included. Total clay is reported as a weight percent of the <2 mm fraction., PSDA, Moist, Dith, Pipet",
260,"aggregate analyte","Silt, Fine PSDA, Dith, Pipet","silt_f_Dith","SiltFD","F","4.1","% wt","layer","mean","To Be Added","Fine silt is the soil separate with 0.002 to 0.02 mm particle diameter. It is reported as a gravimetric percent on a <2 mm base., PSDA, Dith, Pipet",
259,"aggregate analyte","Sand, Very Fine PSDA, Dith, Pipet","sand_vf_Dith","SndVFD","F","4.1","% wt","layer","mean","To Be Added","Very fine sand is the soil separate with 0.05 to 0.10 mm particle diameter. It is reported as a gravimetric percent on a <2 mm base., PSDA, Dith, Pipet",
258,"aggregate analyte","Sand, Very Coarse PSDA, Dith, Pipet","sand_vc_Dith","SndVCD","F","4.1","% wt","layer","mean","To Be Added","Very coarse sand is the soil separate with 1.0 to 2.0 mm particle diameter. It is reported as a gravimetric percent on a <2 mm base., PSDA, Dith, Pipet",
257,"aggregate analyte","Sand, Medium PSDA, Dith, Pipet","sand_m_Dith","SndM_D","F","4.1","% wt","layer","mean","To Be Added","Medium sand is the soil separate with 0.25 to 0.50 mm particle diameter. It is reported as a gravimetric percent on a <2 mm base., PSDA, Dith, Pipet",
256,"aggregate analyte","Sand, Fine PSDA, Dith, Pipet","sand_f_Dith","SndF_D","F","4.1","% wt","layer","mean","To Be Added","Fine sand is the soil separate with 0.10 to 0.25 mm diameter particles. It is reported as a gravimetric percent on a <2 mm base., PSDA, Dith, Pipet",
255,"aggregate analyte","Sand, Coarse PSDA, Dith, Pipet","sand_c_Dith","SndC_D","F","4.1","% wt","layer","mean","To Be Added","Coarse sand is the soil separate with 0.5 to 1.0 mm particle diameter. It is reported a gravimetric percent on a <2 mm base., PSDA, Dith, Pipet",
254,"aggregate analyte","Clay PSDA, Dith, Pipet","clay_tot_Dith","Cly_TD","F","4.1","% wt","layer","mean","To Be Added","Total clay is the soil separate with <0.002 mm particle diameter. Clay size carbonate is included. Total clay is reported as a weight percent of the <2 mm fraction., PSDA, Dith, Pipet",
253,"aggregate analyte","Phosphorus, Olsen Extractable","p_olsn","POlsen","F","6.1","mg/kg","layer","mean","To Be Added","The Olsen extractable phosphorus is used as an indicator of available phosphorus in calcareous soil materials (pH >6).",
252,"aggregate analyte","Phosphorus, New Zealand P Retention","p_nz","P_nz","I","3.0","%","layer","mean","To Be Added","The New Zealand phosphorus retention is the gravimetric percent phosphorus removed from a solution by equilibration with a sample. It is reported on a <2 mm base. High P retention indicates andic material.",
251,"aggregate analyte","Phosphorus, Citric Acid Extractable","p_citx","Pcitad","F","6.1","mg/kg","layer","mean","To Be Added","The phosphorus extractable by citric acid is an indicator of available phosphorus in the sample, reported as milligrams per kilogram on a <2 mm base.",
250,"aggregate analyte","Phosphorus, Bray-2 Extractable","p_bray2","PBray2","F","6.1","mg/kg","layer","mean","To Be Added","This is the phosphorus extractable by the Bray-2 method, reported as milligrams per kilogram on a <2 mm base. Bray-2 extracts both adsorbed and easily acid-soluble forms of P.",
249,"aggregate analyte","Phosphorus, Bray-1 Extractable","p_bray1","PBray1","F","6.1","mg/kg","layer","mean","To Be Added","This is the phosphorus extractable by the Bray-1 method, reported as milligrams per kilogram on a <2 mm base. It is used as an index of plant-available phosphorus. Bray-1 extracts adsorbed P.",
248,"aggregate analyte","Phosphorus, Water Soluble","p_h2o","P_h2o","F","6.1","mg/kg","layer","mean","To Be Added","The water soluble phosphorus is the fraction extracted by distilled water. It represents an attempt to approximate the P concentration in the soil solution, i.e. the mobile P.",
247,"aggregate analyte","pH, 1:1 Soil-Water Suspension","ph_h2o","pH_h2o","F","3.1","(NA)","layer","mean","To Be Added","The pH, 1:1 soil-water suspension is the pH of a sample measured in distilled water at a 1:1 soil:solution ratio. If wider ratios increase the pH, salts are indicated.",
246,"aggregate analyte","pH, Oxidized (sulfidic)","ph_ox","pH_ox","F","3.1","(NA)","layer","mean","To Be Added","The oxidized pH is the pH of a sample measured after incubation while saturated with distilled water. It is normally used to indicate the acid producing potential of acid sulfate materials.",
245,"aggregate analyte","pH, 1:50 Soil-NaFl Suspension","ph_naf","pH_naf","F","3.1","(NA)","layer","mean","To Be Added","The pH, 1:50 soil-NaF suspension is the pH of a sample measured in 1.0N NaF at a 1:50 soil:solution ratio. If PH_NAF is > 9.4, andic materials are indicated.",
371,"aggregate analyte","Cadmium, Total","cd_tot","Cd_tot","F","6.0","mg/kg","layer","mean","To Be Added","Total Cd is the cadmium measured after total dissolution of a size fraction of soil material. It is stored and reported as milligrams per kilogram on the base of the size fraction used.",
370,"aggregate analyte","Boron, Total","b_tot","B_tot","F","6.0","mg/kg","layer","mean","To Be Added","Total boron is the amount measured after total dissolution of a size fraction of soil material. It is stored and reported as milligrams per kilogram on the base of the size fraction used.",
369,"aggregate analyte","Arsenic, Total","as_tot","As_tot","F","6.0","mg/kg","layer","mean","To Be Added","Total As is the arsenic measured after total dissolution of a size fraction of soil material. It is stored and reported as milligrams per kilogram on the base of the size fraction used.",
368,"aggregate analyte","Aluminum, Total","al_tot","Al_tot","F","6.0","% wt","layer","mean","To Be Added","Total Al is the aluminum measured after total dissolution of a size fraction of soil material. It is stored as percent of the element and reported as percent oxide on the base of the size fraction used.",
367,"aggregate analyte","Kaolinite, tga","min_KK_tga","KK_tga","F","3.0","%","layer","mean","To Be Added","to be added",
366,"aggregate analyte","Goethite, tga","min_GE_tga","GE_tga","F","3.0","%","layer","mean","To Be Added","To Be Added",
365,"aggregate analyte","Gibbsite, tga","min_GI_tga","GI_tga","F","3.0","%","layer","mean","To Be Added","to be added",
364,"aggregate analyte","Gypsum, tga","min_GY_tga","GY_tga","F","3.0","%","layer","mean","to be added","to be added",
363,"aggregate analyte","Surface Area, Ethylene Glycol Monoethyl Ether","sa_egme","EGME","F","6.1","mg/g","layer","mean","To Be Added","The EGME surface area is an indicator of the sample surface available to adsorb a weakly polar liquid (ethylene glycol monoethyl ether). It is reported as grams EGME per gram of sample.",
362,"aggregate analyte","Sulfur, Total","s_tot","S_tot","F","4.2","% wt","layer","mean","To Be Added","Total sulfur is the sum of organic and inorganic forms, reported as a gravimetric percent on a <2 mm base.",
361,"aggregate analyte","Water Content, Saturated Paste","h2osatx","SP_sp","F","4.1","% wt","layer","mean","To Be Added","Water content of the saturation paste is the gravimetric percent water in a sample prior to collection of the saturation extract.",
360,"aggregate analyte","Sulfate, Saturation Extract","so4_satx","SO4_sx","F","5.1","mmol(-)/L","layer","mean","To Be Added","Sulfate in the saturation extract is the fraction removed from a sample by saturating the sample with distilled H2O, then vacuum extracting the water. It is reported as meq per liter of extract.",
359,"aggregate analyte","Sodium, Saturation Extract","na_satx","Na_sx","F","5.1","mmol(+)/L","layer","mean","To Be Added","Sodium in the saturation extract is the fraction removed from a sample by saturating the sample with distilled H2O, then vacuum extracting the water. It is reported as meq per liter of extract.",
358,"aggregate analyte","Resistivity, Saturated Paste","resist","Resist","I","7.0","ohms/cm","layer","mean","To Be Added","Resistivity is the electrical resistance of a saturated soil paste in a standard resistance cup, reported as ohms per centimeter on the <2 mm fraction. It is a measure of the amount of soluble salts in the sample.",
357,"aggregate analyte","Potassium, Saturation Extract","k_satx","K_sx","F","5.1","mmol(+)/L","layer","mean","To Be Added","Potassium in the saturation extract is the fraction removed from a sample by saturating the sample with distilled H2O, then vacuum extracting the water. It is reported as meq per liter of extract.",
356,"aggregate analyte","Phosphate, Saturation Extract","p_satx","P_sx","F","5.1","mmol(-)/L","layer","mean","To Be Added","PO4 in the saturation extract is the fraction removed from a sample by saturating the sample with distilled H2O, then vacuum extracting the water. It is reported as meq per liter of extract.",
355,"aggregate analyte","Nitrite, Saturation Extract","no2_satx","NO2_sx","F","5.1","mmol(-)/L","layer","mean","To Be Added","Nitrite in the saturation extract is the fraction removed from a sample by saturating the sample with distilled H2O, then vacuum extracting the water. It is reported as meq per liter of extract.",
354,"aggregate analyte","Nitrate, Saturation Extract","no3_satx","NO3_sx","F","5.1","mmol(-)/L","layer","mean","To Be Added","Nitrate in the saturation extract is the fraction removed from a sample by saturating the sample with distilled H2O, then vacuum extracting the water. It is reported as meq per liter of extract.",
1366,"aggregate analyte","Arsenic, Water Extractable","as_watx","As_wx","F","3.1","µg/kg","layer","mean","To Be Added","The arsenic extracted by the Water solution.",
1365,"aggregate analyte","Aluminum, Water Extractable","al_watx","Al_wx","F","3.1","µg/kg","layer","mean","To Be Added","The aluminum extracted by the Water solution.",
1364,"aggregate analyte","Electrical Conductivity, water extract","ec_watx","EC_wx","F","5.2","dS/m","layer","mean","EC = A 10^B ( 0.8696 - 0.01951 C + 0.000186 C^2 ) 2 D / ( 141.12 / ( E 10^F ( 0.8696 - 0.01951 G + 0.000186 G^2 ) 2 D )",,
1363,"aggregate analyte","pH, Water Extract","ph_watx","pH_wx","F","3.1","(NA)","layer","mean","To Be Added","The pH, water extract is the pH of the solution extracted from the sample with water. It is used as an indicator of the irrigated pH of soils with water.",
1360,"aggregate analyte","Sulfate, water extract","so4_watx","SO4_wx","F","5.1","µg/kg","layer","mean","To Be Added","Sulfate in the water extract. It is reported as meq per liter of extract.",
1359,"aggregate analyte","Phosphate, water extract","po4_watx","PO4_wx","F","5.1","µg/kg","layer","mean","To Be Added","PO4 in the water extract. It is reported as meq per liter of extract.",
1358,"aggregate analyte","Nitrite, water extract","no2_N_watx","NO2_wx","F","5.1","µg/kg","layer","mean","To Be Added","Nitrite in the water extract. It is reported as meq per liter of extract.",
1357,"aggregate analyte","Nitrate, water extract","no3_N_watx","NO3_wx","F","5.1","µg/kg","layer","mean","To Be Added","Nitrate in the water extract. It is reported as meq per liter of extract.",
1356,"aggregate analyte","Fluoride, water extract","fl_watx","F_wx","F","5.1","µg/kg","layer","mean","To Be Added","Fluoride in the water extract. It is reported as meq per liter of extract.",
1355,"aggregate analyte","Chloride, water extract","cl_watx","Cl_wx","F","5.1","µg/kg","layer","mean","To Be Added","Chloride in the water extract. It is reported as meq per liter of extract.",
1354,"aggregate analyte","Bromide, water extract","br_watx","Br_wx","F","5.1","µg/kg","layer","mean","to be added","The bromide anion in the water extract.",
1353,"aggregate analyte","Boron, water extract","b_watx","B_wx","F","5.1","µg/kg","layer","mean","To Be Added","Boron in the water extract.",
1352,"aggregate analyte","Acetate, water extract","oac_watx","OAc_wx","F","5.1","µg/kg","layer","mean","TO Be Added","The acetate anion in the water extract.",
1351,"aggregate analyte","Strontium, Element Mehlich3 Extractable","sr_el_meh3","SrMeh3","F","3.1","mg/kg","layer","mean","To Be Added","The strontium extracted by the Mehlich III solution.",
1350,"aggregate analyte","Silicon, Element Mehlich3 Extractable","si_el_meh3","SiMeh3","F","3.1","mg/kg","layer","mean","To Be Added","The silicon extracted by the Mehlich III solution.",
1349,"aggregate analyte","Molybdenum, Element Mehlich3 Extractable","mo_el_meh3","MoMeh3","F","3.1","mg/kg","layer","mean","To Be Added","The molybdenum extracted by the Mehlich III solution.",
1348,"aggregate analyte","Zinc, Element Mehlich3 Extractable","zn_el_meh3","ZnMeh3","F","3.1","mg/kg","layer","mean","To Be Added","The zinc extracted by the Mehlich III solution.",
1347,"aggregate analyte","Selenium, Element Mehlich3 Extractable","se_el_meh3","SeMeh3","F","3.1","mg/kg","layer","mean","To Be Added","The selenium extracted by the Mehlich III solution.",
1346,"aggregate analyte","Lead, Element Mehlich3 Extractable","pb_el_meh3","PbMeh3","F","3.1","mg/kg","layer","mean","To Be Added","The lead extracted by the Mehlich III solution.",
1345,"aggregate analyte","Phosphorus, Element Mehlich3 Extractable","p_el_meh3","PMeh3","F","3.1","mg/kg","layer","mean","To Be Added","The phosphorus extracted by the Mehlich III solution.",
1344,"aggregate analyte","Nickel, Element Mehlich3 Extractable","ni_el_meh3","NiMeh3","F","3.1","mg/kg","layer","mean","To Be Added","The nickel extracted by the Mehlich III solution.",
1343,"aggregate analyte","Sodium, Element Mehlich3 Extractable","na_el_meh3","NaMeh3","F","3.1","mg/kg","layer","mean","To Be Added","The sodium extracted by the Mehlich III solution.",
1342,"aggregate analyte","Manganese, Element Mehlich3 Extractable","mn_el_meh3","MnMeh3","F","3.1","mg/kg","layer","mean","To Be Added","The manganese extracted by the Mehlich III solution.",
1341,"aggregate analyte","Magnesium, Element Mehlich3 Extractable","mg_el_meh3","MgMeh3","F","3.1","mg/kg","layer","mean","To Be Added","The magnesium extracted by the Mehlich III solution.",
1340,"aggregate analyte","Potassium, Element Mehlich3 Extractable","k_el_meh3","KMeh3","F","3.1","mg/kg","layer","mean","To Be Added","The potassium extracted by the Mehlich III solution.",
1339,"aggregate analyte","Iron, Element Mehlich3 Extractable","fe_el_meh3","FeMeh3","F","3.1","mg/kg","layer","mean","To Be Added","The iron extracted by the Mehlich III solution.",
1338,"aggregate analyte","Copper, Element Mehlich3 Extractable","cu_el_meh3","CuMeh3","F","3.1","mg/kg","layer","mean","To Be Added","The copper extracted by the Mehlich III solution.",
1337,"aggregate analyte","Chromium, Element Mehlich3 Extractable","cr_el_meh3","CrMeh3","F","3.1","mg/kg","layer","mean","To Be Added","The chromium extracted by the Mehlich III solution.",
1336,"aggregate analyte","Cobalt, Element Mehlich3 Extractable","co_el_meh3","CoMeh3","F","3.1","mg/kg","layer","mean","To Be Added","The cobalt extracted by the Mehlich III solution.",
1335,"aggregate analyte","Cadmium, Element Mehlich3 Extractable","cd_el_meh3","CdMeh3","F","3.1","mg/kg","layer","mean","To Be Added","The cadmium extracted by the Mehlich III solution.",
1334,"aggregate analyte","Calcium, Element Mehlich3 Extractable","ca_el_meh3","CaMeh3","F","3.1","mg/kg","layer","mean","To Be Added","The calcium extracted by the Mehlich III solution.",
1333,"aggregate analyte","Barium, Element Mehlich3 Extractable","ba_el_meh3","BaMeh3","F","3.1","mg/kg","layer","mean","To Be Added","The barium extracted by the Mehlich III solution.",
1332,"aggregate analyte","Arsenic, Element Mehlich3 Extractable","as_el_meh3","AsMeh3","F","3.1","mg/kg","layer","mean","To Be Added","The arsenic extracted by the Mehlich III solution.",
1008,"derived_analyte","Palygorskite, mica_adjustment","min_PG_mica_adj","PF_mica","I","3.0","%","layer","mean","to be added","to be added",
1007,"derived_analyte","Palagonite, mica_adjustment","min_PA_mica_adj","PA_mica","I","3.0","%","layer","mean","to be added","to be added",
1006,"derived_analyte","Montmorillonite-Vermiculite, mica_adjustment","min_MV_mica_adj","MV_mica","I","3.0","%","layer","mean","to be added","to be added",
1005,"derived_analyte","Montmorillonite-Mica, mica_adjustment","min_MM_mica_adj","MM_mica","I","3.0","%","layer","mean","to be added","to be added",
1004,"derived_analyte","Maghemite, mica_adjustment","min_MH_mica_adj","MH_mica","I","3.0","%","layer","mean","to be added","to be added",
1003,"derived_analyte","Montmorillonite-Chlorite, mica_adjustment","min_MC_mica_adj","MC_mica","I","3.0","%","layer","mean","to be added","to be added",
1002,"derived_analyte","Leucite, mica_adjustment","min_LI_mica_adj","LI_mica","I","3.0","%","layer","mean","to be added","to be added",
1001,"derived_analyte","Lepidocrocite, mica_adjustment","min_LE_mica_adj","LE_mica","I","3.0","%","layer","mean","to be added","to be added",
1000,"derived_analyte","Analcime, mica_adjustment","min_LC_mica_adj","LC_mica","I","3.0","%","layer","mean","to be added","to be added",
999,"derived_analyte","Illite (Hydromuscovite), mica_adjustment","min_IL_mica_adj","IL_mica","I","3.0","%","layer","mean","to be added","to be added",
998,"derived_analyte","Halite, mica_adjustment","min_HA_mica_adj","HA_mica","I","3.0","%","layer","mean","to be added","to be added",
997,"derived_analyte","Cobaltite, mica_adjustment","min_CE_mica_adj","CE_mica","I","3.0","%","layer","mean","to be added","to be added",
996,"derived_analyte","Allophane, mica_adjustment","min_AL_mica_adj","AL_mica","I","3.0","%","layer","mean","to be added","to be added",
995,"derived_analyte","Aegirine-Augite, mica_adjustment","min_AI_mica_adj","AL_mica","I","3.0","%","layer","mean","to be added","to be added",
898,"derived_analyte","Foraminifera, mica_adjustment","min_FF_mica_adj","FF_mica","I","3.0","%","layer","mean","to be added","to be added",
897,"derived_analyte","Fluorite, mica_adjustment","min_FU_mica_adj","FU_mica","I","3.0","%","layer","mean","to be added","to be added",
896,"derived_analyte","Ferromagnesium Mineral, mica_adjustment","min_FM_mica_adj","FM_mica","I","3.0","%","layer","mean","to be added","to be added",
895,"derived_analyte","Feldspathoids, mica_adjustment","min_FZ_mica_adj","FZ_mica","I","3.0","%","layer","mean","to be added","to be added",
894,"derived_analyte","Feldspar, mica_adjustment","min_FD_mica_adj","FD_mica","I","3.0","%","layer","mean","to be added","to be added",
893,"derived_analyte","Epidote, mica_adjustment","min_EP_mica_adj","EP_mica","I","3.0","%","layer","mean","to be added","to be added",
892,"derived_analyte","Enstatite, mica_adjustment","min_EN_mica_adj","EN_mica","I","3.0","%","layer","mean","to be added","to be added",
891,"derived_analyte","Dumortierite, mica_adjustment","min_DU_mica_adj","DU_mica","I","3.0","%","layer","mean","to be added","to be added",
890,"derived_analyte","Dolomite, mica_adjustment","min_DL_mica_adj","DL_mica","I","3.0","%","layer","mean","to be added","to be added",
889,"derived_analyte","Diopside, mica_adjustment","min_DP_mica_adj","DP_mica","I","3.0","%","layer","mean","to be added","to be added",
888,"derived_analyte","Diatoms, mica_adjustment","min_DI_mica_adj","DI_mica","I","3.0","%","layer","mean","to be added","to be added",
887,"derived_analyte","Cristobalite, mica_adjustment","min_CR_mica_adj","CR_mica","I","3.0","%","layer","mean","to be added","to be added",
886,"derived_analyte","Corundum, mica_adjustment","min_CN_mica_adj","CN_mica","I","3.0","%","layer","mean","to be added","to be added",
885,"derived_analyte","Collophane, mica_adjustment","min_CO_mica_adj","CO_mica","I","3.0","%","layer","mean","to be added","to be added",
884,"derived_analyte","Coal, mica_adjustment","min_CC_mica_adj","CC_mica","I","3.0","%","layer","mean","to be added","to be added",
883,"derived_analyte","Clinozoisite, mica_adjustment","min_CZ_mica_adj","CZ_mica","I","3.0","%","layer","mean","to be added","to be added",
882,"derived_analyte","Cliachite (Bauxite), mica_adjustment","min_CH_mica_adj","CH_mica","I","3.0","%","layer","mean","to be added","to be added",
881,"derived_analyte","Clay-Coated Quartz, mica_adjustment","min_QC_mica_adj","QC_mica","I","3.0","%","layer","mean","to be added","to be added",
880,"derived_analyte","Chrysotile, mica_adjustment","min_CY_mica_adj","CY_mica","I","3.0","%","layer","mean","to be added","to be added",
879,"derived_analyte","Chlorite-Mica, mica_adjustment","min_CM_mica_adj","CM_mica","I","3.0","%","layer","mean","to be added","to be added",
878,"derived_analyte","Chlorite, mica_adjustment","min_CL_mica_adj","CL_mica","I","3.0","%","layer","mean","to be added","to be added",
877,"derived_analyte","Cassiterite, mica_adjustment","min_CT_mica_adj","CT_mica","I","3.0","%","layer","mean","to be added","to be added",
876,"derived_analyte","Carbonate Aggregates, mica_adjustment","min_CB_mica_adj","CB_mica","I","3.0","%","layer","mean","to be added","to be added",
875,"derived_analyte","Calcite, mica_adjustment","min_CA_mica_adj","CA_mica","I","3.0","%","layer","mean","to be added","to be added",
874,"derived_analyte","Brucite, mica_adjustment","min_BR_mica_adj","BR_mica","I","3.0","%","layer","mean","to be added","to be added",
873,"derived_analyte","Brookite, mica_adjustment","min_BK_mica_adj","BK_mica","I","3.0","%","layer","mean","to be added","to be added",
872,"derived_analyte","Bronzite, mica_adjustment","min_BZ_mica_adj","BZ_mica","I","3.0","%","layer","mean","to be added","to be added",
871,"derived_analyte","Boehmite, mica_adjustment","min_BE_mica_adj","BE_mica","I","3.0","%","layer","mean","to be added","to be added",
870,"derived_analyte","Biotite-Chlorite, mica_adjustment","min_BC_mica_adj","BC_mica","I","3.0","%","layer","mean","to be added","to be added",
869,"derived_analyte","Biotite, mica_adjustment","min_BT_mica_adj","BT_mica","I","3.0","%","layer","mean","to be added","to be added",
868,"derived_analyte","Beryl, mica_adjustment","min_BY_mica_adj","BY_mica","I","3.0","%","layer","mean","to be added","to be added",
867,"derived_analyte","Basic Glass, mica_adjustment","min_BG_mica_adj","BG_mica","I","3.0","%","layer","mean","to be added","to be added",
866,"derived_analyte","Barite, mica_adjustment","min_BA_mica_adj","BA_mica","I","3.0","%","layer","mean","to be added","to be added",
865,"derived_analyte","Augite, mica_adjustment","min_AU_mica_adj","AU_mica","I","3.0","%","layer","mean","to be added","to be added",
1927,"derived_analyte","Less than 2mm porosity, volume percent","pore_lt2mm_vol","PoreLT2V_d-1_S","F","2.0","%","layer",,,"Porosity less than 2 mm soil",
1926,"derived_analyte","Total porosity, volume percent","pore_total_vol","PoreTotV_d-1_S","F","2.0","%","layer",,,"Porosity total soil",
1925,"aggregate analyte","Bulk Density, <2mm Fraction, 1/3 Bar, uncorrected","db_13bu","Db1/3","F","4.2","g/cc","layer","mean","[db_13bu]","Bulk density, <2 mm fraction, 1/3 bar is the weight per unit volume of the <2 mm fraction, with volume being measured after equilibration at 1/3 bar water tension with rock fragments. It is reported as grams per cubic centimeter on a <2 mm base.",
1924,"aggregate analyte","Water Retention, 0 Bar, <2mm Sieve, Air-dry","w0bl2","W0BL2","F","5.1","% wt","layer","mean","to be added","0 bar water, <2mm sieved, airdry is the gravimetric water content of <2 mm sieved air dry samples after equilibration at 0 bar water tension (saturated). It is reported on a <2 mm base.",
1923,"aggregate analyte","Silt, Total, elutriation","silt_tot_psa4","Silt_e","F","4.1","% wt","layer","mean",,"Total silt is the soil separate with 0.002 to 0.05 mm particle size. It is reported as a gravimetric percent on a <2 mm base.","<2 mm"
1922,"aggregate analyte","Sand, Very Fine","sand_vf_psa4","SndVFp","F","4.1","% wt","layer","mean","To Be Added","Very fine sand is the soil separate with 0.05 to 0.10 mm particle diameter. It is reported as a gravimetric percent on a <2 mm base.",
1921,"aggregate analyte","Sand, Very Coarse","sand_vc_psa4","SndVCp","F","4.1","% wt","layer","mean","To Be Added","Very coarse sand is the soil separate with 1.0 to 2.0 mm particle diameter. It is reported as a gravimetric percent on a <2 mm base.",
1920,"derived_analyte","Sand, Total","sand_tot_psa4","Sand_d-1_S","F","4.1","% wt","layer",,"VCSand + CSand + MSand + FSand + VFSand","Total sand is the soil separate with 0.05 to 2.0 mm particle diameter. It is reported a gravimetric percent on a <2 mm base. S prep","<2 mm"
1919,"aggregate analyte","Sand, Medium","sand_m_psa4","SndM_p","F","4.1","% wt","layer","mean","To Be Added","Medium sand is the soil separate with 0.25 to 0.50 mm particle diameter. It is reported as a gravimetric percent on a <2 mm base.",
1918,"aggregate analyte","Sand, Fine","sand_f_psa4","SndF_p","F","4.1","% wt","layer","mean","To Be Added","Fine sand is the soil separate with 0.10 to 0.25 mm diameter particles. It is reported as a gravimetric percent on a <2 mm base.",
1917,"aggregate analyte","Sand, Coarse","sand_c_psa4","SndC_p","F","4.1","% wt","layer","mean","To Be Added","Coarse sand is the soil separate with 0.5 to 1.0 mm particle diameter. It is reported a gravimetric percent on a <2 mm base.",
1916,"aggregate analyte","Clay","clay_tot_psa4","ClyT_p","F","4.1","% wt","layer","mean","To Be Added","Total clay is the soil separate with <0.002 mm particle diameter. Clay size carbonate is included. Total clay is reported as a weight percent of the <2 mm fraction.",
1915,"derived_analyte","Aeration porosity, cores","pore_aeration","PoreA_d-2_S","F","4.1","%","layer","mean",,"Using 3x3 cores. Leamer, R.W. and B. Shaw. ""A simple apparatus for measuring non-capillary porosity on an extensive scale."" J. Am. Soc. Agr. 33 (1941): 1003-1008.",
1914,"derived_analyte","Total porosity","pore_total","PoreT_d-1_S","F","4.1","%","layer","mean",,"Saturated weight minus oven dry weight divided by volume times 100",
1913,"derived_analyte","Hydraulic Conductivity","hyd_cond","Hydcond_d-1_S","F","4.1","%","layer","mean",,"Hydraulic Conductivity",
1912,"derived_analyte","Aeration porosity","pore_aeration","PoreA_d-1_S","F","4.1","%","layer","mean",,"Aeration porosity",
1911,"aggregate analyte","Vermiculite-Hydroxy-Interlayered Vermiculite, x-ray, percent","min_VV_x-ray_p","Vvxrayp","I","3.0","%","layer","mean",,"to be added","<0.002 mm"
1910,"aggregate analyte","Hydroxy-Interlayered Smectite, x-ray, percent","min_HS_x-ray_p","Hsxrayp","I","3.0","%","layer","mean",,"to be added","<0.002 mm"
650,"derived_analyte","Cation Exchange Capacity, Effective, CEC-Set 3","ecec_cec3","ECEC_d-3_S","F","4.1","meq/100g","layer",,"Sum of bases + AL_KCL","The effective cation exchange capacity is calculated by BASE_SUM+AL_KCL. It is not calculated if soluble salts are present. It is reported as meq per 100 grams on a <2 mm base.","<2 mm"
649,"derived_analyte","Ratio, CEC NH4OAc/Clay, <2mm, CEC-Set 3","cec7_cly_cec3","cec7cl_d-3_S","F","5.2","(NA)","layer",,"cec_nh4 / clay_tot_psa","This ratio is calculated by CEC_NH4/Clay. It provides an index to clay activity, and allows inferences about clay mineralogy, the contribution of clay to the exchange capacity, and solution chemistry to be made.","<2 mm"
648,"derived_analyte","Aluminum Saturation, CEC-Set 3","al_sat_cec3","AlSat_d-3_S","I","3.0","%","layer",,"(al_kcl/(ecec_cec))*100","Aluminum saturation is calculated by (AL_KCL/(Sum of bases))*100. It provides some inference of potential Al toxicity problems, although many other factors influence Al toxicity.","<2 mm"
647,"derived_analyte","Ratio, Total Carbon to Nitrogen, Elementar, S prep","c_n_ra","CNrat_d-2_S","F","3.0","(NA)","layer",,"(c_tot_ncs - 0.12 * caco3) / n_tot_ncs","The carbon to nitrogen ratio is calculated by C_TOT_NCS/N_TOT_NCS. It provides information related to soil fertility and the state of organic matter decomposition. It is reported on a <2 mm base.","<80 Mesh"
646,"derived_analyte","Resistant Minerals, Total, S prep, fs","resist_min_tot_fs","RMfs_d-1_S","I","3.0","%","layer",,"to be added","Total sand is the soil separate with 0.05 to 2.0 mm particle diameter. It is reported a gravimetric percent on a <2 mm base.","0.1-0.25 mm"
645,"derived_analyte","Resistant Minerals, Total, S prep, vfs","resist_min_tot_vfs","RMvfs_d-1_S","I","3.0","%","layer",,"to be added","Total sand is the soil separate with 0.05 to 2.0 mm particle diameter. It is reported a gravimetric percent on a <2 mm base.","0.05-0.1 mm"
644,"derived_analyte","Resistant Minerals, Total, S prep, csi","resist_min_tot_csi","RMcSi_d-1_S","I","3.0","%","layer",,"to be added","Total sand is the soil separate with 0.05 to 2.0 mm particle diameter. It is reported a gravimetric percent on a <2 mm base.","0.02-0.05 mm"
643,"derived_analyte","Texture, USDA, S_SK prep","tex_psda","Textur_d-2_SK","C","4","(NA)","layer",,"to be added","The laboratory determined texture of the <2 mm fraction is calculated from particle size separate data.","<2 mm"
642,"derived_analyte","Silt, Total, S_SK prep","silt_tot_psa","Silt_d-2_SK","F","4.1","% wt","layer",,"to be added","Total silt is the soil separate with 0.002 to 0.05 mm particle size. It is reported as a gravimetric percent on a <2 mm base.","<2 mm"
641,"derived_analyte","Silt, Coarse, S_SK prep","silt_c_psa","cSilt_d-2_SK","F","4.1","% wt","layer",,"to be added","Coarse silt is the soil separate with 0.02 to 0.05 mm particle size. It is reported as a gravimetric percent on a <2 mm base.","<2 mm"
640,"derived_analyte","Sand, Total, S_SK prep","sand_tot_psa","Sand_d-2_SK","F","4.1","% wt","layer",,"to be added","Total sand is the soil separate with 0.05 to 2.0 mm particle diameter. It is reported a gravimetric percent on a <2 mm base. H prep.","<2 mm"
639,"derived_analyte","Silt, Coarse, H2O Dispersible","w_slt_c","cSiH2O_d-1_S","F","4.1","% wt","layer",,"CSilt = 100.0 - Clay - FSilt - Sand","H2O dispersible coarse silt, <2mm (by pipette) is the gravimetric percent of 0.02 to 0.05 mm diameter particles separated without chemical dispersion, or organic matter and salt removal. It is reported on a <2 mm base.","<2 mm"
638,"derived_analyte","Silt, Total, H2O Dispersible","w_slt_tot","SiH2O_d-1_S","F","4.1","% wt","layer",,"100.0 - (Clay + Sand)","H2O dispersible silt, <2mm (by pipette) is the gravimetric percent 0.002 to 0.05 mm diameter particles separated without chemical dispersants or organic matter and salt removal. It is reported on a <2 mm base.","<2 mm"
637,"derived_analyte","Sand, Total, H2O Dispersible","w_snd_tot","SndH2O_d-1_S","F","4.1","% wt","layer",,"VCSand + CSand + MSand + FSand + VFSand","H2O dispersible sand, <2mm (by pipette) is the gravimetric percent 0.05 to 2.0 mm diameter particles separated without chemical dispersants or organic matter and salt removal. It is reported on a <2 mm base.","<2 mm"
636,"derived_analyte","Ratio, Sodium Absorption, SI-Set 4","sar_si4","SAR_d-4_S","I","4.0","(NA)","layer",,"to be added","The sodium absorption ratio is calculated by NA_SATX/sqrt((CA_SATX+MG_SATX)/2). It is approximately equal to the exchangeable sodium percentage.","<2 mm"
635,"derived_analyte","Coarse Fragments, Less 2mm, Volume Fraction, 75 mm Base","vf_l2","vfL2_d-1_S","F","3.2","% vol","layer",,"to be added","The volumetric fraction of less than 2 mm diameter particles reported on a <75 mm base.","<75 mm"
392,"aggregate analyte","Water Retention, 1/3 Bar, <2mm Sieve","w32l2","W33L2","F","5.1","% wt","layer","mean","to be added","1/3 bar water <2 mm sieved is the gravimetric percent water in sieved <2 mm samples after equilibration at 1/3 bar water tension. It is reported on a <2 mm base.",
391,"aggregate analyte","Water Retention, 1/10 Bar, <2mm Sieve, Air-dry","w10l2","W10L2","F","5.1","% wt","layer","mean","to be added","1/10 bar water, <2mm fraction is the gravimetric water content of air dry <2 mm samples, after equilibration at 1/10 bar water tension. It is reported on a <2 mm base. In sands, this value approximates field capacity.",
390,"aggregate analyte","Water Retention, 0.06 Bar, <2mm Sieve","w6l2","W6L2","F","5.1","% wt","layer","mean","to be added","0.06 bar water, <2mm fraction is the gravimetric percent water held by <2 mm samples equilibrated at 0.06 bar water tension. It is reported on a <2 mm base.",
389,"aggregate analyte","Zirconium, Total","zr_tot","Zr_tot","F","4.1","% wt","layer","mean","To Be Added","Total Zr is the zirconium measured after total dissolution of a size fraction of soil material. It is stored as elemental percent and reported a s percent oxide on the base of the size fraction used.",
388,"aggregate analyte","Zinc, Total","zn_tot","Zn_tot","F","6.0","mg/kg","layer","mean","To Be Added","Total Zn is the zinc measured after total dissolution of a size fraction of soil material. It is stored and reported as milligrams per kilogram on the base of the size fraction used.",
387,"aggregate analyte","Titanium, Total","ti_tot","Ti_tot","F","4.1","% wt","layer","mean","To Be Added","Total Ti is the titanium measured after total dissolution of a size fraction of soil material. It is stored as elemental percent and reported as percent oxide on the base of the size fraction used.",
386,"aggregate analyte","Sodium, Total","na_tot","Na_tot","F","4.1","% wt","layer","mean","To Be Added","Total Na is the sodium measured after total dissolution of a size fraction of soil material. It is stored as elemental percent and reported as percent oxide on the base of the size fraction used.",
385,"aggregate analyte","Silicon, Total","si_tot","Si_tot","F","4.1","% wt","layer","mean","To Be Added","Total Si is the silica measured after total dissolution of a size fraction of soil material. It is stored as elemental percent and reported as percent oxide on the base of the size fraction used.",
384,"aggregate analyte","Selenium, Total","se_tot","Se_tot","F","6.0","mg/kg","layer","mean","To Be Added","Total Se is the selenium measured after total dissolution of a size fraction of soil material. It is stored and reported as milligrams per kilogram on the base of the size fraction used.",
383,"aggregate analyte","Potassium, Total","k_tot","K_tot","F","4.1","% wt","layer","mean","To Be Added","Total K is the potassium measured after total dissolution of a size fraction of soil material. It is stored as elemental percent and reported as percent oxide on the base of the size fraction used.",
382,"aggregate analyte","Phosphorus, Total","p_tot","P_tot","F","4.1","% wt","layer","mean","To Be Added","Total P is the phosphorus measured after total dissolution of a size fraction of soil material. It is stored as elemental percent and reported as percent oxide on the base of the size fraction used.",
381,"aggregate analyte","Nickel, Total","ni_tot","Ni_tot","F","6.0","mg/kg","layer","mean","To Be Added","Total Ni is the nickel measured after total dissolution of a size fraction of soil material. It is stored and reported as milligrams per kilogram on the base of the size fraction used.",
380,"aggregate analyte","Mercury, Total","hg_tot","Hg_tot","F","6.0","mg/kg","layer","mean","To Be Added","Total Hg is the mercury measured after total dissolution of a size fraction of soil material. It is stored and reported as milligrams per kilogram on the base of the size fraction used.",
379,"aggregate analyte","Manganese, Total","mn_tot","Mn_tot","F","4.1","% wt","layer","mean","To Be Added","Total Mn is the manganese measured after total dissolution of a size fraction of soil material. It is stored as elemental percent and reported a s percent oxide on the base of the size fraction used.",
378,"aggregate analyte","Magnesium, Total","mg_tot","Mg_tot","F","4.1","% wt","layer","mean","To Be Added","Total Mg is the magnesium measured after total dissolution of a size fraction of soil material. It is stored as elemental percent and reported a s percent oxide on the base of the size fraction used.",
377,"aggregate analyte","Lead, Total","pb_tot","Pb_tot","F","6.0","mg/kg","layer","mean","To Be Added","Total Pb is the lead measured after total dissolution of a size fraction of soil material. It is stored and reported as milligrams per kilogram on the base of the size fraction used.",
376,"aggregate analyte","Iron, Total","fe_tot","Fe_tot","F","4.1","% wt","layer","mean","To Be Added","Total Fe is the iron measured after total dissolution of a size fraction of soil material. It is stored as elemental percent and reported as per cent oxide on the base of the size fraction used.",
375,"aggregate analyte","Copper, Total","cu_tot","Cu_tot","F","6.0","mg/kg","layer","mean","To Be Added","Total Cu is the copper measured after total dissolution of a size fraction of soil material. It is stored and reported as milligrams per kilogram on the base of the size fraction used.",
374,"aggregate analyte","Cobalt, Total","co_tot","Co_tot","F","6.0","mg/kg","layer","mean","To Be Added","Total Co is the cobalt measured after total dissolution of a size fraction of soil material. It is stored and reported as milligrams per kilogram on the base of the size fraction used.",
373,"aggregate analyte","Chromium, Total","cr_tot","Cr_tot","F","6.0","mg/kg","layer","mean","To Be Added","Total Cr is the chromium measured after total dissolution of a size fraction of soil material. It is stored and reported as milligrams per kilogram on the base of the size fraction used.",
1909,"aggregate analyte","Goethite, x-ray, percent","min_GE_x-ray_p","Gexrayp","I","3.0","%","layer","mean",,"to be added","<0.002 mm"
1908,"aggregate analyte","Other Resistant Minerals, x-ray, percent","min_OR_x-ray_p","Orxrayp","I","3.0","%","layer","mean",,"to be added","<0.002 mm"
1907,"aggregate analyte","Interstratified, x-ray, percent","min_IS_x-ray_p","Isxrayp","I","3.0","%","layer","mean",,"Interstratified","<0.002 mm"
1906,"derived_analyte","Silt, Coarse, H2O Dispersible, N Prep","w_slt_c","cSiH2O_d-1_N","F","4.1","% wt","layer",,"to be added","H2O dispersible coarse silt, <2mm (by pipette) is the gravimetric percent of 0.02 to 0.05 mm diameter particles separated without chemical dispersion, or organic matter and salt removal. It is reported on a <2 mm base.","<2 mm"
1905,"derived_analyte","Silt, Total, H2O Dispersible, N Prep","w_slt_tot","SiH2O_d-1_N","F","4.1","% wt","layer",,"to be added","H2O dispersible silt, <2mm (by pipette) is the gravimetric percent 0.002 to 0.05 mm diameter particles separated without chemical dispersants or organic matter and salt removal. It is reported on a <2 mm base.","<2 mm"
1904,"derived_analyte","Sand, Total, H2O Dispersible, N Prep","w_snd_tot","SndH2O_d-1_N","F","4.1","% wt","layer",,"to be added","H2O dispersible sand, <2mm (by pipette) is the gravimetric percent 0.05 to 2.0 mm diameter particles separated without chemical dispersants or organic matter and salt removal. It is reported on a <2 mm base.","<2 mm"
1903,"derived_analyte","Silt, Total, Ultrasonic, Pipet","silt_tot_Ultrasonic","Siltu_d-1_S","F","4.1","% wt","layer",,"to be added","Total silt is the soil separate with 0.002 to 0.05 mm particle size. It is reported as a gravimetric percent on a <2 mm base.","<2 mm"
1902,"derived_analyte","Silt, Coarse, Ultrasonic, Pipet","silt_c_Ultrasonic","CSiltu_d-1_S","F","4.1","% wt","layer",,"to be added","Coarse silt is the soil separate with 0.02 to 0.05 mm particle size. It is reported as a gravimetric percent on a <2 mm base.","<2 mm"
1901,"derived_analyte","Sand, Total, Ultrasonic, Pipet","sand_tot_Ultrasonic","Sandu_d-1_S","F","4.1","% wt","layer",,"to be added","Total sand is the soil separate with 0.05 to 2.0 mm particle diameter. It is reported a gravimetric percent on a <2 mm base. S prep","<2 mm"
1900,"derived_analyte","Silt, Total, NaOH, Pipet","silt_tot_NaOH","SiltOH_d-1_S","F","4.1","% wt","layer",,"to be added","Total silt is the soil separate with 0.002 to 0.05 mm particle size. It is reported as a gravimetric percent on a <2 mm base.","<2 mm"
1899,"derived_analyte","Silt, Coarse, NaOH, Pipet","silt_c_NaOH","CSiltOH_d-1_S","F","4.1","% wt","layer",,"to be added","Coarse silt is the soil separate with 0.02 to 0.05 mm particle size. It is reported as a gravimetric percent on a <2 mm base.","<2 mm"
1898,"derived_analyte","Sand, Total, NaOH, Pipet","sand_tot_NaOH","SandOH_d-1_S","F","4.1","% wt","layer",,"to be added","Total sand is the soil separate with 0.05 to 2.0 mm particle diameter. It is reported a gravimetric percent on a <2 mm base. S prep","<2 mm"
1897,"derived_analyte","Silt, Total, NaOAc, Pipet","silt_tot_NaOAc","SiltN_d-1_S","F","4.1","% wt","layer",,"to be added","Total silt is the soil separate with 0.002 to 0.05 mm particle size. It is reported as a gravimetric percent on a <2 mm base.","<2 mm"
1896,"derived_analyte","Silt, Coarse, NaOAc, Pipet","silt_c_NaOAc","CSiltN_d-1_S","F","4.1","% wt","layer",,"to be added","Coarse silt is the soil separate with 0.02 to 0.05 mm particle size. It is reported as a gravimetric percent on a <2 mm base.","<2 mm"
1895,"derived_analyte","Sand, Total, NaOAc, Pipet","sand_tot_NaOAc","SandN_d-1_S","F","4.1","% wt","layer",,"to be added","Total sand is the soil separate with 0.05 to 2.0 mm particle diameter. It is reported a gravimetric percent on a <2 mm base. S prep","<2 mm"
1894,"derived_analyte","Silt, Total, Moist, Ultrasonic, Pipet","silt_tot_Moist_Ultra","SiltMu_d-1_M","F","4.1","% wt","layer",,"to be added","Total silt is the soil separate with 0.002 to 0.05 mm particle size. It is reported as a gravimetric percent on a <2 mm base.","<2 mm"
1893,"derived_analyte","Silt, Coarse, Moist, Ultrasonic, Pipet","silt_c_Moist_Ultra","CSiltMu_d-1_M","F","4.1","% wt","layer",,"to be added","Coarse silt is the soil separate with 0.02 to 0.05 mm particle size. It is reported as a gravimetric percent on a <2 mm base.","<2 mm"
1892,"derived_analyte","Sand, Total, Moist, Ultrasonic, Pipet","sand_tot_Moist_Ultra","SandMu_d-1_M","F","4.1","% wt","layer",,"to be added","Total sand is the soil separate with 0.05 to 2.0 mm particle diameter. It is reported a gravimetric percent on a <2 mm base. S prep","<2 mm"
1891,"derived_analyte","Silt, Total, Dith","silt_tot_dith","SiltD_d-1_S","F","4.1","% wt","layer",,"to be added","Total silt is the soil separate with 0.002 to 0.05 mm particle size. It is reported as a gravimetric percent on a <2 mm base.","<2 mm"
1890,"derived_analyte","Silt, Coarse, Dith","silt_c_dith","CSiltD_d-1_S","F","4.1","% wt","layer",,"to be added","Coarse silt is the soil separate with 0.02 to 0.05 mm particle size. It is reported as a gravimetric percent on a <2 mm base.","<2 mm"
1889,"derived_analyte","Sand, Total, Dith","sand_tot_dith","SandD_d-1_S","F","4.1","% wt","layer",,"to be added","Total sand is the soil separate with 0.05 to 2.0 mm particle diameter. It is reported a gravimetric percent on a <2 mm base. S prep","<2 mm"
1888,"derived_analyte","Phosphorous, anion_resin_capacity, N Prep","p_res1-24","AER-cap_d-1_N","F","4.1","mg/kg","layer",,"AER P at 1 hr + AER P at 1 to 24 hr","Anion Exchange Resin Capacity is calculated by adding the reading at 1 hour and the reading at 24 hours.","<2 mm"
1887,"derived_analyte","Phosphorous, anion_resin_capacity, S Prep","p_res1-24","AER-cap_d-1_S","F","4.1","mg/kg","layer",,"AER P at 1 hr + AER P at 1 to 24 hr","Anion Exchange Resin Capacity is calculated by adding the reading at 1 hour and the reading at 24 hours.","<2 mm"
1886,"derived_analyte","Mineral Interpretation, N prep, clay, Set 3","min_interp_c3","MIc_d-3_N","C","10","(NA)","layer",,"to be added","Mineral interpretation from results on clay particle size fraction.","<0.002 mm"
1885,"derived_analyte","Mineral Interpretation, GP prep, clay, Set 3","min_interp_c3","MIc_d-3_GP","C","10","(NA)","layer",,"to be added","Mineral interpretation from results on clay particle size fraction.","<0.002 mm"
1884,"derived_analyte","Mineral Interpretation, S prep, clay, Set 3","min_interp_c3","MIc_d-3_S","C","10","(NA)","layer",,"to be added","Mineral interpretation from results on clay particle size fraction.","<0.002 mm"
1883,"derived_analyte","Mineral Interpretation, N prep, clay, Set 2","min_interp_c2","MIc_d-2_N","C","10","(NA)","layer",,"to be added","Mineral interpretation from results on clay particle size fraction.","<0.002 mm"
1882,"aggregate analyte","Clay, Fine, no pretreatment, Pipet","clay_f_psa1","ClyF_p1","F","4.1","% wt","layer","mean","To Be Added","Fine clay is the <0.0002 mm particle diameter soil separate. It is reported as a weight percent of the <2mm fraction.",
1881,"aggregate analyte","Calcite, tga","min_CA_tga","CA_tga","F","3.0","%","layer","mean","To Be Added","to be added",
1880,"aggregate analyte","clay, coarse .0002 - .002","clay_c_psa4","ClayCp4","F","4.1","% wt","layer","mean","To Be Added","Coarse clay is the soil separate with .0002 to .002 mm particle diamter. It Is reported as a gravimetric percent on the < 2 mm base.","< 2mm"
1879,"aggregate analyte","Silt, Medium .02 - .005 mm","silt_m_psa4","SiltMp4","F","4.1","% wt","layer","mean","To Be Added","Medium silt is the soil separate with 0.005 to 0.02 mm particle diameter. It is reported as a gravimetric percent on a <2 mm base.","<2 mm"
1878,"aggregate analyte","Fine .005 - .002 mm","silt_f_psa4","SiltFp4","F","4.1","% wt","layer","mean","To Be Added","Fine silt is the soil separate with 0.002 to 0.005 mm particle diameter. It is reported as a gravimetric percent on a <2 mm base.","<2 mm"
1877,"aggregate analyte","Sulfur by X-Ray Fluorescence","s_xrf","S_XRF","F","7.1","ppm","layer","mean",,"Sulfur as determined using X-Ray fluorescence on a powdered sample; XRF sample cup with polypropylene film.","<2 mm"
1876,"aggregate analyte","Chlorine by X-Ray Fluorescence","cl_xrf","Cl_XRF","F","7.1","ppm","layer","mean",,"Clorine as determined using X-Ray fluorescence on a powdered sample; XRF sample cup with polypropylene film.","<2 mm"
1875,"aggregate analyte","Aluminum by X-Ray Fluorescence","al_xrf","Al_XRF","F","7.1","ppm","layer","mean",,"Aluminum as determined using X-Ray fluorescence on a powdered sample; XRF sample cup with polypropylene film.","<2 mm"
1874,"aggregate analyte","Silica by X-Ray Fluorescence","si_xrf","Si_XRF","F","7.1","ppm","layer","mean",,"Silica as determined using X-Ray fluorescence on a powdered sample; XRF sample cup with polypropylene film.","<2 mm"
1873,"aggregate analyte","Zirconium by X-Ray Fluorescence","zr_xrf","Zr_XRF","F","7.1","ppm","layer","mean",,"Zirconium as determined using X-Ray fluorescence on a powdered sample; XRF sample cup with polypropylene film.","<2 mm"
1872,"aggregate analyte","Potassium by X-Ray Fluorescence","k_xrf","K_XRF","F","7.1","ppm","layer","mean",,"Potassium as determined using X-Ray fluorescence on a powdered sample; XRF sample cup with polypropylene film.","<2 mm"
1871,"aggregate analyte","Manganese by X-Ray Fluorescence","mn_xrf","Mn_XRF","F","7.1","ppm","layer","mean",,"Manganese as determined using X-Ray fluorescence on a powdered sample; XRF sample cup with polypropylene film.","<2 mm"
1870,"aggregate analyte","Iron by X-Ray Fluorescence","fe_xrf","Fe_XRF","F","7.1","ppm","layer","mean",,"Iron as determined using X-Ray fluorescence on a powdered sample; XRF sample cup with polypropylene film.","<2 mm"
1869,"aggregate analyte","Copper by X-Ray Fluorescence","cu_xrf","Cu_XRF","F","7.1","ppm","layer","mean",,"Copper as determined using X-Ray fluorescence on a powdered sample; XRF sample cup with polypropylene film.","<2 mm"
1868,"aggregate analyte","Nickel by X-Ray Fluorescence","ni_xrf","Ni_XRF","F","7.1","ppm","layer","mean",,"Nickel as determined using X-Ray fluorescence on a powdered sample; XRF sample cup with polypropylene film.","<2 mm"
1867,"aggregate analyte","Uranium by X-Ray Fluorescence","u_xrf","U_XRF","F","7.1","ppm","layer","mean",,"Uranium as determined using X-Ray fluorescence on a powdered sample; XRF sample cup with polypropylene film.","<2 mm"
1866,"aggregate analyte","Zinc by X-Ray Fluorescence","zn_xrf","Zn_XRF","F","7.1","ppm","layer","mean",,"Zinc as determined using X-Ray fluorescence on a powdered sample; XRF sample cup with polypropylene film.","<2 mm"
1865,"aggregate analyte","Strontium by X-Ray Fluorescence","sr_xrf","Sr_XRF","F","7.1","ppm","layer","mean",,"Strontium as determined using X-Ray fluorescence on a powdered sample; XRF sample cup with polypropylene film.","<2 mm"
1864,"aggregate analyte","Thallium by X-Ray Fluorescence","ti_xrf","Ti_XRF","F","7.1","ppm","layer","mean",,"Thallium as determined using X-Ray fluorescence on a powdered sample; XRF sample cup with polypropylene film.","<2 mm"
1863,"aggregate analyte","Calcium by X-Ray Fluorescence","ca_xrf","Ca_XRF","F","7.1","ppm","layer","mean",,"Calcium as determined using X-Ray fluorescence on a powdered sample; XRF sample cup with polypropylene film.","<2 mm"
1862,"aggregate analyte","Mercury by X-Ray Fluorescence","hg_xrf","Hg_XRF","F","7.1","ppm","layer","mean",,"Mercury as determined using X-Ray fluorescence on a powdered sample; XRF sample cup with polypropylene film.","<2 mm"
1861,"aggregate analyte","Scandium by X-Ray Fluorescence","sc_xrf","Sc_XRF","F","7.1","ppm","layer","mean",,"Scandium as determined using X-Ray fluorescence on a powdered sample; XRF sample cup with polypropylene film.","<2 mm"
1860,"aggregate analyte","Thorium by X-Ray Fluorescence","th_xrf","Th_XRF","F","7.1","ppm","layer","mean",,"Thorium as determined using X-Ray fluorescence on a powdered sample; XRF sample cup with polypropylene film.","<2 mm"
1859,"aggregate analyte","Selenium by X-Ray Fluorescence","se_xrf","Se_XRF","F","7.1","ppm","layer","mean",,"Selenium as determined using X-Ray fluorescence on a powdered sample; XRF sample cup with polypropylene film.","<2 mm"
1858,"aggregate analyte","Vanadium by X-Ray Fluorescence","v_xrf","V_XRF","F","7.1","ppm","layer","mean",,"Vanadium as determined using X-Ray fluorescence on a powdered sample; XRF sample cup with polypropylene film.","<2 mm"
1857,"aggregate analyte","Rubidium by X-Ray Fluorescence","rb_xrf","Rb_XRF","F","7.1","ppm","layer","mean",,"Rubidium as determined using X-Ray fluorescence on a powdered sample; XRF sample cup with polypropylene film.","<2 mm"
1856,"aggregate analyte","Cobalt by X-Ray fluorescence","co_xrf","Co_XRF","F","7.1","ppm","layer","mean",,"Cobalt as determined using X-Ray fluorescence on a powdered sample; XRF sample cup with polypropylene film.","<2 mm"
1855,"aggregate analyte","Lead by X-Ray fluorescence","pb_xrf","Pb_XRF","F","7.1","ppm","layer","mean",,"Lead as determined using X-Ray fluorescence on a powdered sample; XRF sample cup with polypropylene film.","<2 mm"
1854,"aggregate analyte","Arsenic by X-Ray fluorescence","as_xrf","As_XRF","F","7.1","ppm","layer","mean",,"Arsenic as determined using X-Ray fluorescence on a powdered sample; XRF sample cup with polypropylene film.","<2 mm"
1853,"aggregate analyte","Molybdenum by X-Ray fluorescence","mo_xrf","Mo_XRF","F","7.1","ppm","layer","mean",,"Molybdenum as determined using X-Ray fluorescence on a powdered sample; XRF sample cup with polypropylene film.","<2 mm"
1852,"aggregate analyte","Barium by X-Ray Fluorescence","ba_xrf","Ba_XRF","F","7.1","ppm","layer","mean",,"Barium as determined using X-Ray fluorescence on a powdered sample; XRF sample cup with polypropylene film.","<2 mm"
1851,"derived_analyte","Aluminum plus half Iron Oxalate, S Prep, Inst Set 4","al_fe_ox4","Alfeox_d-4_S","F","5.2","% wt","layer",,"al_ox + fe_ox / 2","The extractable aluminum is added to half of the amount of extractable iron in an ammonium oxalate solution.","<2 mm"
1850,"derived_analyte","Aluminum plus half Iron Oxalate, N Prep, Inst Set 4","al_fe_ox4","Alfeox_d-4_N","F","5.2","% wt","layer",,"al_ox + fe_ox / 2","The extractable aluminum is added to half of the amount of extractable iron in an ammonium oxalate solution.","<2 mm"
1849,"derived_analyte","Aluminum plus half Iron Oxalate, MW Prep, Inst Set 4","al_fe_ox4","Alfeox_d-4_MW","F","5.2","% wt","layer",,"al_ox + fe_ox / 2","The extractable aluminum is added to half of the amount of extractable iron in an ammonium oxalate solution.","<2 mm"
1848,"derived_analyte","Aluminum plus half Iron Oxalate, M Prep, Inst Set 4","al_fe_ox4","Alfeox_d-4_M","F","5.2","% wt","layer",,"al_ox + fe_ox / 2","The extractable aluminum is added to half of the amount of extractable iron in an ammonium oxalate solution.","<2 mm"
1847,"derived_analyte","Aluminum plus half Iron Oxalate, HM Prep, Inst Set 4","al_fe_ox4","Alfeox_d-4_HM","F","5.2","% wt","layer",,"al_ox + fe_ox / 2","The extractable aluminum is added to half of the amount of extractable iron in an ammonium oxalate solution.","<2 mm"
1846,"derived_analyte","Aluminum plus half Iron Oxalate, GP Prep, Inst Set 4","al_fe_ox4","Alfeox_d-4_GP","F","5.2","% wt","layer",,"al_ox + fe_ox / 2","The extractable aluminum is added to half of the amount of extractable iron in an ammonium oxalate solution.","<2 mm"
1845,"derived_analyte","AASHO Classification","AASHO_C","AASHO_C","C","10","NA","layer",,,"American Association of State Highway Officials engineering classification","<2 mm"
1844,"aggregate_analyte","Water Content At 345Cm Of Suction, Replicate 2","W_345_2","W_345_2","F","5.2","% vol","layer","mean",,"Water Release Curve - Replicate 2 - water content at 345cm of suction","<2 mm"
1843,"aggregate_analyte","Water Content At 200Cm Of Suction, Replicate 2","W_200_2","W_200_2","F","5.2","% vol","layer","mean",,"Water Release Curve - Replicate 2 - water content at 200cm of suction","<2 mm"
1842,"aggregate_analyte","Water Content At 150Cm Of Suction, Replicate 2","W_150_2","W_150_2","F","5.2","% vol","layer","mean",,"Water Release Curve - Replicate 2 - water content at 150cm of suction","<2 mm"
1841,"aggregate_analyte","Water Content At 100Cm Of Suction, Replicate 2","W_100_2","W_100_2","F","5.2","% vol","layer","mean",,"Water Release Curve - Replicate 2 - water content at 100cm of suction","<2 mm"
1840,"aggregate_analyte","Water Content At 80Cm Of Suction, Replicate 2","W_80_2","W_80_2","F","5.2","% vol","layer","mean",,"Water Release Curve - Replicate 2 - water content at 80cm of suction","<2 mm"
1839,"aggregate_analyte","Water Content At 60Cm Of Suction, Replicate 2","W_60_2","W_60_2","F","5.2","% vol","layer","mean",,"Water Release Curve - Replicate 2 - water content at 60cm of suction","<2 mm"
1838,"aggregate_analyte","Water Content At 45Cm Of Suction, Replicate 2","W_45_2","W_45_2","F","5.2","% vol","layer","mean",,"Water Release Curve - Replicate 2 - water content at 45cm of suction","<2 mm"
1837,"aggregate_analyte","Water Content At 30Cm Of Suction, Replicate 2","W_30_2","W_30_2","F","5.2","% vol","layer","mean",,"Water Release Curve - Replicate 2 - water content at 30cm of suction","<2 mm"
1836,"aggregate_analyte","Water Content At 20Cm Of Suction, Replicate 2","W_20_2","W_20_2","F","5.2","% vol","layer","mean",,"Water Release Curve - Replicate 2 - water content at 20cm of suction","<2 mm"
1835,"aggregate_analyte","Water Content At 3.5Cm Of Suction, Replicate 2","W_3pt5_2","W_3pt5_2","F","5.2","% vol","layer","mean",,"Water Release Curve - Replicate 2 - water content at 3.5cm of suction","<2 mm"
1834,"aggregate_analyte","Water Content At 345Cm Of Suction, Replicate 1","W_345_1","W_345_1","F","5.2","% vol","layer","mean",,"Water Release Curve - Replicate 1 - water content at 345cm of suction","<2 mm"
1833,"aggregate_analyte","Water Content At 200Cm Of Suction, Replicate 1","W_200_1","W_200_1","F","5.2","% vol","layer","mean",,"Water Release Curve - Replicate 1 - water content at 200cm of suction","<2 mm"
1832,"aggregate_analyte","Water Content At 150Cm Of Suction, Replicate 1","W_150_1","W_150_1","F","5.2","% vol","layer","mean",,"Water Release Curve - Replicate 1 - water content at 150cm of suction","<2 mm"
1831,"aggregate_analyte","Water Content At 100Cm Of Suction, Replicate 1","W_100_1","W_100_1","F","5.2","% vol","layer","mean",,"Water Release Curve - Replicate 1 - water content at 100cm of suction","<2 mm"
1830,"aggregate_analyte","Water Content At 80Cm Of Suction, Replicate 1","W_80_1","W_80_1","F","5.2","% vol","layer","mean",,"Water Release Curve - Replicate 1 - water content at 80cm of suction","<2 mm"
1829,"aggregate_analyte","Water Content At 60Cm Of Suction, Replicate 1","W_60_1","W_60_1","F","5.2","% vol","layer","mean",,"Water Release Curve - Replicate 1 - water content at 60cm of suction","<2 mm"
1828,"aggregate_analyte","Water Content At 45Cm Of Suction, Replicate 1","W_45_1","W_45_1","F","5.2","% vol","layer","mean",,"Water Release Curve - Replicate 1 - water content at 45cm of suction","<2 mm"
1827,"aggregate_analyte","Water Content At 30Cm Of Suction, Replicate 1","W_30_1","W_30_1","F","5.2","% vol","layer","mean",,"Water Release Curve - Replicate 1 - water content at 30cm of suction","<2 mm"
1826,"aggregate_analyte","Water Content At 20Cm Of Suction, Replicate 1","W_20_1","W_20_1","F","5.2","% vol","layer","mean",,"Water Release Curve - Replicate 1 - water content at 20cm of suction","<2 mm"
1825,"aggregate_analyte","Water Content At 3.5Cm Of Suction, Replicate 1","W_3pt5_1","W_3pt5_1","F","5.2","% vol","layer","mean",,"Water Release Curve - Replicate 1 - water content at 3.5cm of suction","<2 mm"
1824,"aggregate_analyte","Water Content At 200Cm Of Suction, Replicate 0","W_200_0","W_200_0","F","5.2","% vol","layer","mean",,"Water Release Curve - Replicate 0 - water content at 200cm of suction","<2 mm"
1823,"aggregate_analyte","Water Content At 150Cm Of Suction, Replicate 0","W_150_0","W_150_0","F","5.2","% vol","layer","mean",,"Water Release Curve - Replicate 0 - water content at 150cm of suction","<2 mm"
1822,"aggregate_analyte","Water Content At 80Cm Of Suction, Replicate 0","W_80_0","W_80_0","F","5.2","% vol","layer","mean",,"Water Release Curve - Replicate 0 - water content at 80cm of suction","<2 mm"
1821,"aggregate_analyte","Water Content At 60Cm Of Suction, Replicate 0","W_60_0","W_60_0","F","5.2","% vol","layer","mean",,"Water Release Curve - Replicate 0 - water content at 60cm of suction","<2 mm"
1820,"aggregate_analyte","Water Content At 45Cm Of Suction, Replicate 0","W_45_0","W_45_0","F","5.2","% vol","layer","mean",,"Water Release Curve - Replicate 0 - water content at 45cm of suction","<2 mm"
1819,"aggregate_analyte","Water Content At 30Cm Of Suction, Replicate 0","W_30_0","W_30_0","F","5.2","% vol","layer","mean",,"Water Release Curve - Replicate 0 - water content at 30cm of suction","<2 mm"
1818,"aggregate_analyte","Water Content At 20Cm Of Suction, Replicate 0","W_20_0","W_20_0","F","5.2","% vol","layer","mean",,"Water Release Curve - Replicate 0 - water content at 20cm of suction","<2 mm"
1817,"aggregate_analyte","Water Content At 3.5Cm Of Suction, Replicate 0","W_3pt5_0","W_3pt5_0","F","5.2","% vol","layer","mean",,"Water Release Curve - Replicate 0 - water content at 3.5cm of suction","<2 mm"
1816,"aggregate_analyte","Available Water Content, Replicate 0","AVAIL_W","AVAIL_W","F","5.3","cm/cm","layer","mean",,"Water Release Curve - Replicate 0 - available water content","<2 mm"
1815,"aggregate_analyte","Water Content At 15 Bar , Replicate 2","W_15B_2B","W_15B_2B","F","5.2","% wt","layer","mean",,"Water Release Curve - Replicate 2 - water content at 15 bar - replicate 2","<2 mm"
1814,"aggregate_analyte","Water Content At 15 Bar , Replicate 2","W_15B_2A","W_15B_2A","F","5.2","% wt","layer","mean",,"Water Release Curve - Replicate 2 - water content at 15 bar - replicate 1","<2 mm"
1813,"aggregate_analyte","Water Content At 15 Bar , Replicate 1","W_15B_1B","W_15B_1B","F","5.2","% wt","layer","mean",,"Water Release Curve - Replicate 1 - water content at 15 bar - replicate 2","<2 mm"
1812,"aggregate_analyte","Water Content At 15 Bar , Replicate 1","W_15B_1A","W_15B_1A","F","5.2","% wt","layer","mean",,"Water Release Curve - Replicate 1 - water content at 15 bar - replicate 1","<2 mm"
1811,"aggregate_analyte","Water Content At 15 Bar, Replicate 0","W_15BAR","W_15BAR","F","5.2","% wt","layer","mean",,"Water Release Curve - Replicate 0 - water content at 15 bar","<2 mm"
1793,"aggregate analyte","Vermiculite, x-ray, percent","min_VR_x-ray_p","Vrxrayp","I","3.0","%","layer","mean",,"Vermiculite; 2:1 expansible secondary phyllosilicate;","<0.002 mm"
1792,"aggregate analyte","Smectite, x-ray pm","min_SM_x-ray_p","Smxrayp","I","3.0","%","layer","mean",,"Smectite; 2:1 expansible secondary phyllosilicate.","<0.002 mm"
1791,"aggregate analyte","Sepiolite, x-ray, percent","min_SE_x-ray_p","Sexrayp","I","3.0","%","layer","mean",,"Sepiolite; Magnesium silicate.","<0.002 mm"
1790,"aggregate analyte","Quartz, x-ray, percent","min_QZ_x-ray_p","Qzxrayp","I","3.0","%","layer","mean",,"Quartz; SiO2; primary tectosilicate.","<0.002 mm"
1789,"aggregate analyte","Mica, x-ray, percent","min_MI_x-ray_p","Mixrayp","I","3.0","%","layer","mean",,"Mica","<0.002 mm"
1788,"aggregate analyte","Kaolinite, x-ray, percent","min_KK_x-ray_p","Kkxrayp","I","3.0","%","layer","mean",,"Kaolinite; 1:1 non-expansible secondary phyllosilicate.","<0.002 mm"
1787,"aggregate analyte","Hydroxy-Interlayered Vermiculite, x-ray, percent","min_HV_x-ray_p","Hvxrayp","I","3.0","%","layer","mean",,"Hydroxyinterlayered vermiculite; partially-expansible secondary phyllosilicate","<0.002 mm"
1786,"aggregate analyte","Gibbsite, x-ray, percent","min_GI_x-ray_p","Gixrayp","I","3.0","%","layer","mean",,"Gibbsite; Aluminum hydroxide.","<0.002 mm"
1785,"aggregate analyte","Feldspar, x-ray, percent","min_FD_x-ray_p","Fdxrayp","I","3.0","%","layer","mean",,"Feldspar; primary tectosilicate with cations (mostly K in Florida) in structure.","<0.002 mm"
1784,"aggregate analyte","Dolomite, x-ray, percent","min_DL_x-ray_p","Dlxrayp","I","3.0","%","layer","mean",,"Dolomite; Calcium magnesium carbonate.","<0.002 mm"
1783,"aggregate analyte","Calcite, x-ray, percent","min_CA_x-ray_p","Caxrayp","I","3.0","%","layer","mean",,"Calcite; calcium carbonate.","<0.002 mm"
1782,"aggregate analyte","Chlorite, x-ray, percent","min_CL_x-ray_p","Clxrayp","I","3.0","%","layer","mean",,"Chlorite; non-expansible phyllosilicate.","<0.002 mm"
1781,"aggregate analyte","Non-Crystalline, x-ray","min_NX_x-ray_p","Nxxrayp","I","3.0","%","layer","mean",,"Non-Crystalline (Amorphous)","<0.002 mm"
1780,"aggregate_analyte","Sand, Total, Pipet","sand_tot_psa","Sand_S","F","4.1","% wt","layer","mean",,"Total sand is the soil separate with 0.05 to 2.0 mm particle diameter. It is reported a gravimetric percent on a <2 mm base. S prep","<2 mm"
1779,"derived_analyte","Phosphorus, isotherm, 10 µg P sorbed/g soil","p_iso10y","Piso10y","F","3.0","µg/g","layer","mean","To Be Added","to be added",
1778,"derived_analyte","Phosphorus, isotherm, .1 µg P sorbed/g soil","p_isopt1y","Pisopt1y","F","3.0","µg/g","layer","mean","To Be Added","to be added",
1777,"aggregate analyte","Phosphorus, isotherm, 10 µg/mL P remaining in solution","p_iso10x","Piso10x","F","5.2","µg/mL","layer","mean","To Be Added","to be added",
1776,"aggregate analyte","Phosphorus, isotherm, .1 µg/mL P remaining in solution","p_isopt1x","Pisopt1x","F","5.2","µg/mL","layer","mean","To Be Added","to be added",
1775,"aggregate analyte","Color, Z Coordinate","color_z","Colz","F","4.1","(NA)","layer","mean",,"The Z coordinate of the measured color of the soil.",
1774,"aggregate analyte","Color, Y Coordinate","color_y","Coly","F","4.1","(NA)","layer","mean",,"The Y coordinate of the measured color of the soil.",
1773,"aggregate analyte","Color, X Coordinate","color_x","Colx","F","4.1","(NA)","layer","mean",,"The X coordinate of the measured color of the soil.",
1772,"aggregate analyte","Bulk Density, clod, 3D","db_3d","Db3d","F","4.2","g/cc","layer","mean",,"Bulk density, clod, 3D is the weight per unit volume of the clod, with volume measured by a 3D laser scanner.",
1771,"aggregate analyte","Serpentine, petro_count","min_SZ_petro_count","SZ_pc","I","3.0","count","layer","mean","OUTPUT = 100.0 * mineral_count / total_count","to be added",
1770,"derived_analyte","Silt, Total, Ethanol Dispersible, Ultrasonic","e_slt_tot_u","SiEthU_d-1_S","F","4.1","% wt","layer",,"to be added","Ethanol and Ultrasonic probe dispersible silt, <2mm (by pipette) is the gravimetric percent 0.002 to 0.05 mm diameter particles separated without chemical dispersants or organic matter and salt removal. It is reported on a <2 mm base.","<2 mm"
1769,"derived_analyte","Sand, Total, Ethanol Dispersible, Ultrasonic","e_snd_tot_u","SndEthU_d-1_S","F","4.1","% wt","layer",,"to be added","Ethanol and Ultrasonic probe dispersible sand, <2mm (by pipette) is the gravimetric percent 0.05 to 2.0 mm diameter particles separated without chemical dispersants or organic matter and salt removal. It is reported on a <2 mm base.","<2 mm"
1768,"aggregate analyte","Sand, Very Coarse, Ethanol Disp, Air-dry, Ultra","e_snd_vc_u","SndVCE","F","4.1","% wt","layer","mean","to be added","Ethanol and Ultrasonic probe dispersible very coarse sand, <2mm (by pipette) is the gravimetric percent 1.0 to 2.0 mm diameter particles separated without chemical dispersants or organic matter and salt removal. It is reported on a <2 mm base.",
1767,"aggregate analyte","Sand, Coarse, Ethanol Disp, Air-dry, Ultra","e_snd_c_u","SndC_E","F","4.1","% wt","layer","mean","to be added","Ethanol and Ultrasonic probe dispersible coarse sand, <2mm (by pipette) is the gravimetric percent 1.0 to 2.0 mm diameter particles separated without chemical dispersants or the removal of organic matter and salts. It is reported on a <2 mm base.",
1766,"aggregate analyte","Sand, Medium, Ethanol Disp, Air-dry, Ultra","e_snd_m_u","SndM_E","F","4.1","% wt","layer","mean","to be added","Ethanol and Ultrasonic probe dispersible medium sand, <2mm (by pipette) is the gravimetric percent 0.25 to 0.50 mm diameter particles separated without chemical dispersants or removal of organic matter and salts. It is reported on a <2 mm base.",
1765,"aggregate analyte","Sand, Fine, Ethanol Disp, Air-dry, Ultra","e_snd_f_u","SndF_E","F","4.1","% wt","layer","mean","to be added","Ethanol and Ultrasonic probe disp fine sand, <2mm (by pipette) is the gravimetric percent of 0.10 to 0.25 mm diameter particles separated without the use of chemical dispersants or removal of organic matter and salts. It is reported on a <2 mm base.",
1764,"aggregate analyte","Sand, Very Fine, Ethanol Disp, Air-dry, Ultra","e_snd_vf_u","SndVFE","F","4.1","% wt","layer","mean","to be added","Ethanol and Ultrasonic probe dispersible very fine sand, <2mm (by pipette) is the gravimetric percent 0.05 to 0.10 mm diameter particles separated without chemical dispersants or organic matter and salt removal. It is reported on a <2 mm base.",
1763,"aggregate analyte","Clay, Ethanol Disp, Air-dry, Ultra","e_cly_u","Cly_E","F","4.1","% wt","layer","mean","To Be Added","Ethanol and Ultrasonic probe dispersible clay, <2mm (by pipette) is the gravimetric percent of <0.002 mm particles dispersed without organic matter and salt removal, and without chemical dispersion. It is reported on a <2 mm base.",
1760,"aggregate analyte","Palygorskite, tga","min_PG_tga","PG_tga","F","3.0","%","layer","mean","To Be Added","to be added",
1759,"aggregate analyte","Montmorillonite, tga","min_MT_tga","MT_tga","F","3.0","%","layer","mean","To Be Added","to be added",
1758,"aggregate analyte","Halloysite, tga","min_KH_tga","KH_tga","F","3.0","%","layer","mean","To Be Added","to be added",
1757,"derived_analyte","Sulfur, hmin","Shmin","s_hmin_d-1_S","F","6.2","% wt","layer",,"to be added","The sulfur content of the less than 53 micron fraction.","<2 mm"
1756,"derived_analyte","Nitrogen, hmin","Nhmin","n_hmin_d-1_S","F","6.2","% wt","layer",,"to be added","The nitrogen content of the less than 53 micron fraction.","<2 mm"
1755,"derived_analyte","Carbon, hmin","Chmin","c_hmin_d-1_S","F","6.2","% wt","layer",,"to be added","The carbon content of the less than 53 micron fraction.","<2 mm"
1754,"aggregate analyte","Sulfur, hpom","Shpom","Shpom","F","6.4","% wt","layer","mean","hpom_s*((hpom_dish_wt-dish_tare)/smp_wt)*ADRATIO","The sulfur content of the particulate organic matter (>53 micron)",
1753,"aggregate analyte","Nitrogen, hpom","Nhpom","Nhpom","F","6.2","% wt","layer","mean","hpom_n*((hpom_dish_wt-dish_tare)/smp_wt)*ADRATIO","The nitrogen content of the particulate organic matter (>53 micron)",
1752,"aggregate analyte","Carbon, hpom","Chpom","Chpom","F","6.2","% wt","layer","mean","hpom_c*((hpom_dish_wt-dish_tare)/smp_wt)*ADRATIO","The carbon content of the particulate organic matter (>53 micron)",
1751,"aggregate analyte","Serpentine, x-ray","min_SZ_x-ray","SZxray","C","4","peak_size","layer","concat","to be added","to be added",
1750,"aggregate analyte","p-nitrophenol, ß-Glucosidase","PNitrophen","PNitro","I","3.0","mg/kg/hr","layer","mean","(treated_dil_ratio * treated_absorbance / treated_smp_wt) - (control_dil_ratio * control_absorbance / control_smp_wt)* ADRATIO / incubation_hrs","The p-nitrophenol content based on ß-Glucosidase calibration.",
1749,"aggregate analyte","Pumice, x-ray pm","min_PM_x-ray_pm","PMxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1748,"aggregate analyte","Thenardite, x-ray pm","min_TH_x-ray_pm","THxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1747,"aggregate analyte","Tridymite, x-ray pm","min_TD_x-ray_pm","TDxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1746,"aggregate analyte","Smectite, x-ray pm","min_SM_x-ray_pm","SMxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1745,"aggregate analyte","Sepiolite, x-ray pm","min_SE_x-ray_pm","SExrpm","C","4","peak_size","layer","concat","to be added","to be added",
1744,"aggregate analyte","Scapolite, x-ray pm","min_SC_x-ray_pm","SCxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1743,"aggregate analyte","Palygorskite, x-ray pm","min_PG_x-ray_pm","PGxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1742,"aggregate analyte","Palagonite, x-ray pm","min_PA_x-ray_pm","PAxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1741,"aggregate analyte","Montmorillonite-Vermiculite, x-ray pm","min_MV_x-ray_pm","MVxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1629,"aggregate analyte","Feldspathoids, x-ray pm","min_FZ_x-ray_pm","FZxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1628,"aggregate analyte","Feldspar, x-ray pm","min_FD_x-ray_pm","FDxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1627,"aggregate analyte","Epidote, x-ray pm","min_EP_x-ray_pm","EPxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1626,"aggregate analyte","Enstatite, x-ray pm","min_EN_x-ray_pm","ENxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1625,"aggregate analyte","Dumortierite, x-ray pm","min_DU_x-ray_pm","DUxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1624,"aggregate analyte","Dolomite, x-ray pm","min_DL_x-ray_pm","DLxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1623,"aggregate analyte","Diopside, x-ray pm","min_DP_x-ray_pm","DPxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1622,"aggregate analyte","Diatoms, x-ray pm","min_DI_x-ray_pm","DIxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1621,"aggregate analyte","Cristobalite, x-ray pm","min_CR_x-ray_pm","CRxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1620,"aggregate analyte","Corundum, x-ray pm","min_CN_x-ray_pm","CNxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1619,"aggregate analyte","Collophane, x-ray pm","min_CO_x-ray_pm","COxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1618,"aggregate analyte","Coal, x-ray pm","min_CC_x-ray_pm","CCxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1617,"aggregate analyte","Clinozoisite, x-ray pm","min_CZ_x-ray_pm","CZxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1616,"aggregate analyte","Cliachite (Bauxite), x-ray pm","min_CH_x-ray_pm","CHxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1615,"aggregate analyte","Clay-Coated Quartz, x-ray pm","min_QC_x-ray_pm","QCxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1614,"aggregate analyte","Chrysotile, x-ray pm","min_CY_x-ray_pm","CYxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1613,"aggregate analyte","Chlorite-Mica, x-ray pm","min_CM_x-ray_pm","CMxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1612,"aggregate analyte","Chlorite, x-ray pm","min_CL_x-ray_pm","CLxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1611,"aggregate analyte","Chert (Chalcedony, Jasper, Agate, Onyx), x-ray pm","min_CD_x-ray_pm","CDxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1610,"aggregate analyte","Cassiterite, x-ray pm","min_CT_x-ray_pm","CTxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1609,"aggregate analyte","Carbonate Aggregates, x-ray pm","min_CB_x-ray_pm","CBxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1608,"aggregate analyte","Calcite, x-ray pm","min_CA_x-ray_pm","CAxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1607,"aggregate analyte","Brucite, x-ray pm","min_BR_x-ray_pm","BRxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1606,"aggregate analyte","Brookite, x-ray pm","min_BK_x-ray_pm","BKxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1605,"aggregate analyte","Bronzite, x-ray pm","min_BZ_x-ray_pm","BZxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1604,"aggregate analyte","Boehmite, x-ray pm","min_BE_x-ray_pm","BExrpm","C","4","peak_size","layer","concat","to be added","to be added",
1603,"aggregate analyte","Biotite-Chlorite, x-ray pm","min_BC_x-ray_pm","BCxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1602,"aggregate analyte","Biotite, x-ray pm","min_BT_x-ray_pm","BTxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1601,"aggregate analyte","Beryl, x-ray pm","min_BY_x-ray_pm","BYxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1600,"aggregate analyte","Basic Glass, x-ray pm","min_BG_x-ray_pm","BGxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1599,"aggregate analyte","Barite, x-ray pm","min_BA_x-ray_pm","BAxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1598,"aggregate analyte","Augite, x-ray pm","min_AU_x-ray_pm","AUxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1597,"aggregate analyte","Arfvedsonite, x-ray pm","min_AF_x-ray_pm","AFxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1596,"aggregate analyte","Aragonite, x-ray pm","min_AO_x-ray_pm","AOxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1595,"aggregate analyte","Apatite, x-ray pm","min_AP_x-ray_pm","APxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1594,"aggregate analyte","Antigorite, x-ray pm","min_AG_x-ray_pm","AGxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1593,"aggregate analyte","Anthophyllite, x-ray pm","min_AH_x-ray_pm","AHxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1592,"aggregate analyte","Anorthoclase, x-ray pm","min_FH_x-ray_pm","FHxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1591,"aggregate analyte","Anorthite, x-ray pm","min_FN_x-ray_pm","FNxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1590,"aggregate analyte","Anhydrite, x-ray pm","min_AY_x-ray_pm","AYxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1589,"aggregate analyte","Andesite, x-ray pm","min_FA_x-ray_pm","FAxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1588,"aggregate analyte","Andalusite, x-ray pm","min_AN_x-ray_pm","ANxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1587,"aggregate analyte","Anatase, x-ray pm","min_AE_x-ray_pm","AExrpm","C","4","peak_size","layer","concat","to be added","to be added",
1586,"aggregate analyte","Amphibole, x-ray pm","min_AM_x-ray_pm","AMxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1585,"aggregate analyte","Albite, x-ray pm","min_FB_x-ray_pm","FBxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1584,"aggregate analyte","Actinolite, x-ray pm","min_AC_x-ray_pm","ACxrpm","C","4","peak_size","layer","concat","to be added","to be added",
1582,"aggregate analyte","Clay5, coulter counter","clay5_psa2","Cly5_p3","F","4.1","% wt","layer","mean","To Be Added","Clay5 is the soil separate with 1.59-2.0 µm particle diameter.",
1581,"aggregate analyte","Clay4, coulter counter","clay4_psa2","Cly4_p3","F","4.1","% wt","layer","mean","To Be Added","Clay4 is the soil separate with 1.26-1.59 µm particle diameter.",
1580,"aggregate analyte","Clay3, coulter counter","clay3_psa2","Cly3_p3","F","4.1","% wt","layer","mean","To Be Added","Clay3 is the soil separate with 1.00-1.26 µm particle diameter.",
1579,"aggregate analyte","Clay2, coulter counter","clay2_psa2","Cly2_p3","F","4.1","% wt","layer","mean","To Be Added","Clay2 is the soil separate with 0.794-1.00 µm particle diameter.",
1578,"aggregate analyte","Clay1, coulter counter","clay1_psa2","Cly1_p3","F","4.1","% wt","layer","mean","To Be Added","Clay1 is the soil separate with 0.63-0.794 µm particle diameter.",
1577,"aggregate analyte","Silt, Medium, coulter counter","silt_m_psa2","SiltMp3","F","4.1","% wt","layer","mean","To Be Added","Medium silt is the soil separate with 0.005 to 0.02 mm particle size. It is reported as a gravimetric percent on a <2 mm base.",
1576,"aggregate analyte","Clay, coulter counter","clay_tot_psa2","ClyT_p3","F","4.1","% wt","layer","mean","To Be Added","Total clay is the soil separate with <0.002 mm particle diameter. Clay size carbonate is included. Total clay is reported as a weight percent of the <2 mm fraction.",
1575,"aggregate analyte","Sand, Coarse, coulter counter","sand_c_psa2","SndC_p3","F","4.1","% wt","layer","mean","To Be Added","Coarse sand is the soil separate with 0.5 to 1.0 mm particle diameter. It is reported a gravimetric percent on a <2 mm base.",
1574,"aggregate analyte","Sand, Fine, coulter counter","sand_f_psa2","SndF_p3","F","4.1","% wt","layer","mean","To Be Added","Fine sand is the soil separate with 0.10 to 0.25 mm diameter particles. It is reported as a gravimetric percent on a <2 mm base.",
1573,"aggregate analyte","Sand, Medium, coulter counter","sand_m_psa2","SndM_p3","F","4.1","% wt","layer","mean","To Be Added","Medium sand is the soil separate with 0.25 to 0.50 mm particle diameter. It is reported as a gravimetric percent on a <2 mm base.",
1572,"aggregate analyte","Sand, Very Coarse, coulter counter","sand_vc_psa2","SndVCp3","F","4.1","% wt","layer","mean","To Be Added","Very coarse sand is the soil separate with 1.0 to 2.0 mm particle diameter. It is reported as a gravimetric percent on a <2 mm base.",
1571,"aggregate analyte","Sand, Very Fine, coulter counter","sand_vf_psa2","SndVFp3","F","4.1","% wt","layer","mean","To Be Added","Very fine sand is the soil separate with 0.05 to 0.10 mm particle diameter. It is reported as a gravimetric percent on a <2 mm base.",
1570,"aggregate analyte","Silt, Fine, coulter counter","silt_f_psa2","SiltFp3","F","4.1","% wt","layer","mean","To Be Added","Fine silt is the soil separate with 0.002 to 0.005 mm particle diameter. It is reported as a gravimetric percent on a <2 mm base.",
1569,"derived_analyte","Sand, Total, coulter counter","sand_tot_psa2","Sand_d-4_S","F","4.1","% wt","layer",,"VCSand + CSand + MSand + FSand + VFSand","Total sand is the soil separate with 0.05 to 2.0 mm particle diameter. It is reported a gravimetric percent on a <2 mm base. S prep","<2 mm"
1568,"aggregate analyte","Silt, Coarse, coulter counter","silt_c_psa2","SiltCp3","F","4.1","% wt","layer","mean","To Be Added","Coarse silt is the soil separate with 0.02 to 0.05 mm particle size. It is reported as a gravimetric percent on a <2 mm base.",
1567,"derived_analyte","Silt, Total, coulter counter","silt_tot_psa2","Silt_d-4_S","F","4.1","% wt","layer",,"100.0 - (Clay + Sand)","Total silt is the soil separate with 0.002 to 0.05 mm particle size. It is reported as a gravimetric percent on a <2 mm base.","<2 mm"
1566,"derived_analyte","Texture, USDA","tex_psda","Textur_d-4_S","C","4","(NA)","layer",,"to be added","The laboratory determined texture of the <2 mm fraction is calculated from particle size separate data.","<2 mm"
1565,"aggregate analyte","Bicarbonate, 1:1 soil/water Extract","hco3_1swx","HCO3_1swx","F","5.1","mmol(-)/L","layer","mean","To Be Added","Bicarbonate (HCO3) in the 1:1 soil/water extract is the fraction removed from a sample by saturating the sample with distilled H2O, then vacuum extracting the water. It is reported as meq per liter of extract.",
1564,"aggregate analyte","pH, 1:1 soil/water Extract","ph_1swx","pH_1swx","F","3.1","(NA)","layer","mean","To Be Added","The pH, 1:1 soil/water extract is the pH of the solution extracted from the 1:1 soil/water extract sample. It is used as an indicator of the irrigated pH of soils with soluble salts.",
408,"aggregate analyte","Cristobalite, x-ray","min_CR_x-ray","CRxray","C","4","peak_size","layer","concat","to be added","to be added",
407,"aggregate analyte","Chlorite-Mica, x-ray","min_CM_x-ray","CMxray","C","4","peak_size","layer","concat","to be added","to be added",
406,"aggregate analyte","Chlorite, x-ray","min_CL_x-ray","CLxray","C","4","peak_size","layer","concat","to be added","to be added",
405,"aggregate analyte","Calcite, x-ray","min_CA_x-ray","CAxray","C","4","peak_size","layer","concat","to be added","to be added",
404,"aggregate analyte","Brucite, x-ray","min_BR_x-ray","BRxray","C","4","peak_size","layer","concat","to be added","to be added",
403,"aggregate analyte","Biotite-Chlorite, x-ray","min_BC_x-ray","BCxray","C","4","peak_size","layer","concat","to be added","to be added",
402,"aggregate analyte","Biotite, x-ray","min_BT_x-ray","BTxray","C","4","peak_size","layer","concat","to be added","to be added",
401,"aggregate analyte","Aragonite, x-ray","min_AO_x-ray","AOxray","C","4","peak_size","layer","concat","to be added","to be added",
400,"aggregate analyte","Antigorite, x-ray","min_AG_x-ray","AGxray","C","4","peak_size","layer","concat","to be added","to be added",
399,"aggregate analyte","Anatase, x-ray","min_AE_x-ray","AExray","C","4","peak_size","layer","concat","to be added","to be added",
398,"aggregate analyte","Analcime, x-ray","min_LC_x-ray","LCxray","C","4","peak_size","layer","concat","to be added","to be added",
397,"aggregate analyte","Amphibole, x-ray","min_AM_x-ray","AMxray","C","4","peak_size","layer","concat","to be added","to be added",
396,"aggregate analyte","Ratio, Air-dry/Ovendry","adod","ADOD","F","4.3","(NA)","layer","mean","To Be Added","Airdry/ovendry H2O ratio is the ratio of air dry gravimetric percent water over oven dry (105 degrees C) gravimetric percent water. If gypsum is present, this ratio is corrected for crystal water in the gypsum.",
395,"aggregate analyte","Water Retention, 2 Bar, <2mm Sieve, Air-dry","w2bl2","W2BL2","F","5.1","% wt","layer","mean","to be added","2 bar water, <2mm sieved, airdry is the gravimetric percent water in <2 mm airdry sieved samples after equilibration at 2 bars water tension. It is reported on a <2 mm base.",
394,"aggregate analyte","Water Retention, 15 Bar, <2mm, Air-dry","w15l2","W15L2","F","5.1","% wt","layer","mean","To Be Added","15 bar water on air dry soil is the gravimetric water content of <2 mm air dry samples after equilibration at 15 bars water tension. It is reported on a <2 mm base. The value is influenced by clay %, mineralogy, and organic carbon %.",
393,"aggregate analyte","Water Retention, 1 Bar, <2mm Sieve, Air-dry","w1bl2","W1BL2","F","5.1","% wt","layer","mean","to be added","1 bar water, <2mm sieved, airdry is the gravimetric water content of <2 mm sieved air dry samples after equilibration at 1 bar water tension. It is reported on a <2 mm base.",
372,"aggregate analyte","Calcium, Total","ca_tot","Ca_tot","F","4.1","% wt","layer","mean","To Be Added","Total Ca is the calcium measured after total dissolution of a size fraction of soil material. It is stored as elemental percent and reported as percent oxide on the base of the size fraction used.",
1548,"aggregate analyte","Phosphorus, isotherm, 5 µg/mL P remaining in solution","p_iso05x","Piso05x","F","5.2","µg/mL","layer","mean","To Be Added","to be added",
1547,"derived_analyte","Texture, USDA","tex_psda","Textur_d-3_S","C","4","(NA)","layer",,"to be added","The laboratory determined texture of the <2 mm fraction is calculated from particle size separate data.","<2 mm"
1546,"derived_analyte","Silt, Total, centrifuge","silt_tot_psa2","Silt_d-3_S","F","4.1","% wt","layer",,"100.0 - (Clay + Sand)","Total silt is the soil separate with 0.002 to 0.05 mm particle size. It is reported as a gravimetric percent on a <2 mm base. Organic matter and soluble salts not removed.","<2 mm"
1545,"derived_analyte","Silt, Coarse, centrifuge","silt_c_psa2","CSilt_d-3_S","F","4.1","% wt","layer",,"CSilt = 100.0 - Clay - FSilt - Sand","Coarse silt is the soil separate with 0.02 to 0.05 mm particle size. It is reported as a gravimetric percent on a <2 mm base. Organic matter and soluble salts not removed.","<2 mm"
1544,"derived_analyte","Sand, Total, centrifuge","sand_tot_psa2","Sand_d-3_S","F","4.1","% wt","layer",,"VCSand + CSand + MSand + FSand + VFSand","Total sand is the soil separate with 0.05 to 2.0 mm particle diameter. It is reported a gravimetric percent on a <2 mm base. S prep Organic matter and soluble salts not removed.","<2 mm"
1543,"aggregate analyte","Silt, Fine, centrifuge","silt_f_psa2","SiltFp2","F","4.1","% wt","layer","mean","To Be Added","Fine silt is the soil separate with 0.002 to 0.02 mm particle diameter. It is reported as a gravimetric percent on a <2 mm base. Organic matter and soluble salts not removed.",
1542,"aggregate analyte","Sand, Very Fine, centrifuge","sand_vf_psa2","SndVFp2","F","4.1","% wt","layer","mean","To Be Added","Very fine sand is the soil separate with 0.05 to 0.10 mm particle diameter. It is reported as a gravimetric percent on a <2 mm base. Organic matter and soluble salts not removed.",
1541,"aggregate analyte","Sand, Very Coarse, centrifuge","sand_vc_psa2","SndVCp2","F","4.1","% wt","layer","mean","To Be Added","Very coarse sand is the soil separate with 1.0 to 2.0 mm particle diameter. It is reported as a gravimetric percent on a <2 mm base. Organic matter and soluble salts not removed.",
1540,"aggregate analyte","Sand, Medium, centrifuge","sand_m_psa2","SndM_p2","F","4.1","% wt","layer","mean","To Be Added","Medium sand is the soil separate with 0.25 to 0.50 mm particle diameter. It is reported as a gravimetric percent on a <2 mm base. Organic matter and soluble salts not removed.",
1539,"aggregate analyte","Sand, Fine, centrifuge","sand_f_psa2","SndF_p2","F","4.1","% wt","layer","mean","To Be Added","Fine sand is the soil separate with 0.10 to 0.25 mm diameter particles. It is reported as a gravimetric percent on a <2 mm base. Organic matter and soluble salts not removed.",
1538,"aggregate analyte","Sand, Coarse, centrifuge","sand_c_psa2","SndC_p2","F","4.1","% wt","layer","mean","To Be Added","Coarse sand is the soil separate with 0.5 to 1.0 mm particle diameter. It is reported a gravimetric percent on a <2 mm base. Organic matter and soluble salts not removed.",
1537,"aggregate analyte","Clay, centrifuge","clay_tot_psa2","ClyT_p2","F","4.1","% wt","layer","mean","To Be Added","Total clay is the soil separate with <0.002 mm particle diameter. Clay size carbonate is included. Total clay is reported as a weight percent of the <2 mm fraction. Organic matter and soluble salts not removed.",
1536,"derived_analyte","Texture, USDA","tex_psda","Textur_d-2_S","C","4","(NA)","layer",,"to be added","The laboratory determined texture of the <2 mm fraction is calculated from particle size separate data.","<2 mm"
1535,"derived_analyte","Silt, Total, no pretreatment, Pipet","silt_tot_psa1","Silt_d-2_S","F","4.1","% wt","layer",,"100.0 - (Clay + Sand)","Total silt is the soil separate with 0.002 to 0.05 mm particle size. It is reported as a gravimetric percent on a <2 mm base. Organic matter and soluble salts not removed.","<2 mm"
1534,"derived_analyte","Silt, Coarse, no pretreatment, Pipet","silt_c_psa1","CSilt_d-2_S","F","4.1","% wt","layer",,"CSilt = 100.0 - Clay - FSilt - Sand","Coarse silt is the soil separate with 0.02 to 0.05 mm particle size. It is reported as a gravimetric percent on a <2 mm base. Organic matter and soluble salts not removed.","<2 mm"
1533,"derived_analyte","Sand, Total, no pretreatment, Pipet","sand_tot_psa1","Sand_d-2_S","F","4.1","% wt","layer",,"VCSand + CSand + MSand + FSand + VFSand","Total sand is the soil separate with 0.05 to 2.0 mm particle diameter. It is reported a gravimetric percent on a <2 mm base. S prep Organic matter and soluble salts not removed.","<2 mm"
1532,"aggregate analyte","Silt, Fine, no pretreatment, Pipet","silt_f_psa1","SiltFp1","F","4.1","% wt","layer","mean","To Be Added","Fine silt is the soil separate with 0.002 to 0.02 mm particle diameter. It is reported as a gravimetric percent on a <2 mm base. Organic matter and soluble salts not removed.",
1305,"derived_analyte","Cation Exchange Capacity, Effective, CECd-Set 8","ecec_cecd8","ECEC_d-14_GP","F","4.1","meq/100g","layer",,"Sum of bases + AL_KCL","The effective cation exchange capacity is calculated by BASE_SUM+AL_KCL. It is not calculated if soluble salts are present. It is reported as meq per 100 grams on a <2 mm base.","<2 mm"
1304,"derived_analyte","Cation Exchange Capacity, Sum of Cations, CECd-Set 9","cec_sum_cecd9","CECsum_d-12_S","F","4.1","meq/100g","layer",,"(base_sum + acid_tea)","This is the calculated CEC at pH 8.2. It is calculated by (BASE_SUM+ACID_TEA). It is reported as meq per 100 grams sample on a <2 mm base.","<80 mesh"
1303,"derived_analyte","Cation Exchange Capacity, Sum of Cations, CECd-Set 8","cec_sum_cecd8","CECsum_d-11_S","F","4.1","meq/100g","layer",,"(base_sum + acid_tea)","This is the calculated CEC at pH 8.2. It is calculated by (BASE_SUM+ACID_TEA). It is reported as meq per 100 grams sample on a <2 mm base.","<80 mesh"
1302,"derived_analyte","Cation Exchange Capacity, Sum of Cations, CECd-Set 7","cec_sum_cecd7","CECsum_d-10_S-SK","F","4.1","meq/100g","layer",,"(base_sum + acid_tea)","This is the calculated CEC at pH 8.2. It is calculated by (BASE_SUM+ACID_TEA). It is reported as meq per 100 grams sample on a <2 mm base.","<2 mm"
1301,"derived_analyte","Cation Exchange Capacity, Sum of Cations, CECd-Set 6","cec_sum_cecd6","CECsum_d-9_N","F","4.1","meq/100g","layer",,"(base_sum + acid_tea)","This is the calculated CEC at pH 8.2. It is calculated by (BASE_SUM+ACID_TEA). It is reported as meq per 100 grams sample on a <2 mm base.","<2 mm"
1300,"derived_analyte","Cation Exchange Capacity, Sum of Cations, CECd-Set 5","cec_sum_cecd5","CECsum_d-8_M","F","4.1","meq/100g","layer",,"(base_sum + acid_tea)","This is the calculated CEC at pH 8.2. It is calculated by (BASE_SUM+ACID_TEA). It is reported as meq per 100 grams sample on a <2 mm base.","<2 mm"
1299,"derived_analyte","Cation Exchange Capacity, Sum of Cations, CECd-Set 4","cec_sum_cecd4","CECsum_d-7_GP","F","4.1","meq/100g","layer",,"(base_sum + acid_tea)","This is the calculated CEC at pH 8.2. It is calculated by (BASE_SUM+ACID_TEA). It is reported as meq per 100 grams sample on a <2 mm base.","<2 mm"
1298,"derived_analyte","Base Saturation, NH4OAc, pH 7.0, CECd-Set 9","bsesat_cecd9","BSSBas_d-12_S","I","3.0","%","layer",,"([base_sum] \ [cec_nh4]) * 100","NH4OAC base saturation (pH 7.0) is calculated by (BASE_SUM/CEC_NH4)*100.","<80 mesh"
1297,"derived_analyte","Base Saturation, NH4OAc, pH 7.0, CECd-Set 8","bsesat_cecd8","BSSBas_d-11_S","I","3.0","%","layer",,"([base_sum] \ [cec_nh4]) * 100","NH4OAC base saturation (pH 7.0) is calculated by (BASE_SUM/CEC_NH4)*100.","<80 mesh"
1296,"derived_analyte","Base Saturation, NH4OAc, pH 7.0, CECd-Set 7","bsesat_cecd7","BSSBas_d-10_S-SK","I","3.0","%","layer",,"([base_sum] \ [cec_nh4]) * 100","NH4OAC base saturation (pH 7.0) is calculated by (BASE_SUM/CEC_NH4)*100.","<2 mm"
1295,"derived_analyte","Base Saturation, NH4OAc, pH 7.0, CECd-Set 6","bsesat_cecd6","BSSBas_d-9_N","I","3.0","%","layer",,"([base_sum] \ [cec_nh4]) * 100","NH4OAC base saturation (pH 7.0) is calculated by (BASE_SUM/CEC_NH4)*100.","<2 mm"
1294,"derived_analyte","Base Saturation, NH4OAc, pH 7.0, CECd-Set 5","bsesat_cecd5","BSSBas_d-8_M","I","3.0","%","layer",,"([base_sum] \ [cec_nh4]) * 100","NH4OAC base saturation (pH 7.0) is calculated by (BASE_SUM/CEC_NH4)*100.","<2 mm"
1293,"derived_analyte","Base Saturation, NH4OAc, pH 7.0, CECd-Set 4","bsesat_cecd4","BSSBas_d-7_GP","I","3.0","%","layer",,"([base_sum] \ [cec_nh4]) * 100","NH4OAC base saturation (pH 7.0) is calculated by (BASE_SUM/CEC_NH4)*100.","<2 mm"
994,"derived_analyte","Zoisite, mica_adjustment","min_ZO_mica_adj","ZO_mica","I","3.0","%","layer","mean","to be added","to be added",
993,"derived_analyte","Zircon, mica_adjustment","min_ZR_mica_adj","ZR_mica","I","3.0","%","layer","mean","to be added","to be added",
992,"derived_analyte","Zeolite, mica_adjustment","min_ZE_mica_adj","ZE_mica","I","3.0","%","layer","mean","to be added","to be added",
991,"derived_analyte","Weatherable Mineral, mica_adjustment","min_WE_mica_adj","WE_mica","I","3.0","%","layer","mean","to be added","to be added",
990,"derived_analyte","Weatherable Aggregates, mica_adjustment","min_AR_mica_adj","AR_mica","I","3.0","%","layer","mean","to be added","to be added",
989,"derived_analyte","Wavellite, mica_adjustment","min_WV_mica_adj","WV_mica","I","3.0","%","layer","mean","to be added","to be added",
988,"derived_analyte","Vivianite, mica_adjustment","min_VI_mica_adj","VI_mica","I","3.0","%","layer","mean","to be added","to be added",
987,"derived_analyte","Vermiculite-Mica, mica_adjustment","min_VM_mica_adj","VM_mica","I","3.0","%","layer","mean","to be added","to be added",
986,"derived_analyte","Vermiculite-Hydrobiotite, mica_adjustment","min_VH_mica_adj","VH_mica","I","3.0","%","layer","mean","to be added","to be added",
985,"derived_analyte","Vermiculite-Chlorite, mica_adjustment","min_VC_mica_adj","VC_mica","I","3.0","%","layer","mean","to be added","to be added",
984,"derived_analyte","Vermiculite, mica_adjustment","min_VR_mica_adj","VR_mica","I","3.0","%","layer","mean","to be added","to be added",
983,"derived_analyte","Tremolite, mica_adjustment","min_TE_mica_adj","TE_mica","I","3.0","%","layer","mean","to be added","to be added",
982,"derived_analyte","Tourmaline, mica_adjustment","min_TM_mica_adj","TM_mica","I","3.0","%","layer","mean","to be added","to be added",
981,"derived_analyte","Topaz, mica_adjustment","min_TP_mica_adj","TP_mica","I","3.0","%","layer","mean","to be added","to be added",
980,"derived_analyte","Talc, mica_adjustment","min_TA_mica_adj","TA_mica","I","3.0","%","layer","mean","to be added","to be added",
979,"derived_analyte","Sulphur, mica_adjustment","min_SU_mica_adj","SU_mica","I","3.0","%","layer","mean","to be added","to be added",
978,"derived_analyte","Stilbite, mica_adjustment","min_ST_mica_adj","ST_mica","I","3.0","%","layer","mean","to be added","to be added",
977,"derived_analyte","Staurolite, mica_adjustment","min_SO_mica_adj","SO_mica","I","3.0","%","layer","mean","to be added","to be added",
976,"derived_analyte","Sponge Spicule, mica_adjustment","min_SS_mica_adj","SS_mica","I","3.0","%","layer","mean","to be added","to be added",
975,"derived_analyte","Spinel, mica_adjustment","min_SN_mica_adj","SN_mica","I","3.0","%","layer","mean","to be added","to be added",
974,"derived_analyte","Sphene, mica_adjustment","min_SP_mica_adj","SP_mica","I","3.0","%","layer","mean","to be added","to be added",
973,"derived_analyte","Sphalerite, mica_adjustment","min_SG_mica_adj","SG_mica","I","3.0","%","layer","mean","to be added","to be added",
972,"derived_analyte","Sillimanite, mica_adjustment","min_SL_mica_adj","SL_mica","I","3.0","%","layer","mean","to be added","to be added",
971,"derived_analyte","Siliceous Aggregates, mica_adjustment","min_SA_mica_adj","SA_mica","I","3.0","%","layer","mean","to be added","to be added",
970,"derived_analyte","Siderite, mica_adjustment","min_SI_mica_adj","SI_mica","I","3.0","%","layer","mean","to be added","to be added",
969,"derived_analyte","Sericite, mica_adjustment","min_SR_mica_adj","SR_mica","I","3.0","%","layer","mean","to be added","to be added",
968,"derived_analyte","Sanidine, mica_adjustment","min_FS_mica_adj","FS_mica","I","3.0","%","layer","mean","to be added","to be added",