-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1647 lines (1606 loc) · 59 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>The Australian Soil Classification (ASC)</title>
<style>
#pylode {
position: fixed;
top: 205px;
left: -150px;
font-size: small;
transform: rotate(-90deg);
color: grey;
}
#pylode a {
font-size: 1.5em;
font-weight: bold;
text-decoration: none;
color: #005A9C;
}
#pylode a:hover {
color: #333;
}
#pylode #p {
color: #329545;
}
#pylode #y {
color: #f9cb33;
}
#pylode #version {
font-size: 1.0em;
}
#profile {
font-style: italic;
font-size: 1.25em;
color: darkred!important;
}
.cardinality {
font-style: italic;
color: #aa00aa;
}
dl {
/*border: 1px solid navy;*/
/*padding:5px;*/
}
dt {
font-weight: bold;
padding: 0;
}
dd {
margin-bottom: 10px;
padding-top: 7px;
}
#metadata ul,
#classes ul {
list-style-type: none;
}
#metadata ul li,
#classes ul li {
margin-left: -40px;
}
ul.hlist {
list-style-type: none;
border: 1px solid navy;
padding:5px;
background-color: #F4FFFF;
}
ul.hierarchy {
border: 1px solid navy;
padding: 5px 25px 5px 25px;
background-color: #F4FFFF;
}
ul.hlist li {
display: inline;
margin-right: 10px;
}
.entity {
border: 1px solid navy;
margin:5px 0 5px 0;
padding: 5px;
}
.entity th {
width: 150px;
vertical-align: top;
}
.entity th,
.entity td {
padding-bottom: 20px;
}
.entity table th {
text-align: left;
}
section#overview img {
max-width: 1000px;
}
h1, h2, h3, h4, h5, h6 {
text-align: left
}
h1, h2, h3 {
color: #005A9C; background: white
}
h1 {
font: 170% sans-serif;
line-height: 110%;
}
h2 {
font: 140% sans-serif;
margin-top:40px;
}
h3 {
font: 120% sans-serif;
margin-top: 20px;
padding-bottom: 5px;
border-bottom: 1px solid navy;
}
h4 { font: bold 100% sans-serif }
h5 { font: italic 100% sans-serif }
h6 { font: small-caps 100% sans-serif }
body {
padding: 2em 70px 2em 70px;
margin: 0;
font-family: sans-serif;
color: black;
background: white;
background-position: top left;
background-attachment: fixed;
background-repeat: no-repeat;
text-align: left;
}
section {
max-width: 1500px;
}
.figure {
margin-bottom: 20px;
}
:link { color: #00C; background: transparent }
:visited { color: #609; background: transparent }
a:active { color: #C00; background: transparent }
.sup-c,
.sup-op,
.sup-fp,
.sup-dp,
.sup-ap,
.sup-p,
.sup-ni,
.sup-con,
.sup-col {
cursor:help;
}
.sup-c {
color:orange;
}
.sup-op {
color:navy;
}
.sup-fp {
color:lightskyblue;
}
.sup-dp {
color:green;
}
.sup-ap {
color:darkred;
}
.sup-p {
color:black;
}
.sup-ni {
color:brown;
}
.sup-con {
color:orange;
}
.sup-col {
color:darkred;
}
sup {
margin-left: -3px;
}
code {
font-size: large;
color: darkred;
}
/* less prominent links for properties */
.proplink {
color: #336;
text-decoration: none;
}
#toc {
position: fixed;
top: 0;
right: 0;
z-index: 2;
height: 100%;
overflow-y: auto;
padding: 10px;
border: solid 1px navy;
font-size: small;
width: 180px;
}
#toc h3 {
margin-top: 5px;
}
#toc ul {
list-style: none;
padding-left: 0;
}
#toc .first > li {
margin-top: 5px;
}
#toc .second,
#toc .third {
padding-left: 10px;
}
#content {
width: calc(100% - 150px);
}
.hover_property {
cursor: help;
text-decoration: none;
border-bottom: dashed 1px;
}
.setclass {
list-style-type: none;
}
code{
word-wrap: break-word;
}
table {
table-layout: fixed;
width: 100%;
}
td {
word-wrap: break-word;
}
#legend table.entity {
width: 25%;
}
</style>
<link href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAABhklEQVQ4jbWPzStEURjG3yQLirlGKUnKFO45Z+SjmXvnnmthQcpCoVhYmD/AwmJiI3OvZuZc2U3UlKU0/gAslMw9JgvhHxAr2fko7r0jHSsl+TgbTz2Lt5731/MASEiJW9ONml2QyX6rsGalmnT74v8BDf12hxJfpV8d1uwNKUBYszabdFv84L8B9X0rESVmmUup2fme0cVhJWaZHw4NWL1SewEAfDe6H3Dy6Ll456WEJsRZS630MwCAOI20ei5OBpxse5zcBZw8eS4uPpfIuDiCainIg9umBCU0GZzgLZ9Hn31OgoATL+CkLDGB5H1OKj4nFd/FBxUXJ0UZNb4edw/6nLyJXaj5FeCVyPLNIVmYK8TG1IwWb16L1gEACAFV90ftoT8bdOX0EeyY99gxBXZMgRz6qGb1KantAACI0UvE6F5XJqEjpsdURouI0Vt5gGOUkUNnPu7ObGIIMfNaGqDmjDRi9FZldF1lRgYzeqUyeoiY4ag5Iy3RgOYRM8+/M2bG8efsO4hGrpmJseyMAAAAAElFTkSuQmCC" rel="icon" sizes="16x16" type="image/png">
<link href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAC40lEQVRYhe2UT0hUQRzHp6Iss1B3VZKIDbbdfW9mnoi4f3zzjkJQeOgS0SEIb1EWBGGlLLu460zQPQM1unUIIjA6rfpm6ZAhHjoIRVQUFUlEbG+euTsdXG1d3VL3bVD4g+9h+L35fT/8fvN7ADgY9aHY5fpIvK82HO9ysu66wxWOzbkjcekKx0a2ALYA/n2AGi3a6ArFezcidziecQygNhhrcUficjP6PwBqtGijKxy/thnVBePHywYoDsFhl53GV8SEcsTx4usCMLUewTVpc23BNvEzm6Neyf1+KcG2vwqwUjgrOJq2JmHftwmkVBRGTvncFodnbI7vChO/FRznCmHsNM7aHM9Yk7Df5iqsLMw9sMNOK2g+jS4IEz0UJv4iuJZb2RltWnB4UZqH6ioGAgAAGe5vtiZhtzDx7OoRadLmeM7m6IRjhnLMW2Vx1bA5GhAmnhIcz6/xNj4Ujsky8UspwfayjDPjsF2Y6L7N8Vzx/BfP+KPg6LbgSqd8DnfJW2CnbaLhfH5ephpqygJYvQU4Z3P82TLRsDDhUTnmrSq+Y3N0Mg+Xldy/zwEAnLMWZ3pHpNExmfLs/t0dOdVcbT0JeKxUwFP2VljjqiE47Jp53LTXNxhsUZjerTByXWX6VZWRs/4bIQ2ACv+UAomgDzLCISNZxAxZKMhIDjLy1JfsaK+I+eGBUBNk5E2x8RogX/PdcDZUqieWTSh5D6nOVKqfhoycUmlHFFIyu5RXqf7AcQDISCpv/tqbMBqK883RtmpISRoxQyJKPgGn3wNk5NEigDFa6hslqV/Kj+FdBQD0bshIDlKSLlVcoWQo36UhR80BAMB73lulMn0EMpJTqD6qJiOt3mho/8GbkT2BZNgDB/V+RI0fkOrT3kRIVQbaDizJm2hdNbINBxwk5xAj3yEjuV9rZ1iIkgxixkLBA83mz8uCjLwoGwAx0vOnFSy5mtR4VTaAQvVORMnwZgSpzkrV/QmdE2tKe46+MQAAAABJRU5ErkJggg==" rel="icon" sizes="32x32" type="image/png">
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<script id="schema.org" type="application/ld+json">
[
{
"@id": "http://anzsoil.org/def/au/asc/",
"@type": [
"https://schema.org/DefinedTermSet"
],
"https://schema.org/contributor": [
{
"@id": "https://orcid.org/0000-0002-3884-3420"
}
],
"https://schema.org/copyrightNotice": [
{
"@value": "copyright CSIRO 2009, 2016, 2021. All rights reserved."
}
],
"https://schema.org/creator": [
{
"@id": "mailto:[email protected]"
}
],
"https://schema.org/dateCreated": [
{
"@type": "http://www.w3.org/2001/XMLSchema#date",
"@value": "2016-06-23"
}
],
"https://schema.org/dateModified": [
{
"@value": "2022-03-22"
}
],
"https://schema.org/description": [
{
"@value": "The Australian Soil Classification provides a framework for organising knowledge about Australian soils by allocating soils to classes via a key."
}
],
"https://schema.org/license": [
{
"@id": "http://creativecommons.org/licences/by/4.0"
}
],
"https://schema.org/name": [
{
"@value": "The Australian Soil Classification (ASC)"
}
],
"https://schema.org/publisher": [
{
"@id": "http://www.publish.csiro.au/"
}
]
}
]
</script>
</head>
<body>
<div id="content">
<div class="section" id="metadata">
<h1>The Australian Soil Classification (ASC)</h1>
<h2>Metadata</h2>
<dl>
<div>
<dt>
<strong>IRI</strong>
</dt>
<dd>
<code>http://anzsoil.org/def/au/asc/</code>
</dd>
</div>
<div>
<dt>
<a class="hover_property" href="http://purl.org/dc/terms/title" title="A name given to the resource. Defined in DCMI Metadata Terms">Title</a>
</dt>
<dd><p>The Australian Soil Classification (ASC)</p></dd>
</div>
<div>
<dt>
<a class="hover_property" href="http://purl.org/dc/terms/publisher" title="An entity responsible for making the resource available. Defined in DCMI Metadata Terms">Publisher</a>
</dt>
<dd>http://www.publish.csiro.au/</dd>
</div>
<div>
<dt>
<a class="hover_property" href="http://purl.org/dc/terms/creator" title="An entity responsible for making the resource. Defined in DCMI Metadata Terms">Creator</a>
</dt>
<dd>mailto:[email protected]</dd>
</div>
<div>
<dt>
<a class="hover_property" href="http://purl.org/dc/terms/contributor" title="An entity responsible for making contributions to the resource. Defined in DCMI Metadata Terms">Contributor</a>
</dt>
<dd>
<span>
<a href="https://orcid.org/0000-0002-3884-3420">https://orcid.org/0000-0002-3884-3420</a>
</span>
</dd>
</div>
<div>
<dt>
<a class="hover_property" href="http://purl.org/dc/terms/created" title="Date of creation of the resource. Defined in DCMI Metadata Terms">Date Created</a>
</dt>
<dd><p>2016-06-23</p></dd>
</div>
<div>
<dt>
<a class="hover_property" href="http://purl.org/dc/terms/modified" title="Date on which the resource was changed. Defined in DCMI Metadata Terms">Date Modified</a>
</dt>
<dd><p>2022-03-22</p></dd>
</div>
<div>
<dt>
<a class="hover_property" href="http://purl.org/dc/terms/license" title="A legal document giving official permission to do something with the resource. Defined in DCMI Metadata Terms">License</a>
</dt>
<dd>
<a href="http://creativecommons.org/licences/by/4.0">http://creativecommons.org/licences/by/4.0</a>
</dd>
</div>
<div>
<dt>
<a class="hover_property" href="http://purl.org/dc/terms/rights" title="Information about rights held in and over the resource. Defined in DCMI Metadata Terms">Rights</a>
</dt>
<dd><p>copyright CSIRO 2009, 2016, 2021. All rights reserved.</p></dd>
</div>
<div>
<dt>
<a class="hover_property" href="http://purl.org/dc/terms/source" title="A related resource from which the described resource is derived. Defined in DCMI Metadata Terms">Source</a>
</dt>
<dd>
<ul>
<li>
<a href="https://catalogue.nla.gov.au/Record/8558027">https://catalogue.nla.gov.au/Record/8558027</a>
</li>
<li>
<a href="https://www.publish.csiro.au/book/8016">https://www.publish.csiro.au/book/8016</a>
</li>
<li>
<a href="https://www.soilscienceaustralia.org.au/asc/soilhome.htm">https://www.soilscienceaustralia.org.au/asc/soilhome.htm</a>
</li>
<li><p>Isbell, R.F. (1996;2002;2016;2021) The Australian Soil Classification (3rd edn). CSIRO Publishing, Melbourne</p></li>
</ul>
</dd>
</div>
<div>
<dt>
<a class="hover_property" href="http://purl.org/dc/terms/description" title="An account of the resource. Defined in DCMI Metadata Terms">Description</a>
</dt>
<dd><p>The Australian Soil Classification provides a framework for organising knowledge about Australian soils by allocating soils to classes via a key.</p></dd>
</div>
</dl>
</div>
<div class="section" id="classes">
<h2>Classes</h2>
<div class="property entity" id="Natureofalteredorganicmaterials">
<h3>Nature of altered organic materials
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</h3>
<table>
<tr>
<th>IRI</th>
<td>
<code>http://anzsoil.org/def/au/asc/Alteration</code>
</td>
</tr>
<tr>
<th>
<a class="hover_property" href="http://www.w3.org/2000/01/rdf-schema#subClassOf" title="The subject is a subclass of a class. Defined in The RDF Schema vocabulary (RDFS)">Sub Class Of</a>
</th>
<td>
<span>
<a href="#Family">Family criteria values</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</td>
</tr>
</table>
</div>
<div class="property entity" id="Classifier">
<h3>Classifier
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</h3>
<table>
<tr>
<th>IRI</th>
<td>
<code>http://anzsoil.org/def/au/asc/Class</code>
</td>
</tr>
<tr>
<th>
<a class="hover_property" href="http://www.w3.org/2000/01/rdf-schema#subClassOf" title="The subject is a subclass of a class. Defined in The RDF Schema vocabulary (RDFS)">Sub Class Of</a>
</th>
<td>
<span>
<a href="http://www.w3.org/2004/02/skos/core#Concept">Concept</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</td>
</tr>
<tr>
<th>
<a class="hover_property" href="https://w3id.org/profile/ontdoc/inRangeOf" title="Inverse of rdfs:range. Defined in Ontology Documentation Profile">In Range Of</a>
</th>
<td>
<ul>
<li>
<span>
<a href="#classifier">Differentiating class</a>
<sup class="sup-op" title="OWL Object Property">op</sup>
</span>
</li>
<li>
<span>
<a href="#greatgroup">Applicable Great group</a>
<sup class="sup-op" title="OWL Object Property">op</sup>
</span>
</li>
<li>
<span>
<a href="#subgroup">Applicable Subgroup</a>
<sup class="sup-op" title="OWL Object Property">op</sup>
</span>
</li>
<li>
<span>
<a href="#suborder">Applicable suborder</a>
<sup class="sup-op" title="OWL Object Property">op</sup>
</span>
</li>
</ul>
</td>
</tr>
<tr>
<th>
<a class="hover_property" href="https://w3id.org/profile/ontdoc/superClassOf" title="Inverse of RDFS' subClassOf. Defined in Ontology Documentation Profile">Super Class Of</a>
</th>
<td>
<span>
<a href="#ColourClass">Colour Classes</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</td>
</tr>
</table>
</div>
<div class="property entity" id="Claycontentvalues">
<h3>Clay content values
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</h3>
<table>
<tr>
<th>IRI</th>
<td>
<code>http://anzsoil.org/def/au/asc/Clay-content</code>
</td>
</tr>
<tr>
<th>
<a class="hover_property" href="http://www.w3.org/2000/01/rdf-schema#subClassOf" title="The subject is a subclass of a class. Defined in The RDF Schema vocabulary (RDFS)">Sub Class Of</a>
</th>
<td>
<span>
<a href="#Family">Family criteria values</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</td>
</tr>
</table>
</div>
<div class="property entity" id="ColourClass">
<h3>Colour Classes
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</h3>
<table>
<tr>
<th>IRI</th>
<td>
<code>http://anzsoil.org/def/au/asc/ColourClass</code>
</td>
</tr>
<tr>
<th>
<a class="hover_property" href="http://purl.org/dc/terms/description" title="An account of the resource. Defined in DCMI Metadata Terms">Description</a>
</th>
<td><p>
The class limits shown below (Fig. 3) have been chosen after examination of the Munsell Soil Color Charts (Munsell Color 2010) and the scheme used for grouping in the Factual Key (Northcote 1979). A major aim was to achieve class limits as simple as possible and to standardise on these throughout the system. The proposed scheme has the virtue of simplicity although some may argue that 2.5YR 4/2 for example is not very grey, nor is 5YR 8/3 very red. These discrepancies can of course be removed, but at the cost of simplicity. Some of the more obvious 'misfits' are probably rare in soils. Colours should be matched to the chip closest in colour, or the nearest whole number in chroma where chips are not provided, for example chromas 5 and 7.
</p>
<p><img src="" alt="Figure 3. Colour class limits. DO NOT use this in lieu of Munsell Soil Color Charts in the field."/></p>
<p>Figure 3. Colour class limits. DO NOT use this in lieu of Munsell Soil Color Charts in the field.</p>
<p><b>
Gley colours
</b></p>
<p>
Greyish, greenish and bluish colours found in wet soils and defined by specific Munsell Soil Color Charts - usually 10Y - 5GY and Gley charts 1 & 2 (Munsell Color 2010).
</p></td>
</tr>
<tr>
<th>
<a class="hover_property" href="http://www.w3.org/2000/01/rdf-schema#subClassOf" title="The subject is a subclass of a class. Defined in The RDF Schema vocabulary (RDFS)">Sub Class Of</a>
</th>
<td>
<span>
<a href="#Classifier">Classifier</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</td>
</tr>
<tr>
<th>
<a class="hover_property" href="https://w3id.org/profile/ontdoc/inRangeOf" title="Inverse of rdfs:range. Defined in Ontology Documentation Profile">In Range Of</a>
</th>
<td>
<span>
<a href="#colourclass">Applicable Colour class</a>
<sup class="sup-op" title="OWL Object Property">op</sup>
</span>
</td>
</tr>
</table>
</div>
<div class="property entity" id="Soildepth">
<h3>Soil depth
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</h3>
<table>
<tr>
<th>IRI</th>
<td>
<code>http://anzsoil.org/def/au/asc/Depth</code>
</td>
</tr>
<tr>
<th>
<a class="hover_property" href="http://www.w3.org/2000/01/rdf-schema#subClassOf" title="The subject is a subclass of a class. Defined in The RDF Schema vocabulary (RDFS)">Sub Class Of</a>
</th>
<td>
<span>
<a href="#Family">Family criteria values</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</td>
</tr>
</table>
</div>
<div class="property entity" id="Family">
<h3>Family criteria values
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</h3>
<table>
<tr>
<th>IRI</th>
<td>
<code>http://anzsoil.org/def/au/asc/Family</code>
</td>
</tr>
<tr>
<th>
<a class="hover_property" href="http://www.w3.org/2000/01/rdf-schema#subClassOf" title="The subject is a subclass of a class. Defined in The RDF Schema vocabulary (RDFS)">Sub Class Of</a>
</th>
<td>
<span>
<a href="http://www.w3.org/2004/02/skos/core#Concept">Concept</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</td>
</tr>
<tr>
<th>
<a class="hover_property" href="https://w3id.org/profile/ontdoc/superClassOf" title="Inverse of RDFS' subClassOf. Defined in Ontology Documentation Profile">Super Class Of</a>
</th>
<td>
<ul>
<li>
<span>
<a href="#Natureofalteredorganicmaterials">Nature of altered organic materials</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</li>
<li>
<span>
<a href="#Claycontentvalues">Clay content values</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</li>
<li>
<span>
<a href="#Soildepth">Soil depth</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</li>
<li>
<span>
<a href="#Gravel-nature">Nature of gravel</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</li>
<li>
<span>
<a href="#Organic-type">Type of organic materials</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</li>
<li>
<span>
<a href="#Texture">Texture</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</li>
<li>
<span>
<a href="#Thickness">Thickness</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</li>
<li>
<span>
<a href="#Water-repellence">Water repellence</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</li>
</ul>
</td>
</tr>
</table>
</div>
<div class="property entity" id="ASCGlossary">
<h3>ASC Glossary
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</h3>
<table>
<tr>
<th>IRI</th>
<td>
<code>http://anzsoil.org/def/au/asc/Glossary</code>
</td>
</tr>
<tr>
<th>
<a class="hover_property" href="http://purl.org/dc/terms/description" title="An account of the resource. Defined in DCMI Metadata Terms">Description</a>
</th>
<td><p>This glossary does not attempt to define all morphological terms used in the classification. It mainly deals with those that are not defined in the Australian Soil and Land Survey Field Handbook (NCST 2009). As the Field Handbook is currently being revised, some definitions in the glossary are aligned with the new Field Handbook rather than the current (third) edition.</p>
<p>Within this glossary, and throughout this website, the Australian Soil and Land Survey Field Handbook is referred to as the Field Handbook (the Field Handbook is also colloquially known as the Yellow book due to the colour of its cover).</p>
<p>For clarity in this publication the levels in the classification are capitalised - e.g. Order, Suborder, Great Group, Subgroup and Family. This is not a requirement when using these terms outside of this publication.</p></td>
</tr>
</table>
</div>
<div class="property entity" id="Gravel-nature">
<h3>Nature of gravel
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</h3>
<table>
<tr>
<th>IRI</th>
<td>
<code>http://anzsoil.org/def/au/asc/Gravel-nature</code>
</td>
</tr>
<tr>
<th>
<a class="hover_property" href="http://www.w3.org/2000/01/rdf-schema#subClassOf" title="The subject is a subclass of a class. Defined in The RDF Schema vocabulary (RDFS)">Sub Class Of</a>
</th>
<td>
<span>
<a href="#Family">Family criteria values</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</td>
</tr>
</table>
</div>
<div class="property entity" id="Soilorder">
<h3>Soil order
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</h3>
<table>
<tr>
<th>IRI</th>
<td>
<code>http://anzsoil.org/def/au/asc/Order</code>
</td>
</tr>
<tr>
<th>
<a class="hover_property" href="http://www.w3.org/2000/01/rdf-schema#subClassOf" title="The subject is a subclass of a class. Defined in The RDF Schema vocabulary (RDFS)">Sub Class Of</a>
</th>
<td>
<span>
<a href="http://www.w3.org/2004/02/skos/core#Concept">Concept</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</td>
</tr>
<tr>
<th>
<a class="hover_property" href="https://w3id.org/profile/ontdoc/inDomainOf" title="Inverse of rdfs:domain. Defined in Ontology Documentation Profile">In Domain Of</a>
</th>
<td>
<ul>
<li>
<span>
<a href="#colourclass">Applicable Colour class</a>
<sup class="sup-op" title="OWL Object Property">op</sup>
</span>
</li>
<li>
<span>
<a href="#colourclass-comment">Colour class comment</a>
<sup class="sup-ap" title="OWL Annotation Property">ap</sup>
</span>
</li>
<li>
<span>
<a href="#family-comment">Family comment</a>
<sup class="sup-ap" title="OWL Annotation Property">ap</sup>
</span>
</li>
<li>
<span>
<a href="#family-criteria">Family criteria</a>
<sup class="sup-op" title="OWL Object Property">op</sup>
</span>
</li>
<li>
<span>
<a href="#greatgroup-comment">Great group comment</a>
<sup class="sup-ap" title="OWL Annotation Property">ap</sup>
</span>
</li>
<li>
<span>
<a href="#subgroup-comment">Subgroup comment</a>
<sup class="sup-ap" title="OWL Annotation Property">ap</sup>
</span>
</li>
<li>
<span>
<a href="#suborder">Applicable suborder</a>
<sup class="sup-op" title="OWL Object Property">op</sup>
</span>
</li>
<li>
<span>
<a href="#suborder-comment">Suborder comment</a>
<sup class="sup-ap" title="OWL Annotation Property">ap</sup>
</span>
</li>
</ul>
</td>
</tr>
<tr>
<th>
<a class="hover_property" href="https://w3id.org/profile/ontdoc/restriction" title="Convenience property for things that subclass owl:Restriction. Defined in Ontology Documentation Profile">Restriction</a>
</th>
<td>
<span>
<span>
<span>
<a href="http://www.w3.org/2004/02/skos/core#narrower">has narrower</a>
<sup class="sup-op" title="OWL Object Property">op</sup>
</span>only<br>
</span>
</span>
</td>
</tr>
</table>
</div>
<div class="property entity" id="Organic-type">
<h3>Type of organic materials
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</h3>
<table>
<tr>
<th>IRI</th>
<td>
<code>http://anzsoil.org/def/au/asc/Organic-type</code>
</td>
</tr>
<tr>
<th>
<a class="hover_property" href="http://www.w3.org/2000/01/rdf-schema#subClassOf" title="The subject is a subclass of a class. Defined in The RDF Schema vocabulary (RDFS)">Sub Class Of</a>
</th>
<td>
<span>
<a href="#Family">Family criteria values</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</td>
</tr>
</table>
</div>
<div class="property entity" id="Podosoldiagnostichorizons">
<h3>Podosol diagnostic horizons
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</h3>
<table>
<tr>
<th>IRI</th>
<td>
<code>http://anzsoil.org/def/au/asc/Podosol-diagnostic-horizons</code>
</td>
</tr>
<tr>
<th>
<a class="hover_property" href="http://purl.org/dc/terms/description" title="An account of the resource. Defined in DCMI Metadata Terms">Description</a>
</th>
<td><p>The various B horizons defined below consist of illuvial accumulations of amorphous organic matter-aluminium and aluminium-silica complexes, with or without iron in various combinations. Although some may qualify as cemented pans, they are not to be regarded as substrate materials.</p></td>
</tr>
</table>
</div>
<div class="property entity" id="Soilsuborder">
<h3>Soil suborder
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</h3>
<table>
<tr>
<th>IRI</th>
<td>
<code>http://anzsoil.org/def/au/asc/Suborder</code>
</td>
</tr>
<tr>
<th>
<a class="hover_property" href="http://www.w3.org/2000/01/rdf-schema#subClassOf" title="The subject is a subclass of a class. Defined in The RDF Schema vocabulary (RDFS)">Sub Class Of</a>
</th>
<td>
<span>
<a href="http://www.w3.org/2004/02/skos/core#Concept">Concept</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</td>
</tr>
<tr>
<th>
<a class="hover_property" href="https://w3id.org/profile/ontdoc/inDomainOf" title="Inverse of rdfs:domain. Defined in Ontology Documentation Profile">In Domain Of</a>
</th>
<td>
<ul>
<li>
<span>
<a href="#greatgroup">Applicable Great group</a>
<sup class="sup-op" title="OWL Object Property">op</sup>
</span>
</li>
<li>
<span>
<a href="#subgroup">Applicable Subgroup</a>
<sup class="sup-op" title="OWL Object Property">op</sup>
</span>
</li>
</ul>
</td>
</tr>
<tr>
<th>
<a class="hover_property" href="https://w3id.org/profile/ontdoc/restriction" title="Convenience property for things that subclass owl:Restriction. Defined in Ontology Documentation Profile">Restriction</a>
</th>
<td>
<ul>
<li>
<span>
<span>
<span>
<a href="http://www.w3.org/2004/02/skos/core#broader">has broader</a>
<sup class="sup-op" title="OWL Object Property">op</sup>
</span>only<br>
</span>
</span>
</li>
<li>
<span>
<span>
<span>
<a href="#classifier">Differentiating class</a>
<sup class="sup-op" title="OWL Object Property">op</sup>
</span>
<span>
<span class="cardinality">exactly</span>
<span>1</span>
</span><br>
</span>
</span>
</li>
</ul>
</td>
</tr>
</table>
</div>
<div class="property entity" id="Texture">
<h3>Texture
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</h3>
<table>
<tr>
<th>IRI</th>
<td>
<code>http://anzsoil.org/def/au/asc/Texture</code>
</td>
</tr>
<tr>
<th>
<a class="hover_property" href="http://www.w3.org/2000/01/rdf-schema#subClassOf" title="The subject is a subclass of a class. Defined in The RDF Schema vocabulary (RDFS)">Sub Class Of</a>
</th>
<td>
<span>
<a href="#Family">Family criteria values</a>
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</span>
</td>
</tr>
</table>
</div>
<div class="property entity" id="Thickness">
<h3>Thickness
<sup class="sup-c" title="OWL/RDFS Class">c</sup>
</h3>
<table>
<tr>