-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1590 lines (1586 loc) · 154 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>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>be10_denude_new.public</title>
<!-- Tell the browser to be responsive to screen width -->
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<link rel="icon" type="image/png" sizes="16x16" href="favicon.png">
<!-- Bootstrap 3.3.5 -->
<link rel="stylesheet" href="bower/admin-lte/bootstrap/css/bootstrap.min.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="bower/font-awesome/css/font-awesome.min.css">
<!-- Ionicons -->
<link rel="stylesheet" href="bower/ionicons/css/ionicons.min.css">
<!-- DataTables -->
<link rel="stylesheet" href="bower/datatables.net-bs/css/dataTables.bootstrap.min.css">
<link rel="stylesheet" href="bower/datatables.net-buttons-bs/css/buttons.bootstrap.min.css">
<!-- Code Mirror -->
<link rel="stylesheet" href="bower/codemirror/codemirror.css">
<!-- Fonts -->
<link href='fonts/indieflower/indie-flower.css' rel='stylesheet' type='text/css'>
<link href='fonts/source-sans-pro/source-sans-pro.css' rel='stylesheet' type='text/css'>
<!-- Theme style -->
<link rel="stylesheet" href="bower/admin-lte/dist/css/AdminLTE.min.css">
<!-- Salvattore -->
<link rel="stylesheet" href="bower/salvattore/salvattore.css">
<!-- AdminLTE Skins. Choose a skin from the css/skins
folder instead of downloading all of them to reduce the load. -->
<link rel="stylesheet" href="bower/admin-lte/dist/css/skins/_all-skins.min.css">
<!-- SchemaSpy -->
<link rel="stylesheet" href="schemaSpy.css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="bower/html5shiv/html5shiv.min.js"></script>
<script src="bower/respond/respond.min.js"></script>
<![endif]-->
</head>
<!-- ADD THE CLASS layout-top-nav TO REMOVE THE SIDEBAR. -->
<body class="hold-transition skin-blue layout-top-nav">
<div class="wrapper">
<header class="main-header">
<nav class="navbar navbar-static-top">
<div class="container">
<div class="navbar-header">
<a href="index.html" class="navbar-brand"><b>be10_denude_new</b></a><span class="navbar-brand" style="padding-left: 0">.public</span>
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse"><i class="fa fa-bars"></i></button>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse pull-left" id="navbar-collapse">
<ul class="nav navbar-nav">
<li><a href="index.html">Tables <span class="sr-only">(current)</span></a></li>
<li><a href="columns.html" title="All of the columns in the schema">Columns</a></li>
<li><a href="constraints.html" title="Useful for diagnosing error messages that just give constraint name or number">Constraints</a></li>
<li><a href="relationships.html" title="Diagram of table relationships">Relationships</a></li>
<li><a href="orphans.html" title="View of tables with neither parents nor children">Orphan Tables</a></li>
<li><a href="anomalies.html" title="Things that might not be quite right">Anomalies</a></li>
<li><a href="routines.html" title="Procedures and functions">Routines</a></li>
</ul>
</div>
<!-- /.navbar-collapse -->
<!-- Navbar Right Menu -->
</div>
<!-- /.container-fluid -->
</nav>
</header>
<!-- Main content -->
<!-- Full Width Column -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>Tables</h1><br />
<div class="row">
<div class="col-md-12">
<div class="callout callout-info">
<h4>SchemaSpy Analysis of be10_denude_new.public</h4>
<p>Generated on Thu Aug 22 13:21 CEST 2024</p>
</div>
</div>
</div>
<a href="be10_denude_new.public.xml" title="XML Representation">XML Representation</a><br />
<a href="insertionOrder.txt" title="Useful for loading data into a database">Insertion Order</a>
<a href="deletionOrder.txt" title="Useful for purging data from a database">Deletion Order</a>
</section>
<!-- Main content -->
<section class="content">
<div class="row">
<div class="col-md-2 col-sm-4 col-xs-12">
<div class="info-box">
<span class="info-box-icon bg-aqua"><i class="fa fa-table"></i></span>
<div class="info-box-content">
<span class="info-box-text">TABLES</span>
<span class="info-box-number">145</span>
</div>
<!-- /.info-box-content -->
</div>
<!-- /.info-box -->
</div>
<!-- /.col -->
<div class="col-md-2 col-sm-4 col-xs-12">
<div class="info-box">
<span class="info-box-icon bg-teal"><i class="fa fa-table"></i></span>
<div class="info-box-content">
<span class="info-box-text">VIEWS</span>
<span class="info-box-number">2</span>
</div>
<!-- /.info-box-content -->
</div>
<!-- /.info-box -->
</div>
<!-- /.col -->
<div class="col-md-2 col-sm-4 col-xs-12">
<div class="info-box">
<span class="info-box-icon bg-green"><span class="glyphicon glyphicon-list-alt" aria-hidden="true"></span></span>
<div class="info-box-content">
<span class="info-box-text">COLUMNS</span>
<span class="info-box-number">3452</span>
</div>
<!-- /.info-box-content -->
</div>
<!-- /.info-box -->
</div>
<!-- /.col -->
<div class="col-md-2 col-sm-4 col-xs-12">
<div class="info-box">
<span class="info-box-icon bg-yellow"><i class="ion ion-key"></i></span>
<div class="info-box-content">
<span class="info-box-text">Constraints</span>
<span class="info-box-number">259</span>
</div>
<!-- /.info-box-content -->
</div>
<!-- /.info-box -->
</div>
<!-- /.col -->
<div class="col-md-2 col-sm-4 col-xs-12">
<div class="info-box">
<span class="info-box-icon bg-red-active"><i class="fa fa-question" aria-hidden="true"></i></span>
<div class="info-box-content">
<span class="info-box-text">Anomalies</span>
<span class="info-box-number">106</span>
</div>
<!-- /.info-box-content -->
</div>
<!-- /.info-box -->
</div>
<!-- /.col -->
<div class="col-md-2 col-sm-4 col-xs-12">
<div class="info-box">
<span class="info-box-icon bg-navy"><i class="fa fa-file-code-o" aria-hidden="true"></i></span>
<div class="info-box-content">
<span class="info-box-text">Routines</span>
<span class="info-box-number">0</span>
</div>
<!-- /.info-box-content -->
</div>
<!-- /.info-box -->
</div>
<!-- /.col -->
</div>
<div class="box box-primary">
<div class="box-header with-border">
<h3 class="box-title">Database Properties</h3>
<span class="label label-primary pull-right"><i class="fa fa-cog fa-2x"></i></span>
</div><!-- /.box-header -->
<div class="box-body">
<p>Database Type: PostgreSQL - 11.22</p>
</div><!-- /.box-body -->
</div>
<div class="box box-primary">
<div class="box-header with-border">
<h3 class="box-title">Schema public</h3>
<span class="label label-primary pull-right"><i class="fa fa-cog fa-2x"></i></span>
</div><!-- /.box-header -->
<div class="box-body">
<p> <p>standard public schema</p> </p>
</div><!-- /.box-body -->
</div>
<div class="box box-primary">
<div class="box-header with-border">
<h3 class="box-title">Tables</h3>
<span class="label label-primary pull-right"><i class="fa fa-database fa-2x"></i></span>
</div><!-- /.box-header -->
<div class="box-body">
<table
id="database_objects"
class="table table-bordered table-striped dataTable"
role="grid"
data-paging="true"
data-page-length="50"
data-length-change="false">
<thead>
<tr>
<th valign="bottom">Table / View</th>
<th align="right" valign="bottom">Children</th>
<th align="right" valign="bottom">Parents</th>
<th align="right" valign="bottom">Columns</th>
<th align="right" valign="bottom">Rows</th>
<th align="right" valign="bottom">Type</th>
<th class="toggle">Comments</th>
</tr>
</thead>
<tbody>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/global_datasetpublicationID.html">global_datasetpublicationID</a></td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">2</td>
<td class="detail" align="right">7</td>
<td class="detail" align="right">403</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is Neotoma-derived lookup table for compilations involving datasets, e.g. <strong>IPPD</strong>. This table stores <em>dataset publications</em>. NOTE – DATASETID and REFDBID together form a combined primary key.</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/arch_c14_polygons_EPSG3857.html">arch_c14_polygons_EPSG3857</a></td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">6</td>
<td class="detail" align="right">9501</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is Sahul Archaeology (SahulArch) spatial features table (polygons of the <strong>SahulArch/ Radiocarbon collection</strong>, EPSG:900913)</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/crn_inprep_outlets.html">crn_inprep_outlets</a></td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">5</td>
<td class="detail" align="right">157</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is flat <strong>GeoServer input</strong> table. Table creation date: 2024-08-22 11:01:25 UTC</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/sahularch_tl.html">sahularch_tl</a></td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">2</td>
<td class="detail" align="right">143</td>
<td class="detail" align="right">240</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is flat <strong>GeoServer input</strong> table. Refer to <a href="http://dx.doi.org/10.25900/xq40-t003">http://dx.doi.org/10.25900/xq40-t003</a>. Table creation date: 2024-08-22 11:02:11 UTC</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/cabah_datasourceID.html">cabah_datasourceID</a></td>
<td class="detail" align="right">6</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">6</td>
<td class="detail" align="right">11</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is lookup table for Sahul-related compilations. The cabah_datasourceID table stores the way that <em>data / information have been gathered</em> for database integration.</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/sed_geotypeID.html">sed_geotypeID</a></td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">4</td>
<td class="detail" align="right">16</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is across-Sahul Sedimentary Archives (<strong>SahulSed</strong>) lookup table for <em>geomorphological type of feature sampled</em> (= GEOTYPE)</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/publications.html">publications</a></td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">6</td>
<td class="detail" align="right">6091</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is flat <strong>GeoServer input</strong> table (bbox). Table creation date: 2024-08-12 12:53:07 UTC</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/cabah_taxaID.html">cabah_taxaID</a></td>
<td class="detail" align="right">3</td>
<td class="detail" align="right">3</td>
<td class="detail" align="right">14</td>
<td class="detail" align="right">47144</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is Neotoma-derived taxa table for compilations dealing with taxa, e.g. <strong>IPPD</strong>. This table, according to Neotoma db (<a href="https://neotoma-manual.readthedocs.io/en/latest/tables_taxa.html#taxa">https://neotoma-manual.readthedocs.io/en/latest/tables_taxa.html#taxa</a>), stores <em>taxa</em> <a href="./null">…</a> IMPORTANT NOTE: Primary key (and, with the exception of “TAXAGRPID”, the other IDs too) have been migrated unaltered from Neotoma. Therefore, database relations will only work (and be updatable from the Neotoma source) if these IDs stay untouched.</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/c13_valID.html">c13_valID</a></td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">4</td>
<td class="detail" align="right">4</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is SahulArch/ Radiocarbon collection, i.e., <strong>SahulArch/ 14C</strong> lookup table for info whether <em>delta13C was measured or assumed</em> (= C13_VAL)</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/global_SiteMaster.html">global_SiteMaster</a></td>
<td class="detail" align="right">21</td>
<td class="detail" align="right">8</td>
<td class="detail" align="right">32</td>
<td class="detail" align="right">25221</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is the global master table that stores <em>site-related information for all compilations</em>. In OCTOPUS data model hierarchy <code>global_SiteMaster</code> is situated between the collection-specific sample tables (subordinate) and the <code>global_MetaSite</code> table (superordinate); (= SITEID).</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/crn_v3_basins_EPSG3857.html">crn_v3_basins_EPSG3857</a></td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">3</td>
<td class="detail" align="right">10</td>
<td class="detail" align="right">6091</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is <strong>CRN denudation</strong> <em>spatial features table</em> (polygons, EPSG:3857)</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/osl-tl_ed_procID.html">osl-tl_ed_procID</a></td>
<td class="detail" align="right">4</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">5</td>
<td class="detail" align="right">7</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is Luminescence (<strong>SahulSed, SahulArch/ OSL collection, SahulArch/ TL collection</strong>) lookup table for the <em>reported procedure used to determine sample equivalent dose for OSL and TL methods</em> (= ED_PROC)</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/arch_c14_DataCore.html">arch_c14_DataCore</a></td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">24</td>
<td class="detail" align="right">67</td>
<td class="detail" align="right">9501</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is Sahul Archaeology (SahulArch) data table. This table stores <em>observations</em> (= smallest data model entity) for the <strong>SahulArch/ Radiocarbon collection</strong> and is subordinate to the <code>arch_Sample</code> table.</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/fos_Sample.html">fos_Sample</a></td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">8</td>
<td class="detail" align="right">2235</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is <strong>FosSahul</strong> sample table. This table stores FosSahul samples and is, therefore, situated between <code>fos_DataCore</code> table (subordinate) and <code>global_SiteMaster</code> table (superordinate).</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/crn_studynote.html">crn_studynote</a></td>
<td class="detail" align="right">9</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">5</td>
<td class="detail" align="right">301</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/ippd_DataCore.html">ippd_DataCore</a></td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">2</td>
<td class="detail" align="right">6</td>
<td class="detail" align="right">384434</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is an IPPD-specific Neotoma table where each occurrence of a Variable in a sample comprises a record in the Data table. <em>Data</em> is the primary table in Neotoma’s data model. (<a href="https://neotoma-manual.readthedocs.io/en/latest/tables_samples.html#data">https://neotoma-manual.readthedocs.io/en/latest/tables_samples.html#data</a>)</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/cabah_depositID.html">cabah_depositID</a></td>
<td class="detail" align="right">3</td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">6</td>
<td class="detail" align="right">119</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is lookup table for Sahul-related compilations. The cabah_depositID table stores the <em>type of deposit</em> sampled.</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/sed_geommodID.html">sed_geommodID</a></td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">4</td>
<td class="detail" align="right">8</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is Sahul Sedimentary Archives (<strong>SahulSed/ Aeolian</strong>) lookup table for <em>geomorphic modifier of feature sampled</em> (= GEOMMOD)</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/ippd_Sample.html">ippd_Sample</a></td>
<td class="detail" align="right">3</td>
<td class="detail" align="right">4</td>
<td class="detail" align="right">13</td>
<td class="detail" align="right">18370</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is an IPPD-specific Neotoma table that stores samples. In Neotoma’s data model, <em>Samples</em> belong to <em>Analysis Units</em>, which belong to <em>Collection Units</em>, which belong to <em>Sites</em>. However, <em>Samples</em> also belong to a <em>Dataset</em>, and the Dataset determines the type of sample. Thus, there could be two different samples from the same Analysis Unit, one belonging to a pollen dataset, the other to a plant macrofossil dataset. (<a href="https://neotoma-manual.readthedocs.io/en/latest/tables_samples.html#samples">https://neotoma-manual.readthedocs.io/en/latest/tables_samples.html#samples</a>)</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/cabah_catchmentsizeID.html">cabah_catchmentsizeID</a></td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">5</td>
<td class="detail" align="right">4</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is lookup table for charcoal-related compilations, i.e., <strong>SahulCHAR</strong>. This table, according to the Global Paleofire Database (<a href="https://www.paleofire.org/">https://www.paleofire.org/</a>) template, stores arbitrary <em>catchment area classes</em> (catchment = area contributing to a certain basin).</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/arch_Sample.html">arch_Sample</a></td>
<td class="detail" align="right">3</td>
<td class="detail" align="right">2</td>
<td class="detail" align="right">13</td>
<td class="detail" align="right">10412</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is Sahul Archaeology (<strong>SahulArch</strong>) sample table. This table stores SahulArch samples and is, therefore, situated between the collection-specific DataCore tables (subordinate) and the <code>global_SiteMaster</code> table (superordinate).</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/ippd_samplekeywords.html">ippd_samplekeywords</a></td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">2</td>
<td class="detail" align="right">4</td>
<td class="detail" align="right">68</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is an IPPD-specific Neotoma table that links keywords to samples. (For example, it identifies modern pollen surface samples.)</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/crn_int_outlets.html">crn_int_outlets</a></td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">5</td>
<td class="detail" align="right">5376</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is flat <strong>GeoServer input</strong> table. Refer to <a href="http://dx.doi.org/10.25900/057R-TM53">http://dx.doi.org/10.25900/057R-TM53</a>. Table creation date: 2024-08-22 11:01:35 UTC</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/neo_chronologies.html">neo_chronologies</a></td>
<td class="detail" align="right">2</td>
<td class="detail" align="right">4</td>
<td class="detail" align="right">15</td>
<td class="detail" align="right">31641</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is a Neotoma table for compilations dealing with chronologies, e.g. <strong>IPPD</strong>. This table, according to Neotoma db (<a href="https://neotoma-manual.readthedocs.io/en/latest/tables_chron.html#chronologies">https://neotoma-manual.readthedocs.io/en/latest/tables_chron.html#chronologies</a>), stores <em>chronology data</em>. <a href="./null">…</a> <em>A Chronology refers to an explicit chronology assigned to a Collection Unit. A Chronology has Chronology Controls, the actual age-depth control points, which are stored in the ChronControls table. A Chronology is also based on an Age Model, which may be a numerical method that fits a curve to a set of age-depth control points or may simply be individually dated Analysis Units.</em> IMPORTANT NOTE: The primary key values have been migrated unaltered from Neotoma. Therefore, database relations will only work (and be updatable from the Neotoma source) if these ID stays untouched.</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/crn_int_basins.html">crn_int_basins</a></td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">3</td>
<td class="detail" align="right">77</td>
<td class="detail" align="right">5376</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is flat <strong>GeoServer input</strong> table. Refer to <a href="http://dx.doi.org/10.25900/057R-TM53">http://dx.doi.org/10.25900/057R-TM53</a>. Table creation date: 2024-08-22 11:01:32 UTC</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/expage_Sample.html">expage_Sample</a></td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">2</td>
<td class="detail" align="right">10</td>
<td class="detail" align="right">15805</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is <strong>Expage</strong> sample table. This table stores Expage samples and is, therefore, situated between the <code>expage_DataCore</code> table (subordinate) and the <code>global_SiteMaster</code> table (superordinate).</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/sed_faciesID.html">sed_faciesID</a></td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">4</td>
<td class="detail" align="right">10</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is Sahul Sedimentary Archives (<strong>SahulSed/ Lacustrine</strong>) lookup table for <em>sedimentological facies type</em> (= FACIES)</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/fos_TaxRank6_speciesID.html">fos_TaxRank6_speciesID</a></td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">4</td>
<td class="detail" align="right">328</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is <strong>FosSahul</strong> lookup table for most updated <em>vertebrata species</em> name (= SPECIES)</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/cabah_col_mtdID.html">cabah_col_mtdID</a></td>
<td class="detail" align="right">7</td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">5</td>
<td class="detail" align="right">44</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is lookup table for Sahul-related compilations, i.e., <strong>SahulArch, FosSahul, SahulSed</strong>. This table stores the <em>sample collection method</em> (= COL_MTD).</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/sahulchar_units.html">sahulchar_units</a></td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">4</td>
<td class="detail" align="right">53</td>
<td class="detail" align="right">535</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is flat <strong>GeoServer input</strong> table. Refer to <a href="http://dx.doi.org/10.25900/Y4E9-R595">http://dx.doi.org/10.25900/Y4E9-R595</a>. Table creation date: 2024-08-22 11:02:19 UTC</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/neo_keywords.html">neo_keywords</a></td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">4</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is a Neotoma lookup table of <em>Keywords</em> referenced by the <code>SampleKeywords</code> table. The table provides a means to identify samples sharing a common attribute. For example, the keyword «modern sample» identifies modern surface samples in the database. These samples include individual surface samples, as well as core tops. Although not implemented, a «pre-European settlement» keyword would be a means to identify samples just predating European settlement. (<a href="https://neotoma-manual.readthedocs.io/en/latest/tables_samples.html#keywords">https://neotoma-manual.readthedocs.io/en/latest/tables_samples.html#keywords</a>)</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/ippd_sampleages.html">ippd_sampleages</a></td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">2</td>
<td class="detail" align="right">8</td>
<td class="detail" align="right">18794</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is an IPPD-specific Neotoma table that stores <em>sample ages</em>. In Neotoma’s data model, <em>Ages</em> are assigned to a <em>Chronology</em>. Because there may be more than one <em>Chronology</em> for a <em>Collection Unit</em>, samples may be assigned different ages for different Chronologies. A simple example is one sample age in radiocarbon years and another in calibrated radiocarbon years. The age units are an attribute of the Chronology. (<a href="https://neotoma-manual.readthedocs.io/en/latest/tables_samples.html#sampleages">https://neotoma-manual.readthedocs.io/en/latest/tables_samples.html#sampleages</a>)</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/sahulsed_aeolian_osl.html">sahulsed_aeolian_osl</a></td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">2</td>
<td class="detail" align="right">154</td>
<td class="detail" align="right">772</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is flat <strong>GeoServer input</strong> table. Refer to <a href="https://doi.org/10.25900/5jcw-tn50">https://doi.org/10.25900/5jcw-tn50</a>. Table creation date: 2024-08-22 11:02:23 UTC</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/cabah_charmethodID.html">cabah_charmethodID</a></td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">6</td>
<td class="detail" align="right">12</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is lookup table for charcoal-related compilations, i.e., <strong>SahulCHAR</strong>. This table stores the method of <em>charcoal quantification</em>.</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/expage_points_EPSG3857.html">expage_points_EPSG3857</a></td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">6</td>
<td class="detail" align="right">16009</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is <strong>Expage</strong> <em>spatial features table</em> (points, EPSG:900913)</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/crn_xxl_basins.html">crn_xxl_basins</a></td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">3</td>
<td class="detail" align="right">53</td>
<td class="detail" align="right">261</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is flat <strong>GeoServer input</strong> table. Table creation date: 2024-08-22 11:01:41 UTC</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/ippd_baseline_pollen_points_EPSG3857.html">ippd_baseline_pollen_points_EPSG3857</a></td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">5</td>
<td class="detail" align="right">155952</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is IPPD pollen (<strong>IPPD/datasets/pollen</strong>) spatial features table (points, EPSG:900913)</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/global_UnitMaster.html">global_UnitMaster</a></td>
<td class="detail" align="right">11</td>
<td class="detail" align="right">5</td>
<td class="detail" align="right">19</td>
<td class="detail" align="right">607</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is the global master table that stores <em>collection-unit related information for all compilations</em>. Collection units are defined in the <code>cabah_unittypeID</code> table. In OCTOPUS data model hierarchy <code>global_UnitMaster</code> is situated between the collection-specific sample tables (subordinate) and the <code>global_SiteMaster</code> table (superordinate); (= SITEID). <code>global_UnitMaster</code> table is exclusively used for collections with a corresponding demand, i.e., will be bypassed for any collection that does not deal with multiple samples / observations from one and the same location / site / unit (e.g. a core).</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/cabah_LabCodes.html">cabah_LabCodes</a></td>
<td class="detail" align="right">7</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">10</td>
<td class="detail" align="right">352</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is lookup table for Sahul-related compilations, i.e., <strong>SahulArch, FosSahul, SahulSed</strong>. This table stores information about the <em>lab of origin</em> for a certain observation. Labs have been identified automatically by their distinct labcode prefixes.</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/arch_tl_polygons_EPSG3857.html">arch_tl_polygons_EPSG3857</a></td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">6</td>
<td class="detail" align="right">240</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is Sahul Archaeology (SahulArch) spatial features table (polygons of the <strong>SahulArch/ TL collection</strong> , EPSG:900913)</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/fossahul_webmercator_nrand_25000.html">fossahul_webmercator_nrand_25000</a></td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">2</td>
<td class="detail" align="right">106</td>
<td class="detail" align="right">11858</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is flat <strong>GeoServer input</strong> table. Table creation date: 2024-08-22 11:01:51 UTC</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/crn_aus_basins.html">crn_aus_basins</a></td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">3</td>
<td class="detail" align="right">83</td>
<td class="detail" align="right">297</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is flat <strong>GeoServer input</strong> table. Refer to <a href="http://dx.doi.org/10.25900/5WBX-N779">http://dx.doi.org/10.25900/5WBX-N779</a>. Table creation date: 2024-08-22 11:01:11 UTC</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/global_Author.html">global_Author</a></td>
<td class="detail" align="right">8</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">12</td>
<td class="detail" align="right">1733</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is parent table for <code>global_RefCore</code> table. The latter stores reference information for <strong>all compilations</strong>. <code>global_Author</code> stores information about <em>first authors</em> and is part of OCTOPUS reference system (= OAID).</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/crn_studies_boundingbox.html">crn_studies_boundingbox</a></td>
<td class="detail" align="right">2</td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">5</td>
<td class="detail" align="right">301</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is <strong>CRN denudation</strong> <em>spatial features table</em> (polygons, EPSG:3857). Bounding boxes delimit study extents</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/sed-osl_points_EPSG3857.html">sed-osl_points_EPSG3857</a></td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">6</td>
<td class="detail" align="right">2458</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is Sahul Sedimentary Archives (<strong>SahulSed</strong>) spatial features table (points of the <strong>OSL collection</strong> , EPSG:900913)</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/neo_elementsymmetries.html">neo_elementsymmetries</a></td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">4</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is a Neotoma lookup lookup table of <em>Element symmetries</em>. This table is referenced by the <code>neo_variableelements</code> table.</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/crn_v3_outlets_EPSG3857.html">crn_v3_outlets_EPSG3857</a></td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">3</td>
<td class="detail" align="right">8</td>
<td class="detail" align="right">6091</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is <strong>CRN denudation</strong> <em>spatial features table</em> (points, EPSG:3857)</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/fos_fosmat2ID.html">fos_fosmat2ID</a></td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">5</td>
<td class="detail" align="right">47</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is <strong>FosSahul</strong> lookup table for the <em>type of dated material</em> (= FOSMAT2)</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/sed-tl_DataCore.html">sed-tl_DataCore</a></td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">20</td>
<td class="detail" align="right">88</td>
<td class="detail" align="right">966</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is Sahul Sedimentary Archives (SahulSed) data table. This table stores <em>observations</em> (= smallest data model entity) for the <strong>SahulSed/ TL collections</strong> and is subordinate to the <code>arch_Sample</code> table. Note - This table is further split into Aeolian, Fluvial, and Lacustrine sub-collections.</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/downloadlogs.html">downloadlogs</a></td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">7</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/neo_variableunits.html">neo_variableunits</a></td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">4</td>
<td class="detail" align="right">210</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is a Neotoma lookup table of <em>Variable Units</em>. This table is referenced by the <code>ippd_variables</code> table. (<a href="https://neotoma-manual.readthedocs.io/en/latest/tables_taxa.html#variableunits">https://neotoma-manual.readthedocs.io/en/latest/tables_taxa.html#variableunits</a>)</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/arch_tl_DataCore.html">arch_tl_DataCore</a></td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">20</td>
<td class="detail" align="right">88</td>
<td class="detail" align="right">240</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is Sahul Archaeology (SahulArch) data table. This table stores <em>observations</em> (= smallest data model intity) for the <strong>SahulArch/ TL collection</strong> and is subordinate to the <code>arch_Sample</code> table.</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/cabah_agetypeID.html">cabah_agetypeID</a></td>
<td class="detail" align="right">2</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">6</td>
<td class="detail" align="right">11</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is lookup table for radiocarbon-related compilations. The cabah_agetypeID table stores the <em>type of time unit</em> used for sample age specification.</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/expage.html">expage</a></td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">2</td>
<td class="detail" align="right">76</td>
<td class="detail" align="right">16009</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is flat <strong>GeoServer input</strong> table. Table creation date: 2024-08-22 11:01:48 UTC</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/arch_osl_polygons_EPSG3857.html">arch_osl_polygons_EPSG3857</a></td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">6</td>
<td class="detail" align="right">973</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is Sahul Archaeology (SahulArch) spatial features table (polygons of the <strong>SahulArch/ OSL collection</strong> , EPSG:900913)</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/sahulsed_lacustrine_tl.html">sahulsed_lacustrine_tl</a></td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">2</td>
<td class="detail" align="right">152</td>
<td class="detail" align="right">41</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is flat <strong>GeoServer input</strong> table. Refer to <a href="http://dx.doi.org/10.25900/32de-mj32">http://dx.doi.org/10.25900/32de-mj32</a>. Table creation date: 2024-08-22 11:03:12 UTC</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/expage_DataCore.html">expage_DataCore</a></td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">8</td>
<td class="detail" align="right">27</td>
<td class="detail" align="right">16009</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is <strong>Expage</strong> data table. This table stores <em>observations</em> (= smallest datamodel intity) for the Expage compilation and is subordinate to the <code>expage_Sample</code> table.</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/char_Sample.html">char_Sample</a></td>
<td class="detail" align="right">2</td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">7</td>
<td class="detail" align="right">41793</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is Sahul Charcoal / Black Carbon (<strong>SahulChar</strong>) sample table. This table stores SahulChar samples and is, therefore, situated between the collection-specific DataCore tables (subordinate) and the <code>global_UnitMaster</code> table (superordinate).</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/global_rivID.html">global_rivID</a></td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">7</td>
<td class="detail" align="right">219</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is parent table for <code>global_SiteMaster</code> table. The latter stores site related information for collection-dependent sample tables. <code>global_rivID</code> stores information about the <em>Geofabric AHGF river region membership</em> of a certain site (= AHGFL1, AHGFL2, RIVDIV).</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/crn_projepsgID.html">crn_projepsgID</a></td>
<td class="detail" align="right">5</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">4</td>
<td class="detail" align="right">121</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is <strong>CRN denudation</strong> lookup table. This table stores <em>study-specific projection information</em> (EPSG and human readable), i.e., the particular UTM projected coordinate system used for calculations.</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/sahulsed_aeolian_tl.html">sahulsed_aeolian_tl</a></td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">2</td>
<td class="detail" align="right">152</td>
<td class="detail" align="right">361</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is flat <strong>GeoServer input</strong> table. Refer to <a href="https://doi.org/10.25900/a2k9-kj43">https://doi.org/10.25900/a2k9-kj43</a>. Table creation date: 2024-08-22 11:02:26 UTC</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/sed_depconID.html">sed_depconID</a></td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">4</td>
<td class="detail" align="right">6</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is Sahul Sedimentary Archives (<strong>SahulSed/ Aeolian</strong>) lookup table for <em>deposition context of feature sampled</em> (=DEPCON)</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/crn_be_DataCore.html">crn_be_DataCore</a></td>
<td class="detail" align="right">2</td>
<td class="detail" align="right">5</td>
<td class="detail" align="right">28</td>
<td class="detail" align="right">6091</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is <strong>CRN denudation</strong> data table. This table stores <em>10Be observations</em> (= smallest data model entity) for CRN denudation and is subordinate to the <code>crn_Sample</code> table.</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/global_PubType.html">global_PubType</a></td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">4</td>
<td class="detail" align="right">16</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is parent table for <code>global_RefCore</code> table. The latter stores reference information for <strong>all compilations</strong>. <code>global_PubType</code> stores <em>publication types</em> and is part of OCTOPUS reference system (= PUBTYPEID).</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/neo_elementmaturities.html">neo_elementmaturities</a></td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">4</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is a Neotoma lookup lookup table of <em>Element maturities</em>. This table is referenced by the <code>neo_variableelements</code> table.</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/neo_variableelements.html">neo_variableelements</a></td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">4</td>
<td class="detail" align="right">8</td>
<td class="detail" align="right">983</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is a Neotoma lookup lookup table of <em>Variable Elements</em>. This table is referenced by the <code>ippd_variables</code> table. (<a href="https://neotoma-manual.readthedocs.io/en/latest/tables_taxa.html#variableelements">https://neotoma-manual.readthedocs.io/en/latest/tables_taxa.html#variableelements</a>)</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/crn_amsID.html">crn_amsID</a></td>
<td class="detail" align="right">2</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">6</td>
<td class="detail" align="right">37</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is lookup table for CRN compilations, i.e., <strong>CRN denudation and ExpAge</strong>. This table stores information about <em>Acceleration Mass Spectrometer (AMS)</em> facilities.</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/osl-tl_agemodelID.html">osl-tl_agemodelID</a></td>
<td class="detail" align="right">4</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">5</td>
<td class="detail" align="right">15</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is Luminescence (<strong>SahulSed, SahulArch/ OSL collection, SahulArch/ TL collection</strong>) lookup table for the <em>model used to combine individual equivalent dose estimates for age determination</em> (= AGEMODEL)</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/osl_typeID.html">osl_typeID</a></td>
<td class="detail" align="right">2</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">5</td>
<td class="detail" align="right">8</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is OSL table lookup (<strong>SahulSed/ OSL collections, SahulArch/ OSL collection</strong>) for the <em>published OSL type used to determine equivalent dose</em> (= OSL_TYPE)</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/neo_variablecontexts.html">neo_variablecontexts</a></td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">4</td>
<td class="detail" align="right">88</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is a Neotoma lookup lookup table of <em>Variable Contexts</em> (i.e., depositional contexts). This table is referenced by the <code>ippd_variables</code> table. (<a href="https://neotoma-manual.readthedocs.io/en/latest/tables_taxa.html#variablecontexts">https://neotoma-manual.readthedocs.io/en/latest/tables_taxa.html#variablecontexts</a>)</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/crn_inprep_basins.html">crn_inprep_basins</a></td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">2</td>
<td class="detail" align="right">43</td>
<td class="detail" align="right">157</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is flat <strong>GeoServer input</strong> table. Table creation date: 2024-08-22 11:01:22 UTC</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/sed_Sample.html">sed_Sample</a></td>
<td class="detail" align="right">2</td>
<td class="detail" align="right">9</td>
<td class="detail" align="right">20</td>
<td class="detail" align="right">3181</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is Sahul Sedimentary Archives (SahulSed) sample table. This table stores <strong>SahulSed</strong> samples and is, therefore, situated between the collection-specific DataCore tables (subordinate) and the <code>global_SiteMaster</code> table (superordinate).</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/sed_laketypeID.html">sed_laketypeID</a></td>
<td class="detail" align="right">2</td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">5</td>
<td class="detail" align="right">58</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is Sahul Sedimentary Archives (<strong>SahulSed/ Lacustrine</strong>) lookup table for <em>type of origin of the lake formation</em> (= LAKETYPE)</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/fos_mtdsID.html">fos_mtdsID</a></td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">5</td>
<td class="detail" align="right">10</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is <strong>FosSahul</strong> lookup table for the <em>method specification</em>, if applicable (= FOS_MTDSUB)</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/fos_TaxRank2_infraclaID.html">fos_TaxRank2_infraclaID</a></td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">4</td>
<td class="detail" align="right">13</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is <strong>FosSahul</strong> lookup table for most updated <em>vertebrata infraclass</em> name (= INFRACLASS)</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/sed_morphID.html">sed_morphID</a></td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">4</td>
<td class="detail" align="right">13</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is Sahul Sedimentary Archives (<strong>SahulSed/ Aeolian</strong>) lookup table for <em>morphology of the sampled feature</em> (= MORPH)</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/ippd_variables.html">ippd_variables</a></td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">4</td>
<td class="detail" align="right">7</td>
<td class="detail" align="right">2734</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is an IPPD-specific Neotoma table that lists Variables, which always consist of a <em>Taxon and Units</em> of measurement. Variables can also have <em>Elements</em>, <em>Contexts</em>, and <em>Modifications</em>. Thus, the same taxon with different measurement units (e.g. present/absent, NISP, MNI) are different Variables. (<a href="https://neotoma-manual.readthedocs.io/en/latest/tables_taxa.html#variables">https://neotoma-manual.readthedocs.io/en/latest/tables_taxa.html#variables</a>)</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/fos_DataCore.html">fos_DataCore</a></td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">19</td>
<td class="detail" align="right">58</td>
<td class="detail" align="right">11858</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is <strong>FosSahul</strong> data table. This table stores <em>observations</em> (= smallest datamodel intity) for the FosSahul compilation and is subordinate to the <code>fos_Sample</code> table.</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/cabah_chroncontroltypeID.html">cabah_chroncontroltypeID</a></td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">2</td>
<td class="detail" align="right">6</td>
<td class="detail" align="right">99</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is Neotoma-derived table for compilations dealing with chronologies, e.g. IPPD. This table, according to Neotoma db (<a href="https://neotoma-manual.readthedocs.io/en/latest/tables_chron.html#chroncontroltypes">https://neotoma-manual.readthedocs.io/en/latest/tables_chron.html#chroncontroltypes</a>), stores <em>chronology control types</em>.</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/sahulsed_lacustrine_osl.html">sahulsed_lacustrine_osl</a></td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">2</td>
<td class="detail" align="right">154</td>
<td class="detail" align="right">474</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is flat <strong>GeoServer input</strong> table. Refer to <a href="https://doi.org/10.25900/6hmv-zz61">https://doi.org/10.25900/6hmv-zz61</a>. Table creation date: 2024-08-22 11:03:09 UTC</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/fos_TaxRank1_classID.html">fos_TaxRank1_classID</a></td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">4</td>
<td class="detail" align="right">8</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is <strong>FosSahul</strong> lookup table for most updated <em>vertebrata class</em> name (= CLASS)</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/neo_elementportions.html">neo_elementportions</a></td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">4</td>
<td class="detail" align="right">54</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is a Neotoma lookup lookup table of <em>Element proportions</em>. This table is referenced by the <code>neo_variableelements</code> table.</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/crn_aus_outlets.html">crn_aus_outlets</a></td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">5</td>
<td class="detail" align="right">297</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is flat <strong>GeoServer input</strong> table. Refer to <a href="http://dx.doi.org/10.25900/5WBX-N779">http://dx.doi.org/10.25900/5WBX-N779</a>. Tble creation date: 2024-08-22 11:01:14 UTC</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/c14_contamID.html">c14_contamID</a></td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">4</td>
<td class="detail" align="right">7</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is SahulArch/ Radiocarbon collection, i.e., <strong>SahulArch/ 14C</strong> lookup table for <em>specific contaminants that may have remained after sample pretreatment</em> (= CONTAM)</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/arch_featdatedID.html">arch_featdatedID</a></td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">4</td>
<td class="detail" align="right">8</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is Sahul Archaeology (SahulArch) lookup table for <em>specific features dated</em>, where applicable (= FEATDATED)</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/crn_xxl_outlets.html">crn_xxl_outlets</a></td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">5</td>
<td class="detail" align="right">261</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is flat <strong>GeoServer input</strong> table. Table creation date: 2024-08-22 11:01:44 UTC</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/global_Journal.html">global_Journal</a></td>
<td class="detail" align="right">1</td>
<td class="detail" align="right">0</td>
<td class="detail" align="right">7</td>
<td class="detail" align="right">1420</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is parent table for <code>global_RefCore</code> table. The latter stores reference information for <strong>all compilations</strong>. <code>global_Journal</code> store information about <em>journals</em> and is part of OCTOPUS reference system (= JOURNALID).</p></td>
</tr>
<tr class="tbl even" valign="top">
<td class="detail"><a href="tables/neo_contacts.html">neo_contacts</a></td>
<td class="detail" align="right">3</td>
<td class="detail" align="right">3</td>
<td class="detail" align="right">18</td>
<td class="detail" align="right">13396</td>
<td class="detail" align="right">Table</td>
<td class="comment detail" style="display: table-cell;"><p>Is a Neotoma lookup table for compilations involving Neotoma contacts, e.g. <strong>IPPD</strong>. This table stores <em>contacts</em> of both individuals and legal entities. To preserve table usability down the database pipeline, primary key values have NOT been altered and MUST BE always identical with those from the Neotoma original.</p></td>
</tr>
<tr class="tbl even" valign="top">