forked from RDFLib/pyLODE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathearth-science-data-category.skos.html
2204 lines (2171 loc) · 97.3 KB
/
earth-science-data-category.skos.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 lang="en">
<head>
<title>Earth Science Data Category</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<style>
#pylode {
position: fixed;
top: 80px;
left: -60px;
font-size: small;
transform: rotate(-90deg);
color: grey;
}
#pylode a {
font-size: 2em;
font-weight: bold;
text-decoration: none;
color: #005A9C;
}
#pylode a:hover {
color: #333;
}
.cardinality {
font-style: italic;
color: #aa00aa;
}
dt {
font-weight: bold;
padding: 5px 0 5px 0;
}
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: 3px;
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: justify;
}
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-cp,
.sup-cl {
cursor:help;
margin-left: 3px;
}
.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-cp {
color:orange;
}
.sup-cl {
color:darkred;
}
code {
font-size: large;
color: darkred;
}
</style>
<script type="application/ld+json">
[
{
"@id": "http://linked.data.gov.au/def/earth-science-data-category",
"@type": [
"https://schema.org/DefinedTermSet"
],
"https://schema.org/description": [
{
"@value": "<p>A classification that facilitates identification of the Fields of Research, or topics, to which a dataset, activity, or entity pertain.</p>"
}
],
"https://schema.org/name": [
{
"@value": "Earth Science Data Category"
}
]
}
]
</script>
</head>
<body>
<div id="pylode">made by <a href="http://github.com/rdflib/pyLODE">pyLODE</a></div>
<h1>Earth Science Data Category</h1>
<h3><em>A taxonomy</em></h3>
<section id="conceptscheme">
<h2 style="display:none;">Concept Scheme</h2>
<dl>
<dt>IRI</dt>
<dd><code>http://linked.data.gov.au/def/earth-science-data-category</code></dd>
<dt>Publisher(s)</dt>
<dd>
Geological Survey of Queensland<br/>
</dd>
<dt>Creator(s)</dt>
<dd>
Geological Survey of Queensland<br/>
</dd>
<dt>Created</dt>
<dd>2019-09-06</dd>
<dt>Modified</dt>
<dd>2019-09-11</dd>
<dt>Source</dt>
<dd>Modified from the Fields of Research vocabulary from the Australian and New Zealand Standard Research Classification (ANZSRC). Relevant earth science categories have been extracted and augmented with narrower terms relevant for industry and research institutions.</dd>
<dt>Ontology RDF</dt>
<dd><a href="earth-science-data-category.ttl">RDF (turtle)</a></dd>
</dl>
<h2>Description</h2>
<div id="description">
<p>A classification that facilitates identification of the Fields of Research, or topics, to which a dataset, activity, or entity pertain.</p>
</div>
</section>
<section id="toc">
<h2>Table of Contents</h2>
<ol>
<li><a href="#concepts">Concepts</a></li>
<li><a href="#namespaces">Namespaces</a></li>
<li><a href="#legend">Legend</a></li>
</ol>
</section>
<section id="concepts">
<h2>Concepts <span style="float:right; font-size:smaller;"><a href="">↑</a></span></h2>
<ul class="hierarchy">
<li><a href="#atmosphericsciences">Atmospheric Sciences</a></li><li><a href="#biologicalsciences">Biological Sciences</a>
<ul><li><a href="#ecology">Ecology</a></li></ul></li><li><a href="#demography">Demography</a></li><li><a href="#engineering">Engineering</a>
<ul><li><a href="#environmentalengineering">Environmental Engineering</a></li></ul>
<ul><li><a href="#geomechanicsandresourcesgeotechnicalengineering">Geomechanics and Resources Geotechnical Engineering</a></li></ul></li><li><a href="#environmentalsciences">Environmental Sciences</a></li><li><a href="#geochemistry">Geochemistry</a>
<ul><li><a href="#extractgeochemistry">Extract Geochemistry</a></li></ul>
<ul><li><a href="#geochemistrynotelsewhereclassified">Geochemistry Not Elsewhere Classified</a></li></ul>
<ul><li><a href="#inorganicgeochemistry">Inorganic Geochemistry</a></li></ul>
<ul><li><a href="#isotopegeochemistry">Isotope Geochemistry</a></li></ul>
<ul><li><a href="#organicgeochemistry">Organic Geochemistry</a></li></ul></li><li><a href="#geology">Geology</a>
<ul><li><a href="#basinanalysis">Basin Analysis</a></li></ul>
<ul><li><a href="#extraterrestrialgeology">Extraterrestrial Geology</a></li></ul>
<ul><li><a href="#geochronology">Geochronology</a></li></ul>
<ul><li><a href="#geologynotelsewhereclassified">Geology Not Elsewhere Classified</a></li></ul>
<ul><li><a href="#geomechanics">Geomechanics</a></li></ul>
<ul><li><a href="#marinegeoscience">Marine Geoscience</a></li></ul>
<ul><li><a href="#mineralogyandcrystallography">Mineralogy and Crystallography</a></li></ul>
<ul><li><a href="#palaeontology">Palaeontology</a>
<ul><li><a href="#ichnology">Ichnology</a></li></ul>
<ul><li><a href="#invertebratepalaeontology">Invertebrate Palaeontology</a></li></ul>
<ul><li><a href="#palaeobotany">Palaeobotany</a></li></ul>
<ul><li><a href="#palynology">Palynology</a></li></ul>
<ul><li><a href="#vertebratepalaeontology">Vertebrate Palaeontology</a></li></ul></li></ul>
<ul><li><a href="#petroleumandcoalgeology">Petroleum and Coal Geology</a>
<ul><li><a href="#reservoirgeology">Reservoir Geology</a></li></ul></li></ul>
<ul><li><a href="#petrology">Petrology</a>
<ul><li><a href="#igneousandmetamorphicpetrology">Igneous and Metamorphic Petrology</a></li></ul>
<ul><li><a href="#organicpetrology">Organic Petrology</a></li></ul>
<ul><li><a href="#sedimentarypetrology">Sedimentary Petrology</a></li></ul></li></ul>
<ul><li><a href="#resourcegeology">Resource Geology</a>
<ul><li><a href="#hydrocarbonoccurrences">Hydrocarbon Occurrences</a></li></ul>
<ul><li><a href="#mineraloccurrences">Mineral Occurrences</a></li></ul>
<ul><li><a href="#quarryresources">Quarry Resources</a></li></ul></li></ul>
<ul><li><a href="#sedimentology">Sedimentology</a></li></ul>
<ul><li><a href="#stratigraphy">Stratigraphy</a></li></ul>
<ul><li><a href="#structuralgeology">Structural Geology</a></li></ul>
<ul><li><a href="#tectonics">Tectonics</a></li></ul>
<ul><li><a href="#volcanology">Volcanology</a></li></ul></li><li><a href="#geophysics">Geophysics</a>
<ul><li><a href="#electricalandelectromagneticmethodsingeophysics">Electrical and Electromagnetic Methods in Geophysics</a>
<ul><li><a href="#electricalgeophysics">Electrical Geophysics</a></li></ul></li></ul>
<ul><li><a href="#geodynamics">Geodynamics</a></li></ul>
<ul><li><a href="#geophysicalfluiddynamics">Geophysical Fluid Dynamics</a></li></ul>
<ul><li><a href="#geophysicsnotelsewhereclassified">Geophysics Not Elsewhere Classified</a></li></ul>
<ul><li><a href="#geothermicsandradiometrics">Geothermics and Radiometrics</a></li></ul>
<ul><li><a href="#gravity">Gravity</a></li></ul>
<ul><li><a href="#magnetics">Magnetics</a></li></ul>
<ul><li><a href="#petrophysics">Petrophysics</a></li></ul>
<ul><li><a href="#seismologyandseismicexploration">Seismology and Seismic Exploration</a>
<ul><li><a href="#seismicsurveys">Seismic Surveys</a>
<ul><li><a href="#passiveseismic">Passive Seismic</a></li></ul></li></ul></li></ul>
<ul><li><a href="#spectralimaging">Spectral Imaging</a>
<ul><li><a href="#airbornespectral">Airborne Spectral</a></li></ul>
<ul><li><a href="#corespectral">Core Spectral</a></li></ul>
<ul><li><a href="#satellitespectral">Satellite Spectral</a></li></ul></li></ul></li><li><a href="#physicalgeography">Physical Geography</a>
<ul><li><a href="#geomorphologyandregolithandlandscapeevolution">Geomorphology And Regolith And Landscape Evolution</a></li></ul>
<ul><li><a href="#glaciology">Glaciology</a></li></ul>
<ul><li><a href="#hydrogeology">Hydrogeology</a></li></ul>
<ul><li><a href="#naturalhazards">Natural Hazards</a></li></ul>
<ul><li><a href="#palaeoclimatology">Palaeoclimatology</a></li></ul>
<ul><li><a href="#physicalgeographyandenvironmentalgeosciencenotelsewhereclassified">Physical Geography And Environmental Geoscience Not Elsewhere Classified</a></li></ul>
<ul><li><a href="#quaternaryenvironments">Quaternary Environments</a></li></ul>
<ul><li><a href="#surfaceprocesses">Surface Processes</a></li></ul>
<ul><li><a href="#surfacewaterhydrology">Surfacewater Hydrology</a></li></ul></li>
</ul>
<div class="entity concept" id="airbornespectral">
<h3>Airborne Spectral<sup title="Concept" class="sup-cp">cp</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/earth-science-data-category/airborne-spectral</code></td>
</tr>
<tr>
<th>Definition</th>
<td>
Remotely sensed spectral imaging obtained from an airborne platform.<br/>
</td>
</tr>
<tr>
<th>Broader Concepts</th>
<td>
<a href="#spectralimaging">Spectral Imaging</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity concept" id="atmosphericsciences">
<h3>Atmospheric Sciences<sup title="Concept" class="sup-cp">cp</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/earth-science-data-category/atmospheric-sciences</code></td>
</tr>
<tr>
<th>Definition</th>
<td>
The study of the Earth's atmosphere and its various inner-working physical processes.<br/>
</td>
</tr>
<tr>
<th>Exact Matches</th>
<td>
<a href="http://purl.org/au-research/vocabulary/anzsrc-for/2008/0401">es:0401</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity concept" id="basinanalysis">
<h3>Basin Analysis<sup title="Concept" class="sup-cp">cp</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/earth-science-data-category/basin-analysis</code></td>
</tr>
<tr>
<th>Definition</th>
<td>
a geologic method by which the history of a sedimentary basin is revealed, by analyzing the sediment fill itself. Aspects of the sediment, namely its composition, primary structures, and internal architecture, can be synthesized into a history of the basin fill. Source:Wikipedia<br/>
</td>
</tr>
<tr>
<th>Broader Concepts</th>
<td>
<a href="#geology">Geology</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
<tr>
<th>Exact Matches</th>
<td>
<a href="http://purl.org/au-research/vocabulary/anzsrc-for/2008/040301">es:040301</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity concept" id="biologicalsciences">
<h3>Biological Sciences<sup title="Concept" class="sup-cp">cp</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/earth-science-data-category/biological-sciences</code></td>
</tr>
<tr>
<th>Definition</th>
<td>
The natural science that studies life and living organisms, including their physical structure, chemical processes, molecular interactions, physiological mechanisms, development and evolution.<br/>
</td>
</tr>
<tr>
<th>Narrower Concepts</th>
<td>
<a href="#ecology">Ecology</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
<tr>
<th>Exact Matches</th>
<td>
<a href="http://purl.org/au-research/vocabulary/anzsrc-for/2008/06">es:06</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity concept" id="corespectral">
<h3>Core Spectral<sup title="Concept" class="sup-cp">cp</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/earth-science-data-category/core-spectral</code></td>
</tr>
<tr>
<th>Definition</th>
<td>
Spectral imaging (typically hyperspectral) of rock samples such as core.<br/>
</td>
</tr>
<tr>
<th>Broader Concepts</th>
<td>
<a href="#spectralimaging">Spectral Imaging</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity concept" id="demography">
<h3>Demography<sup title="Concept" class="sup-cp">cp</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/earth-science-data-category/demography</code></td>
</tr>
<tr>
<th>Definition</th>
<td>
The statistical study of populations, especially human beings.<br/>
</td>
</tr>
<tr>
<th>Exact Matches</th>
<td>
<a href="http://purl.org/au-research/vocabulary/anzsrc-for/2008/1603">es:1603</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity concept" id="ecology">
<h3>Ecology<sup title="Concept" class="sup-cp">cp</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/earth-science-data-category/ecology</code></td>
</tr>
<tr>
<th>Definition</th>
<td>
A branch of biology concerning interactions among organisms and their biophysical environment, which includes both biotic and abiotic components.<br/>
</td>
</tr>
<tr>
<th>Broader Concepts</th>
<td>
<a href="#biologicalsciences">Biological Sciences</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
<tr>
<th>Exact Matches</th>
<td>
<a href="http://purl.org/au-research/vocabulary/anzsrc-for/2008/0602">es:0602</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity concept" id="electricalandelectromagneticmethodsingeophysics">
<h3>Electrical and Electromagnetic Methods in Geophysics<sup title="Concept" class="sup-cp">cp</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/earth-science-data-category/electrical-and-electromagnetic-methods-in-geophysics</code></td>
</tr>
<tr>
<th>Definition</th>
<td>
Geophysical methods based on electrical and electromagnetic phenomena that respond to the electrical properties of the subsurface. Source: Cambridge.org<br/>
</td>
</tr>
<tr>
<th>Broader Concepts</th>
<td>
<a href="#geophysics">Geophysics</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
<tr>
<th>Narrower Concepts</th>
<td>
<a href="#electricalgeophysics">Electrical Geophysics</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
<tr>
<th>Exact Matches</th>
<td>
<a href="http://purl.org/au-research/vocabulary/anzsrc-for/2008/040401">es:040401</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity concept" id="electricalgeophysics">
<h3>Electrical Geophysics<sup title="Concept" class="sup-cp">cp</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/earth-science-data-category/electrical-geophysics</code></td>
</tr>
<tr>
<th>Definition</th>
<td>
There are a variety of different electrical methods that used to image different electrical properties of the subsurface. The Resistivity technique is used to determine the resistivity of subsurface materials, the Induced Polarization (IP) technique is used to measure the decay of voltage in the ground, and the Self Potential (SP) technique looks for natural voltage sources underground. Source: Dept. Energy and Mining, Gov. of S.A.<br/>
</td>
</tr>
<tr>
<th>Broader Concepts</th>
<td>
<a href="#electricalandelectromagneticmethodsingeophysics">Electrical and Electromagnetic Methods in Geophysics</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity concept" id="engineering">
<h3>Engineering<sup title="Concept" class="sup-cp">cp</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/earth-science-data-category/engineering</code></td>
</tr>
<tr>
<th>Definition</th>
<td>
The use of scientific principles to design and build machines, structures, and other items, including bridges, tunnels, roads, vehicles, and buildings.<br/>
</td>
</tr>
<tr>
<th>Narrower Concepts</th>
<td>
<a href="#geomechanicsandresourcesgeotechnicalengineering">Geomechanics and Resources Geotechnical Engineering</a><sup class="sup-cp" title="concept">cp</sup><br/>
<a href="#environmentalengineering">Environmental Engineering</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
<tr>
<th>Exact Matches</th>
<td>
<a href="http://purl.org/au-research/vocabulary/anzsrc-for/2008/09">es:09</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity concept" id="environmentalengineering">
<h3>Environmental Engineering<sup title="Concept" class="sup-cp">cp</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/earth-science-data-category/environmental-engineering</code></td>
</tr>
<tr>
<th>Definition</th>
<td>
A professional engineering discipline that takes from broad scientific topics like chemistry, biology, ecology, geology, hydraulics, hydrology, microbiology, and mathematics to create solutions that will protect and also improve the health of living organisms and improve the quality of the environment. Source:Wikipedia<br/>
</td>
</tr>
<tr>
<th>Broader Concepts</th>
<td>
<a href="#engineering">Engineering</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
<tr>
<th>Exact Matches</th>
<td>
<a href="http://purl.org/au-research/vocabulary/anzsrc-for/2008/0907">es:0907</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity concept" id="environmentalsciences">
<h3>Environmental Sciences<sup title="Concept" class="sup-cp">cp</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/earth-science-data-category/environmental-sciences</code></td>
</tr>
<tr>
<th>Definition</th>
<td>
an interdisciplinary academic field that integrates physical, biological and information sciences to the study of the environment, and the solution of environmental problems.<br/>
</td>
</tr>
<tr>
<th>Exact Matches</th>
<td>
<a href="http://purl.org/au-research/vocabulary/anzsrc-for/2008/05">es:05</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity concept" id="extractgeochemistry">
<h3>Extract Geochemistry<sup title="Concept" class="sup-cp">cp</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/earth-science-data-category/extract-geochemistry</code></td>
</tr>
<tr>
<th>Definition</th>
<td>
Analysis of the chemical and physical properties of products extracted from rocks in the subsurface.<br/>
</td>
</tr>
<tr>
<th>Broader Concepts</th>
<td>
<a href="#geochemistry">Geochemistry</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity concept" id="extraterrestrialgeology">
<h3>Extraterrestrial Geology<sup title="Concept" class="sup-cp">cp</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/earth-science-data-category/extraterrestrial-geology</code></td>
</tr>
<tr>
<th>Definition</th>
<td>
A planetary science discipline concerned with the geology of the celestial bodies such as the planets and their moons, asteroids, comets, and meteorites. Source: Wikipedia<br/>
</td>
</tr>
<tr>
<th>Broader Concepts</th>
<td>
<a href="#geology">Geology</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
<tr>
<th>Exact Matches</th>
<td>
<a href="http://purl.org/au-research/vocabulary/anzsrc-for/2008/040302">es:040302</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity concept" id="geochemistry">
<h3>Geochemistry<sup title="Concept" class="sup-cp">cp</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/earth-science-data-category/geochemistry</code></td>
</tr>
<tr>
<th>Definition</th>
<td>
The study of the chemistry of the Earth and within solid bodies of the solar system, including the distribution, circulation and abundance of elements (and their ions and isotopes), molecules, minerals, rocks and fluids. Source Schulmberger Oilfield Glossary<br/>
</td>
</tr>
<tr>
<th>Narrower Concepts</th>
<td>
<a href="#organicgeochemistry">Organic Geochemistry</a><sup class="sup-cp" title="concept">cp</sup><br/>
<a href="#inorganicgeochemistry">Inorganic Geochemistry</a><sup class="sup-cp" title="concept">cp</sup><br/>
<a href="#extractgeochemistry">Extract Geochemistry</a><sup class="sup-cp" title="concept">cp</sup><br/>
<a href="#geochemistrynotelsewhereclassified">Geochemistry Not Elsewhere Classified</a><sup class="sup-cp" title="concept">cp</sup><br/>
<a href="#isotopegeochemistry">Isotope Geochemistry</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
<tr>
<th>Exact Matches</th>
<td>
<a href="http://purl.org/au-research/vocabulary/anzsrc-for/2008/0402">es:0402</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity concept" id="geochemistrynotelsewhereclassified">
<h3>Geochemistry Not Elsewhere Classified<sup title="Concept" class="sup-cp">cp</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/earth-science-data-category/geochemistry-not-elsewhere-classified</code></td>
</tr>
<tr>
<th>Definition</th>
<td>
Geochemical data and information not otherwise described by other sub-categories of geochemistry.<br/>
</td>
</tr>
<tr>
<th>Broader Concepts</th>
<td>
<a href="#geochemistry">Geochemistry</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
<tr>
<th>Exact Matches</th>
<td>
<a href="http://purl.org/au-research/vocabulary/anzsrc-for/2008/040299">es:040299</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity concept" id="geochronology">
<h3>Geochronology<sup title="Concept" class="sup-cp">cp</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/earth-science-data-category/geochronology</code></td>
</tr>
<tr>
<th>Definition</th>
<td>
The study of the relative or absolute age of rocks, minerals and fossils. Absolute age is the measurement of age in years, but 'absolute' ages typically have some amount of error and are inexact. Relative age, in contrast, is the approximate age of rocks, fossils or minerals made by determining the age of the material relative to other surrounding material. Source: Schlumberger Oilfield Glossary<br/>
</td>
</tr>
<tr>
<th>Broader Concepts</th>
<td>
<a href="#geology">Geology</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
<tr>
<th>Exact Matches</th>
<td>
<a href="http://purl.org/au-research/vocabulary/anzsrc-for/2008/040303">es:040303</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity concept" id="geodynamics">
<h3>Geodynamics<sup title="Concept" class="sup-cp">cp</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/earth-science-data-category/geodynamics</code></td>
</tr>
<tr>
<th>Definition</th>
<td>
A subfield of geophysics dealing with dynamics of the Earth. It applies physics, chemistry and mathematics to the understanding of how mantle convection leads to plate tectonics and geologic phenomena such as seafloor spreading, mountain building, volcanoes, earthquakes, faulting and so on. It also attempts to probe the internal activity by measuring magnetic fields, gravity, and seismic waves, as well as the mineralogy of rocks and their isotopic composition. Source: Wikipedia<br/>
</td>
</tr>
<tr>
<th>Broader Concepts</th>
<td>
<a href="#geophysics">Geophysics</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
<tr>
<th>Exact Matches</th>
<td>
<a href="http://purl.org/au-research/vocabulary/anzsrc-for/2008/040402">es:040402</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity concept" id="geology">
<h3>Geology<sup title="Concept" class="sup-cp">cp</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/earth-science-data-category/geology</code></td>
</tr>
<tr>
<th>Definition</th>
<td>
An earth science concerned with the solid Earth, the rocks of which it is composed, and the processes by which they change over time. Geology can also include the study of the solid features of any terrestrial planet or natural satellite such as Mars or the Moon. Modern geology significantly overlaps all other earth sciences, including hydrology and the atmospheric sciences, and so is treated as one major aspect of integrated earth system science and planetary science. Source: Wikipedia<br/>
</td>
</tr>
<tr>
<th>Narrower Concepts</th>
<td>
<a href="#geomechanics">Geomechanics</a><sup class="sup-cp" title="concept">cp</sup><br/>
<a href="#extraterrestrialgeology">Extraterrestrial Geology</a><sup class="sup-cp" title="concept">cp</sup><br/>
<a href="#stratigraphy">Stratigraphy</a><sup class="sup-cp" title="concept">cp</sup><br/>
<a href="#marinegeoscience">Marine Geoscience</a><sup class="sup-cp" title="concept">cp</sup><br/>
<a href="#structuralgeology">Structural Geology</a><sup class="sup-cp" title="concept">cp</sup><br/>
<a href="#mineralogyandcrystallography">Mineralogy and Crystallography</a><sup class="sup-cp" title="concept">cp</sup><br/>
<a href="#petrology">Petrology</a><sup class="sup-cp" title="concept">cp</sup><br/>
<a href="#geochronology">Geochronology</a><sup class="sup-cp" title="concept">cp</sup><br/>
<a href="#volcanology">Volcanology</a><sup class="sup-cp" title="concept">cp</sup><br/>
<a href="#palaeontology">Palaeontology</a><sup class="sup-cp" title="concept">cp</sup><br/>
<a href="#sedimentology">Sedimentology</a><sup class="sup-cp" title="concept">cp</sup><br/>
<a href="#tectonics">Tectonics</a><sup class="sup-cp" title="concept">cp</sup><br/>
<a href="#petroleumandcoalgeology">Petroleum and Coal Geology</a><sup class="sup-cp" title="concept">cp</sup><br/>
<a href="#resourcegeology">Resource Geology</a><sup class="sup-cp" title="concept">cp</sup><br/>
<a href="#basinanalysis">Basin Analysis</a><sup class="sup-cp" title="concept">cp</sup><br/>
<a href="#geologynotelsewhereclassified">Geology Not Elsewhere Classified</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
<tr>
<th>Exact Matches</th>
<td>
<a href="http://purl.org/au-research/vocabulary/anzsrc-for/2008/0403">es:0403</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity concept" id="geologynotelsewhereclassified">
<h3>Geology Not Elsewhere Classified<sup title="Concept" class="sup-cp">cp</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/earth-science-data-category/geology-not-elsewhere-classified</code></td>
</tr>
<tr>
<th>Definition</th>
<td>
Geological data and information not otherwise described by other sub-categories of geochemistry.<br/>
</td>
</tr>
<tr>
<th>Broader Concepts</th>
<td>
<a href="#geology">Geology</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
<tr>
<th>Exact Matches</th>
<td>
<a href="http://purl.org/au-research/vocabulary/anzsrc-for/2008/040399">es:040399</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity concept" id="geomechanics">
<h3>Geomechanics<sup title="Concept" class="sup-cp">cp</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/earth-science-data-category/geomechanics</code></td>
</tr>
<tr>
<th>Definition</th>
<td>
The geologic specialty that deals with understanding how rocks, stresses, pressures, and temperatures interact. Source: Schlumberger Oilfield Glossary<br/>
</td>
</tr>
<tr>
<th>Broader Concepts</th>
<td>
<a href="#geology">Geology</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity concept" id="geomechanicsandresourcesgeotechnicalengineering">
<h3>Geomechanics and Resources Geotechnical Engineering<sup title="Concept" class="sup-cp">cp</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/earth-science-data-category/geomechanics-and-resources-geotechnical-engineering</code></td>
</tr>
<tr>
<th>Definition</th>
<td>
The application of scientific methods and engineering principles to the acquisition, interpretation, and use of knowledge of materials of the Earth's crust and earth materials for the solution of engineering problems and the design of engineering works. Source:Wikipedia<br/>
</td>
</tr>
<tr>
<th>Broader Concepts</th>
<td>
<a href="#engineering">Engineering</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
<tr>
<th>Exact Matches</th>
<td>
<a href="http://purl.org/au-research/vocabulary/anzsrc-for/2008/091402">es:091402</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity concept" id="geomorphologyandregolithandlandscapeevolution">
<h3>Geomorphology And Regolith And Landscape Evolution<sup title="Concept" class="sup-cp">cp</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/earth-science-data-category/geomorphology-and-regolith-and-landscape-evolution</code></td>
</tr>
<tr>
<th>Definition</th>
<td>
The scientific study of the origin and evolution of topographic and bathymetric features created by physical, chemical or biological processes operating at or near the Earth's surface. Source: Wikipedia<br/>
</td>
</tr>
<tr>
<th>Broader Concepts</th>
<td>
<a href="#physicalgeography">Physical Geography</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
<tr>
<th>Exact Matches</th>
<td>
<a href="http://purl.org/au-research/vocabulary/anzsrc-for/2008/040601">es:040601</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity concept" id="geophysicalfluiddynamics">
<h3>Geophysical Fluid Dynamics<sup title="Concept" class="sup-cp">cp</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/earth-science-data-category/geophysical-fluid-dynamics</code></td>
</tr>
<tr>
<th>Definition</th>
<td>
The fluid dynamics of naturally occurring flows, such as lava flows, oceans, and planetary atmospheres, on Earth and other planets. Souce: Wikipedia<br/>
</td>
</tr>
<tr>
<th>Broader Concepts</th>
<td>
<a href="#geophysics">Geophysics</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
<tr>
<th>Exact Matches</th>
<td>
<a href="http://purl.org/au-research/vocabulary/anzsrc-for/2008/040403">es:040403</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity concept" id="geophysics">
<h3>Geophysics<sup title="Concept" class="sup-cp">cp</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/earth-science-data-category/geophysics</code></td>
</tr>
<tr>
<th>Definition</th>
<td>
The study of the physics of the Earth, especially its electrical, gravitational and magnetic fields and propagation of elastic (seismic) waves within it. Source: Schlumberger Oilfield Glossary<br/>
</td>
</tr>
<tr>
<th>Narrower Concepts</th>
<td>
<a href="#geophysicalfluiddynamics">Geophysical Fluid Dynamics</a><sup class="sup-cp" title="concept">cp</sup><br/>
<a href="#spectralimaging">Spectral Imaging</a><sup class="sup-cp" title="concept">cp</sup><br/>
<a href="#geodynamics">Geodynamics</a><sup class="sup-cp" title="concept">cp</sup><br/>
<a href="#gravity">Gravity</a><sup class="sup-cp" title="concept">cp</sup><br/>
<a href="#geophysicsnotelsewhereclassified">Geophysics Not Elsewhere Classified</a><sup class="sup-cp" title="concept">cp</sup><br/>
<a href="#petrophysics">Petrophysics</a><sup class="sup-cp" title="concept">cp</sup><br/>
<a href="#seismologyandseismicexploration">Seismology and Seismic Exploration</a><sup class="sup-cp" title="concept">cp</sup><br/>
<a href="#magnetics">Magnetics</a><sup class="sup-cp" title="concept">cp</sup><br/>
<a href="#geothermicsandradiometrics">Geothermics and Radiometrics</a><sup class="sup-cp" title="concept">cp</sup><br/>
<a href="#electricalandelectromagneticmethodsingeophysics">Electrical and Electromagnetic Methods in Geophysics</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
<tr>
<th>Exact Matches</th>
<td>
<a href="http://purl.org/au-research/vocabulary/anzsrc-for/2008/0404">es:0404</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity concept" id="geophysicsnotelsewhereclassified">
<h3>Geophysics Not Elsewhere Classified<sup title="Concept" class="sup-cp">cp</sup></h3>
<table>
<tr>
<th>IRI</th>
<td><code>http://linked.data.gov.au/def/earth-science-data-category/geophysics-not-elsewhere-classified</code></td>
</tr>
<tr>
<th>Definition</th>
<td>
Geophysical data and information not otherwise described by other sub-categories of geochemistry.<br/>
</td>
</tr>
<tr>
<th>Broader Concepts</th>
<td>
<a href="#geophysics">Geophysics</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
<tr>
<th>Exact Matches</th>
<td>
<a href="http://purl.org/au-research/vocabulary/anzsrc-for/2008/040499">es:040499</a><sup class="sup-cp" title="concept">cp</sup><br/>
</td>
</tr>
</table>
</div>
<div class="entity concept" id="geothermicsandradiometrics">
<h3>Geothermics and Radiometrics<sup title="Concept" class="sup-cp">cp</sup></h3>