-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1440 lines (1321 loc) · 189 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 lang="en"><head>
<script src="index_files/libs/clipboard/clipboard.min.js"></script>
<script src="index_files/libs/quarto-html/tabby.min.js"></script>
<script src="index_files/libs/quarto-html/popper.min.js"></script>
<script src="index_files/libs/quarto-html/tippy.umd.min.js"></script>
<link href="index_files/libs/quarto-html/tippy.css" rel="stylesheet">
<link href="index_files/libs/quarto-html/light-border.css" rel="stylesheet">
<link href="index_files/libs/quarto-html/quarto-html.min.css" rel="stylesheet" data-mode="light">
<link href="index_files/libs/quarto-html/quarto-syntax-highlighting.css" rel="stylesheet" id="quarto-text-highlighting-styles">
<link href="index_files/libs/quarto-contrib/fontawesome6-0.1.0/all.css" rel="stylesheet">
<link href="index_files/libs/quarto-contrib/fontawesome6-0.1.0/latex-fontsize.css" rel="stylesheet"><meta charset="utf-8">
<meta name="generator" content="quarto-1.4.549">
<title>EcoAssets</title>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
<link rel="stylesheet" href="index_files/libs/revealjs/dist/reset.css">
<link rel="stylesheet" href="index_files/libs/revealjs/dist/reveal.css">
<style>
code{white-space: pre-wrap;}
span.smallcaps{font-variant: small-caps;}
div.columns{display: flex; gap: min(4vw, 1.5em);}
div.column{flex: auto; overflow-x: auto;}
div.hanging-indent{margin-left: 1.5em; text-indent: -1.5em;}
ul.task-list{list-style: none;}
ul.task-list li input[type="checkbox"] {
width: 0.8em;
margin: 0 0.8em 0.2em -1em; /* quarto-specific, see https://github.com/quarto-dev/quarto-cli/issues/4556 */
vertical-align: middle;
}
</style>
<link rel="stylesheet" href="index_files/libs/revealjs/dist/theme/quarto.css">
<link href="index_files/libs/revealjs/plugin/quarto-line-highlight/line-highlight.css" rel="stylesheet">
<link href="index_files/libs/revealjs/plugin/reveal-menu/menu.css" rel="stylesheet">
<link href="index_files/libs/revealjs/plugin/reveal-menu/quarto-menu.css" rel="stylesheet">
<link href="index_files/libs/revealjs/plugin/reveal-chalkboard/font-awesome/css/all.css" rel="stylesheet">
<link href="index_files/libs/revealjs/plugin/reveal-chalkboard/style.css" rel="stylesheet">
<link href="index_files/libs/revealjs/plugin/quarto-support/footer.css" rel="stylesheet">
<style type="text/css">
.callout {
margin-top: 1em;
margin-bottom: 1em;
border-radius: .25rem;
}
.callout.callout-style-simple {
padding: 0em 0.5em;
border-left: solid #acacac .3rem;
border-right: solid 1px silver;
border-top: solid 1px silver;
border-bottom: solid 1px silver;
display: flex;
}
.callout.callout-style-default {
border-left: solid #acacac .3rem;
border-right: solid 1px silver;
border-top: solid 1px silver;
border-bottom: solid 1px silver;
}
.callout .callout-body-container {
flex-grow: 1;
}
.callout.callout-style-simple .callout-body {
font-size: 1rem;
font-weight: 400;
}
.callout.callout-style-default .callout-body {
font-size: 0.9rem;
font-weight: 400;
}
.callout.callout-titled.callout-style-simple .callout-body {
margin-top: 0.2em;
}
.callout:not(.callout-titled) .callout-body {
display: flex;
}
.callout:not(.no-icon).callout-titled.callout-style-simple .callout-content {
padding-left: 1.6em;
}
.callout.callout-titled .callout-header {
padding-top: 0.2em;
margin-bottom: -0.2em;
}
.callout.callout-titled .callout-title p {
margin-top: 0.5em;
margin-bottom: 0.5em;
}
.callout.callout-titled.callout-style-simple .callout-content p {
margin-top: 0;
}
.callout.callout-titled.callout-style-default .callout-content p {
margin-top: 0.7em;
}
.callout.callout-style-simple div.callout-title {
border-bottom: none;
font-size: .9rem;
font-weight: 600;
opacity: 75%;
}
.callout.callout-style-default div.callout-title {
border-bottom: none;
font-weight: 600;
opacity: 85%;
font-size: 0.9rem;
padding-left: 0.5em;
padding-right: 0.5em;
}
.callout.callout-style-default div.callout-content {
padding-left: 0.5em;
padding-right: 0.5em;
}
.callout.callout-style-simple .callout-icon::before {
height: 1rem;
width: 1rem;
display: inline-block;
content: "";
background-repeat: no-repeat;
background-size: 1rem 1rem;
}
.callout.callout-style-default .callout-icon::before {
height: 0.9rem;
width: 0.9rem;
display: inline-block;
content: "";
background-repeat: no-repeat;
background-size: 0.9rem 0.9rem;
}
.callout-title {
display: flex
}
.callout-icon::before {
margin-top: 1rem;
padding-right: .5rem;
}
.callout.no-icon::before {
display: none !important;
}
.callout.callout-titled .callout-body > .callout-content > :last-child {
padding-bottom: 0.5rem;
margin-bottom: 0;
}
.callout.callout-titled .callout-icon::before {
margin-top: .5rem;
padding-right: .5rem;
}
.callout:not(.callout-titled) .callout-icon::before {
margin-top: 1rem;
padding-right: .5rem;
}
/* Callout Types */
div.callout-note {
border-left-color: #4582ec !important;
}
div.callout-note .callout-icon::before {
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAIKADAAQAAAABAAAAIAAAAACshmLzAAAEU0lEQVRYCcVXTWhcVRQ+586kSUMMxkyaElstCto2SIhitS5Ek8xUKV2poatCcVHtUlFQk8mbaaziwpWgglJwVaquitBOfhQXFlqlzSJpFSpIYyXNjBNiTCck7x2/8/LeNDOZxDuEkgOXe++553zfefee+/OYLOXFk3+1LLrRdiO81yNqZ6K9cG0P3MeFaMIQjXssE8Z1JzLO9ls20MBZX7oG8w9GxB0goaPrW5aNMp1yOZIa7Wv6o2ykpLtmAPs/vrG14Z+6d4jpbSKuhdcSyq9wGMPXjonwmESXrriLzFGOdDBLB8Y6MNYBu0dRokSygMA/mrun8MGFN3behm6VVAwg4WR3i6FvYK1T7MHo9BK7ydH+1uurECoouk5MPRyVSBrBHMYwVobG2aOXM07sWrn5qgB60rc6mcwIDJtQrnrEr44kmy+UO9r0u9O5/YbkS9juQckLed3DyW2XV/qWBBB3ptvI8EUY3I9p/67OW+g967TNr3Sotn3IuVlfMLVnsBwH4fsnebJvyGm5GeIUA3jljERmrv49SizPYuq+z7c2H/jlGC+Ghhupn/hcapqmcudB9jwJ/3jvnvu6vu5lVzF1fXyZuZZ7U8nRmVzytvT+H3kilYvH09mLWrQdwFSsFEsxFVs5fK7A0g8gMZjbif4ACpKbjv7gNGaD8bUrlk8x+KRflttr22JEMRUbTUwwDQScyzPgedQHZT0xnx7ujw2jfVfExwYHwOsDTjLdJ2ebmeQIlJ7neo41s/DrsL3kl+W2lWvAga0tR3zueGr6GL78M3ifH0rGXrBC2aAR8uYcIA5gwV8zIE8onoh8u0Fca/ciF7j1uOzEnqcIm59sEXoGc0+z6+H45V1CvAvHcD7THztu669cnp+L0okAeIc6zjbM/24LgGM1gZk7jnRu1aQWoU9sfUOuhrmtaPIO3YY1KLLWZaEO5TKUbMY5zx8W9UJ6elpLwKXbsaZ4EFl7B4bMtDv0iRipKoDQT2sNQI9b1utXFdYisi+wzZ/ri/1m7QfDgEuvgUUEIJPq3DhX/5DWNqIXDOweC2wvIR90Oq3lDpdMIgD2r0dXvGdsEW5H6x6HLRJYU7C69VefO1x8Gde1ZFSJLfWS1jbCnhtOPxmpfv2LXOA2Xk2tvnwKKPFuZ/oRmwBwqRQDcKNeVQkYcOjtWVBuM/JuYw5b6isojIkYxyYAFn5K7ZBF10fea52y8QltAg6jnMqNHFBmGkQ1j+U43HMi2xMar1Nv0zGsf1s8nUsmUtPOOrbFIR8bHFDMB5zL13Gmr/kGlCkUzedTzzmzsaJXhYawnA3UmARpiYj5ooJZiUoxFRtK3X6pgNPv+IZVPcnwbOl6f+aBaO1CNvPW9n9LmCp01nuSaTRF2YxHqZ8DYQT6WsXT+RD6eUztwYLZ8rM+rcPxamv1VQzFUkzFXvkiVrySGQgJNvXHJAxiU3/NwiC03rSf05VBaPtu/Z7/B8Yn/w7eguloAAAAAElFTkSuQmCC');
}
div.callout-note.callout-style-default .callout-title {
background-color: #dae6fb
}
div.callout-important {
border-left-color: #d9534f !important;
}
div.callout-important .callout-icon::before {
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAIKADAAQAAAABAAAAIAAAAACshmLzAAAEKklEQVRYCcVXTWhcVRS+575MJym48A+hSRFr00ySRQhURRfd2HYjk2SSTokuBCkU2o0LoSKKraKIBTcuFCoidGFD08nkBzdREbpQ1EDNIv8qSGMFUboImMSZd4/f9zJv8ibJMC8xJQfO3HPPPef7zrvvvnvviIkpC9nsw0UttFunbUhpFzFtarSd6WJkStVMw5xyVqYTvkwfzuf/5FgtkVoB0729j1rjXwThS7Vio+Mo6DNnvLfahoZ+i/o32lULuJ3NNiz7q6+pyAUkJaFF6JwaM2lUJlV0MlnQn5aTRbEu0SEqHUa0A4AdiGuB1kFXRfVyg5d87+Dg4DL6m2TLAub60ilj7A1Ec4odSAc8X95sHh7+ZRPCFo6Fnp7HfU/fBng/hi10CjCnWnJjsxvDNxWw0NfV6Rv5GgP3I3jGWXumdTD/3cbEOP2ZbOZp69yniG3FQ9z1jD7bnBu9Fc2tKGC2q+uAJOQHBDRiZX1x36o7fWBs7J9ownbtO+n0/qWkvW7UPIfc37WgT6ZGR++EOJyeQDSb9UB+DZ1G6DdLDzyS+b/kBCYGsYgJbSQHuThGKRcw5xdeQf8YdNHsc6ePXrlSYMBuSIAFTGAtQo+VuALo4BX83N190NWZWbynBjhOHsmNfFWLeL6v+ynsA58zDvvAC8j5PkbOcXCMg2PZFk3q8MjI7WAG/Dp9AwP7jdGBOOQkAvlFUB+irtm16I1Zw9YBcpGTGXYmk3kQIC/Cds55l+iMI3jqhjAuaoe+am2Jw5GT3Nbz3CkE12NavmzN5+erJW7046n/CH1RO/RVa8lBLozXk9uqykkGAyRXLWlLv5jyp4RFsG5vGVzpDLnIjTWgnRy2Rr+tDKvRc7Y8AyZq10jj8DqXdnIRNtFZb+t/ZRtXcDiVnzpqx8mPcDWxgARUqx0W1QB9MeUZiNrV4qP+Ehc+BpNgATsTX8ozYKL2NtFYAHc84fG7ndxUPr+AR/iQSns7uSUufAymwDOb2+NjK27lEFocm/EE2WpyIy/Hi66MWuMKJn8RvxIcj87IM5Vh9663ziW36kR0HNenXuxmfaD8JC7tfKbrhFr7LiZCrMjrzTeGx+PmkosrkNzW94ObzwocJ7A1HokLolY+AvkTiD/q1H0cN48c5EL8Crkttsa/AXQVDmutfyku0E7jShx49XqV3MFK8IryDhYVbj7Sj2P2eBxwcXoe8T8idsKKPRcnZw1b+slFTubwUwhktrfnAt7J++jwQtLZcm3sr9LQrjRzz6cfMv9aLvgmnAGvpoaGLxM4mAEaLV7iAzQ3oU0IvD5x9ix3yF2RAAuYAOO2f7PEFWCXZ4C9Pb2UsgDeVnFSpbFK7/IWu7TPTvBqzbGdCHOJQSxiEjt6IyZmxQyEJHv6xyQsYk//moVFsN2zP6fRImjfq7/n/wFDguUQFNEwugAAAABJRU5ErkJggg==');
}
div.callout-important.callout-style-default .callout-title {
background-color: #f7dddc
}
div.callout-warning {
border-left-color: #f0ad4e !important;
}
div.callout-warning .callout-icon::before {
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAIKADAAQAAAABAAAAIAAAAACshmLzAAAETklEQVRYCeVWW2gcVRg+58yaTUnizqbipZeX4uWhBEniBaoUX1Ioze52t7sRq6APio9V9MEaoWlVsFasRq0gltaAPuxms8lu0gcviE/FFOstVbSIxgcv6SU7EZqmdc7v9+9mJtNks51NTUH84ed889/PP+cmxP+d5FIbMJmNbpREu4WUkiTtCicKny0l1pIKmBzovF2S+hIJHX8iEu3hZJ5lNZGqyRrGSIQpq15AzF28jgpeY6yk6GVdrfFqdrD6Iw+QlB8g0YS2g7dyQmXM/IDhBhT0UCiRf59lfqmmDvzRt6kByV/m4JjtzuaujMUM2c5Z2d6JdKrRb3K2q6mA+oYVz8JnDdKPmmNthzkAk/lN63sYPgevrguc72aZX/L9C6x09GYyxBgCX4NlvyGUHOKELlm5rXeR1kchuChJt4SSwyddZRXgvwMGvYo4QSlk3/zkHD8UHxwVJA6zjZZqP8v8kK8OWLnIZtLyCAJagYC4rTGW/9Pqj92N/c+LUaAj27movwbi19tk/whRCIE7Q9vyI6yvRpftAKVTdUjOW40X3h5OXsKCdmFcx0xlLJoSuQngnrJe7Kcjm4OMq9FlC7CMmScQANuNvjfP3PjGXDBaUQmbp296S5L4DrpbrHN1T87ZVEZVCzg1FF0Ft+dKrlLukI+/c9ENo+TvlTDbYFvuKPtQ9+l052rXrgKoWkDAFnvh0wTOmYn8R5f4k/jN/fZiCM1tQx9jQQ4ANhqG4hiL0qIFTGViG9DKB7GYzgubnpofgYRwO+DFjh0Zin2m4b/97EDkXkc+f6xYAPX0KK2I/7fUQuwzuwo/L3AkcjugPNixC8cHf0FyPjWlItmLxWw4Ou9YsQCr5fijMGoD/zpdRy95HRysyXA74MWOnscpO4j2y3HAVisw85hX5+AFBRSHt4ShfLFkIMXTqyKFc46xdzQM6XbAi702a7sy04J0+feReMFKp5q9esYLCqAZYw/k14E/xcLLsFElaornTuJB0svMuJINy8xkIYuL+xPAlWRceH6+HX7THJ0djLUom46zREu7tTkxwmf/FdOZ/sh6Q8qvEAiHpm4PJ4a/doJe0gH1t+aHRgCzOvBvJedEK5OFE5jpm4AGP2a8Dxe3gGJ/pAutug9Gp6he92CsSsWBaEcxGx0FHytmIpuqGkOpldqNYQK8cSoXvd+xLxXADw0kf6UkJNFtdo5MOgaLjiQOQHcn+A6h5NuL2s0qsC2LOM75PcF3yr5STuBSAcGG+meA14K/CI21HcS4LBT6tv0QAh8Dr5l93AhZzG5ZJ4VxAqdZUEl9z7WJ4aN+svMvwHHL21UKTd1mqvChH7/Za5xzXBBKrUcB0TQ+Ulgkfbi/H/YT5EptrGzsEK7tR1B7ln9BBwckYfMiuSqklSznIuoIIOM42MQO+QnduCoFCI0bpkzjCjddHPN/F+2Yu+sd9bKNpVwHhbS3LluK/0zgfwD0xYI5dXuzlQAAAABJRU5ErkJggg==');
}
div.callout-warning.callout-style-default .callout-title {
background-color: #fcefdc
}
div.callout-tip {
border-left-color: #02b875 !important;
}
div.callout-tip .callout-icon::before {
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAIKADAAQAAAABAAAAIAAAAACshmLzAAADr0lEQVRYCe1XTWgTQRj9ZjZV8a9SPIkKgj8I1bMHsUWrqYLVg4Ue6v9BwZOxSYsIerFao7UiUryIqJcqgtpimhbBXoSCVxUFe9CTiogUrUp2Pt+3aUI2u5vdNh4dmMzOzHvvezuz8xNFM0mjnbXaNu1MvFWRXkXEyE6aYOYJpdW4IXuA4r0fo8qqSMDBU0v1HJUgVieAXxzCsdE/YJTdFcVIZQNMyhruOMJKXYFoLfIfIvVIMWdsrd+Rpd86ZmyzzjJmLStqRn0v8lzkb4rVIXvnpScOJuAn2ACC65FkPzEdEy4TPWRLJ2h7z4cArXzzaOdKlbOvKKX25Wl00jSnrwVxAg3o4dRxhO13RBSdNvH0xSARv3adTXbBdTf64IWO2vH0LT+cv4GR1DJt+DUItaQogeBX/chhbTBxEiZ6gftlDNXTrvT7co4ub5A6gp9HIcHvzTa46OS5fBeP87Qm0fQkr4FsYgVQ7Qg+ZayaDg9jhg1GkWj8RG6lkeSacrrHgDaxdoBiZPg+NXV/KifMuB6//JmYH4CntVEHy/keA6x4h4CU5oFy8GzrBS18cLJMXcljAKB6INjWsRcuZBWVaS3GDrqB7rdapVIeA+isQ57Eev9eCqzqOa81CY05VLd6SamW2wA2H3SiTbnbSxmzfp7WtKZkqy4mdyAlGx7ennghYf8voqp9cLSgKdqNfa6RdRsAAkPwRuJZNbpByn+RrJi1RXTwdi8RQF6ymDwGMAtZ6TVE+4uoKh+MYkcLsT0Hk8eAienbiGdjJHZTpmNjlbFJNKDVAp2fJlYju6IreQxQ08UJDNYdoLSl6AadO+fFuCQqVMB1NJwPm69T04Wv5WhfcWyfXQB+wXRs1pt+nCknRa0LVzSA/2B+a9+zQJadb7IyyV24YAxKp2Jqs3emZTuNnKxsah+uabKbMk7CbTgJx/zIgQYErIeTKRQ9yD9wxVof5YolPHqaWo7TD6tJlh7jQnK5z2n3+fGdggIOx2kaa2YI9QWarc5Ce1ipNWMKeSG4DysFF52KBmTNMmn5HqCFkwy34rDg05gDwgH3bBi+sgFhN/e8QvRn8kbamCOhgrZ9GJhFDgfcMHzFb6BAtjKpFhzTjwv1KCVuxHvCbsSiEz4CANnj84cwHdFXAbAOJ4LTSAawGWFn5tDhLMYz6nWeU2wJfIhmIJBefcd/A5FWQWGgrWzyORZ3Q6HuV+Jf0Bj+BTX69fm1zWgK7By1YTXchFDORywnfQ7GpzOo6S+qECrsx2ifVQAAAABJRU5ErkJggg==');
}
div.callout-tip.callout-style-default .callout-title {
background-color: #ccf1e3
}
div.callout-caution {
border-left-color: #fd7e14 !important;
}
div.callout-caution .callout-icon::before {
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAIKADAAQAAAABAAAAIAAAAACshmLzAAACV0lEQVRYCdVWzWoUQRCuqp2ICBLJXgITZL1EfQDBW/bkzUMUD7klD+ATSHBEfAIfQO+iXsWDxJsHL96EHAwhgzlkg8nBg25XWb0zIb0zs9muYYWkoKeru+vn664fBqElyZNuyh167NXJ8Ut8McjbmEraKHkd7uAnAFku+VWdb3reSmRV8PKSLfZ0Gjn3a6Xlcq9YGb6tADjn+lUfTXtVmaZ1KwBIvFI11rRXlWlatwIAAv2asaa9mlB9wwygiDX26qaw1yYPzFXg2N1GgG0FMF8Oj+VIx7E/03lHx8UhvYyNZLN7BwSPgekXXLribw7w5/c8EF+DBK5idvDVYtEEwMeYefjjLAdEyQ3M9nfOkgnPTEkYU+sxMq0BxNR6jExrAI31H1rzvLEfRIdgcv1XEdj6QTQAS2wtstEALLG1yEZ3QhH6oDX7ExBSFEkFINXH98NTrme5IOaaA7kIfiu2L8A3qhH9zRbukdCqdsA98TdElyeMe5BI8Rs2xHRIsoTSSVFfCFCWGPn9XHb4cdobRIWABNf0add9jakDjQJpJ1bTXOJXnnRXHRf+dNL1ZV1MBRCXhMbaHqGI1JkKIL7+i8uffuP6wVQAzO7+qVEbF6NbS0LJureYcWXUUhH66nLR5rYmva+2tjRFtojkM2aD76HEGAD3tPtKM309FJg5j/K682ywcWJ3PASCcycH/22u+Bh7Aa0ehM2Fu4z0SAE81HF9RkB21c5bEn4Dzw+/qNOyXr3DCTQDMBOdhi4nAgiFDGCinIa2owCEChUwD8qzd03PG+qdW/4fDzjUMcE1ZpIAAAAASUVORK5CYII=');
}
div.callout-caution.callout-style-default .callout-title {
background-color: #ffe5d0
}
</style>
<style type="text/css">
.reveal div.sourceCode {
margin: 0;
overflow: auto;
}
.reveal div.hanging-indent {
margin-left: 1em;
text-indent: -1em;
}
.reveal .slide:not(.center) {
height: 100%;
}
.reveal .slide.scrollable {
overflow-y: auto;
}
.reveal .footnotes {
height: 100%;
overflow-y: auto;
}
.reveal .slide .absolute {
position: absolute;
display: block;
}
.reveal .footnotes ol {
counter-reset: ol;
list-style-type: none;
margin-left: 0;
}
.reveal .footnotes ol li:before {
counter-increment: ol;
content: counter(ol) ". ";
}
.reveal .footnotes ol li > p:first-child {
display: inline-block;
}
.reveal .slide ul,
.reveal .slide ol {
margin-bottom: 0.5em;
}
.reveal .slide ul li,
.reveal .slide ol li {
margin-top: 0.4em;
margin-bottom: 0.2em;
}
.reveal .slide ul[role="tablist"] li {
margin-bottom: 0;
}
.reveal .slide ul li > *:first-child,
.reveal .slide ol li > *:first-child {
margin-block-start: 0;
}
.reveal .slide ul li > *:last-child,
.reveal .slide ol li > *:last-child {
margin-block-end: 0;
}
.reveal .slide .columns:nth-child(3) {
margin-block-start: 0.8em;
}
.reveal blockquote {
box-shadow: none;
}
.reveal .tippy-content>* {
margin-top: 0.2em;
margin-bottom: 0.7em;
}
.reveal .tippy-content>*:last-child {
margin-bottom: 0.2em;
}
.reveal .slide > img.stretch.quarto-figure-center,
.reveal .slide > img.r-stretch.quarto-figure-center {
display: block;
margin-left: auto;
margin-right: auto;
}
.reveal .slide > img.stretch.quarto-figure-left,
.reveal .slide > img.r-stretch.quarto-figure-left {
display: block;
margin-left: 0;
margin-right: auto;
}
.reveal .slide > img.stretch.quarto-figure-right,
.reveal .slide > img.r-stretch.quarto-figure-right {
display: block;
margin-left: auto;
margin-right: 0;
}
</style>
</head>
<body class="quarto-light">
<div class="reveal">
<div class="slides">
<section id="title" class="slide level2" data-menu-title="Title" data-background-image="images/title.png">
<h2></h2>
<p><span class="title">EcoAssets: <br> Streamlining access to data from Australian environmental research infrastructures</span> <span class="subtitle">Shandiya Balasubramaniam <br> <i class="fa-brands fa-twitter" aria-label="twitter"></i> @ShandiyaB <br> Ecological Society of Australia 2023</span></p>
</section>
<section id="acknowledgement" class="slide level2" data-menu-title="Acknowledgement">
<h2></h2>
<p><span class="acknowledgement">I acknowledge the Traditional Owners of the lands on which we meet, the Larrakia people, as well as the Traditional Owners of the lands on which I live and work, the Wurundjeri people of the Kulin Nation. I pay my respects to their Elders past and present. I recognise the spiritual and cultural significance of land, water, and all that is in the environment to Traditional Owners, and their continuing connection to Country.</span></p>
<p><img data-src="images/ack_ridges.png" class="absolute" style="bottom: 10px; width: 1500px; "></p>
</section>
<section>
<section id="ecoassets" class="title-slide slide level1 section-break center" data-menu-title="EcoAssets" data-background-color="#a47823">
<h1>EcoAssets</h1>
<aside class="notes">
<p>Today I’m going to talk about EcoAssets, which is a project that brings together 3 research infrastructures, the Atlas of Living Australia, the Integrated Marine Observing System, and the Terrestrial Ecosystem Research Network, to provide data in forms that support environmental reporting, such as the 2021 State of the Environment report.</p>
<style type="text/css">
span.MJX_Assistive_MathML {
position:absolute!important;
clip: rect(1px, 1px, 1px, 1px);
padding: 1px 0 0 0!important;
border: 0!important;
height: 1px!important;
width: 1px!important;
overflow: hidden!important;
display:block!important;
}</style></aside>
</section>
<section id="section" class="slide level2">
<h2></h2>
<p><img data-src="images/banksia.jpeg" class="absolute" style="top: 10px; left: 310px; height: 800px; "></p>
<p><span class="citation">Image from the Biodiversity Heritage Library;, contributed by Missouri Botanical Garden, Peter H. Raven Library</span></p>
<aside class="notes">
<p>The 3 research infrastructures are funded to collect, manage, and organise different types of environmental data: The ALA is Australia’s national biodiversity database, bringing together data from natural history collections, researchers, government departments, community groups, and individuals. TERN measures key terrestrial ecosystem attributes at representative locations and produces ecosystem datasets at a national scale. And IMOS collects data on all aspects of the marine environment, with extensive monitoring activities in coastal and open waters.</p>
<style type="text/css">
span.MJX_Assistive_MathML {
position:absolute!important;
clip: rect(1px, 1px, 1px, 1px);
padding: 1px 0 0 0!important;
border: 0!important;
height: 1px!important;
width: 1px!important;
overflow: hidden!important;
display:block!important;
}</style></aside>
</section>
<section id="section-1" class="slide level2">
<h2></h2>
<p><span class="big-blue">EcoAssets streamlines the flow of data from national research infrastructures into environmental reporting through versioned, aggregated datasets.</span></p>
<aside class="notes">
<p>Historically, data from these activities have certainly fed into environmental reporting. Notably, the 2016 State of the Environment report referenced particular datasets from these infrastructures, but: it was difficult to access the data directly, and there wasn’t any option for revisiting those datasets at a later point in time if someone wanted to review the results.</p>
<p>EcoAssets addresses this by streamlining the flow of data from these infrastructures into reporting, by producing aggregated datasets that can be more easily accessed and used for analysis, and versioning these at regular intervals to support longer time-series analysis. This means that all the data underpinning these reports will be available for scrutiny or re-analysis, and users can have greater confidence in the summaries that are presented.</p>
<p>We’ve produced two types of datasets, and I’ll give an overview of both them and talk through some examples.</p>
<style type="text/css">
span.MJX_Assistive_MathML {
position:absolute!important;
clip: rect(1px, 1px, 1px, 1px);
padding: 1px 0 0 0!important;
border: 0!important;
height: 1px!important;
width: 1px!important;
overflow: hidden!important;
display:block!important;
}</style></aside>
</section></section>
<section>
<section id="monitoring" class="title-slide slide level1 section-break center" data-menu-title="Monitoring Effort" data-background-color="#a47823">
<h1>Monitoring</h1>
<aside class="notes">
<p>The first type of datasets relates to monitoring effort across the country</p>
<style type="text/css">
span.MJX_Assistive_MathML {
position:absolute!important;
clip: rect(1px, 1px, 1px, 1px);
padding: 1px 0 0 0!important;
border: 0!important;
height: 1px!important;
width: 1px!important;
overflow: hidden!important;
display:block!important;
}</style></aside>
</section>
<section id="quote" class="slide level2 std" data-menu-title="Quote">
<h2></h2>
<p><span class="quote">One of the challenges in compiling State of the Environment Report chapters is that studies are often place-based, meaning that compiling a truly national picture requires integrating separate studies, often conducted using different methods, and with gaps between them.</span></p>
<p><span class="quote-author">- Dr Dan Metcalfe, CSIRO and State of the Environment reports 2016 & 2021 chapter author</span> <span class="quotation-mark">”</span></p>
<aside class="notes">
<p>One of the points that was raised about state of the environment reporting, which you’ll see on the slide here, is pertinent to our understanding of national monitoring effort. Studies are often place-based, short term, and use different terminologies, so integrating them to get a national snapshot is challenging. EcoAssets has compiled monitoring datasets from the ALA, TERN, and IMOS, and mapped them to a common vocabulary to facilitate comparison of survey effort across time and space. These datasets go from 2010 to 2022, and include data from TERN monitoring stations across the country, IMOS marine surveys, and other systematic surveys from the ALA, where there was a clearly defined event ID and sampling protocol, as well as date and location.</p>
<style type="text/css">
span.MJX_Assistive_MathML {
position:absolute!important;
clip: rect(1px, 1px, 1px, 1px);
padding: 1px 0 0 0!important;
border: 0!important;
height: 1px!important;
width: 1px!important;
overflow: hidden!important;
display:block!important;
}</style></aside>
</section>
<section id="monit-table" class="slide level2 std" data-menu-title="Monitoring Table" data-chalkboard-buttons="true">
<h2>Aggregated Monitoring Data</h2>
<div class="cell">
<div class="cell-output-display">
<div id="anksppfcaq" style="padding-left:0px;padding-right:0px;padding-top:10px;padding-bottom:10px;overflow-x:auto;overflow-y:auto;width:auto;height:auto;">
<table class="gt_table" data-quarto-postprocess="true" data-quarto-disable-processing="false" data-quarto-bootstrap="false" style="-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-family: Lato, system-ui, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'; display: table; border-collapse: collapse; line-height: normal; margin-left: auto; margin-right: auto; color: #273B50; font-size: 19px; font-weight: normal; font-style: normal; background-color: #FFFFFF; width: auto; border-top-style: solid; border-top-width: 2px; border-top-color: #A8A8A8; border-right-style: none; border-right-width: 2px; border-right-color: #D3D3D3; border-bottom-style: solid; border-bottom-width: 2px; border-bottom-color: #A8A8A8; border-left-style: none; border-left-width: 2px; border-left-color: #D3D3D3;" data-bgcolor="#FFFFFF">
<thead style="border-style: none;">
<tr class="header gt_col_headings" style="border-style: none; border-top-style: solid; border-top-width: 2px; border-top-color: #D3D3D3; border-bottom-style: solid; border-bottom-width: 2px; border-bottom-color: #D3D3D3; border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3;">
<th id="nri" class="gt_col_heading gt_columns_bottom_border gt_left" data-quarto-table-cell-role="th" scope="col" style="text-align: left; border-style: none; color: #FFFFFF; background-color: #A47823; font-size: 24px; font-weight: lighter; text-transform: inherit; border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: bottom; padding-top: 5px; padding-bottom: 6px; padding-left: 5px; padding-right: 5px; overflow-x: hidden;" data-bgcolor="#A47823" data-valign="bottom">nri</th>
<th id="datasetName" class="gt_col_heading gt_columns_bottom_border gt_left" data-quarto-table-cell-role="th" scope="col" style="text-align: left; border-style: none; color: #FFFFFF; background-color: #A47823; font-size: 24px; font-weight: lighter; text-transform: inherit; border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: bottom; padding-top: 5px; padding-bottom: 6px; padding-left: 5px; padding-right: 5px; overflow-x: hidden;" data-bgcolor="#A47823" data-valign="bottom">datasetName</th>
<th id="datasetURI" class="gt_col_heading gt_columns_bottom_border gt_left" data-quarto-table-cell-role="th" scope="col" style="text-align: left; border-style: none; color: #FFFFFF; background-color: #A47823; font-size: 24px; font-weight: lighter; text-transform: inherit; border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: bottom; padding-top: 5px; padding-bottom: 6px; padding-left: 5px; padding-right: 5px; overflow-x: hidden;" data-bgcolor="#A47823" data-valign="bottom">datasetURI</th>
<th id="nriKeyword" class="gt_col_heading gt_columns_bottom_border gt_left" data-quarto-table-cell-role="th" scope="col" style="text-align: left; border-style: none; color: #FFFFFF; background-color: #A47823; font-size: 24px; font-weight: lighter; text-transform: inherit; border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: bottom; padding-top: 5px; padding-bottom: 6px; padding-left: 5px; padding-right: 5px; overflow-x: hidden;" data-bgcolor="#A47823" data-valign="bottom">nriKeyword</th>
<th id="decimalLatitude" class="gt_col_heading gt_columns_bottom_border gt_right" data-quarto-table-cell-role="th" scope="col" style="text-align: right; border-style: none; color: #FFFFFF; background-color: #A47823; font-size: 24px; font-weight: lighter; text-transform: inherit; border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: bottom; padding-top: 5px; padding-bottom: 6px; padding-left: 5px; padding-right: 5px; overflow-x: hidden; font-variant-numeric: tabular-nums;" data-bgcolor="#A47823" data-valign="bottom">decimalLatitude</th>
<th id="decimalLongitude" class="gt_col_heading gt_columns_bottom_border gt_right" data-quarto-table-cell-role="th" scope="col" style="text-align: right; border-style: none; color: #FFFFFF; background-color: #A47823; font-size: 24px; font-weight: lighter; text-transform: inherit; border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: bottom; padding-top: 5px; padding-bottom: 6px; padding-left: 5px; padding-right: 5px; overflow-x: hidden; font-variant-numeric: tabular-nums;" data-bgcolor="#A47823" data-valign="bottom">decimalLongitude</th>
<th id="year" class="gt_col_heading gt_columns_bottom_border gt_right" data-quarto-table-cell-role="th" scope="col" style="text-align: right; border-style: none; color: #FFFFFF; background-color: #A47823; font-size: 24px; font-weight: lighter; text-transform: inherit; border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: bottom; padding-top: 5px; padding-bottom: 6px; padding-left: 5px; padding-right: 5px; overflow-x: hidden; font-variant-numeric: tabular-nums;" data-bgcolor="#A47823" data-valign="bottom">year</th>
<th id="stateTerritory" class="gt_col_heading gt_columns_bottom_border gt_left" data-quarto-table-cell-role="th" scope="col" style="text-align: left; border-style: none; color: #FFFFFF; background-color: #A47823; font-size: 24px; font-weight: lighter; text-transform: inherit; border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: bottom; padding-top: 5px; padding-bottom: 6px; padding-left: 5px; padding-right: 5px; overflow-x: hidden;" data-bgcolor="#A47823" data-valign="bottom">stateTerritory</th>
<th id="ibraRegion" class="gt_col_heading gt_columns_bottom_border gt_left" data-quarto-table-cell-role="th" scope="col" style="text-align: left; border-style: none; color: #FFFFFF; background-color: #A47823; font-size: 24px; font-weight: lighter; text-transform: inherit; border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: bottom; padding-top: 5px; padding-bottom: 6px; padding-left: 5px; padding-right: 5px; overflow-x: hidden;" data-bgcolor="#A47823" data-valign="bottom">ibraRegion</th>
<th id="imcraRegion" class="gt_col_heading gt_columns_bottom_border gt_left" data-quarto-table-cell-role="th" scope="col" style="text-align: left; border-style: none; color: #FFFFFF; background-color: #A47823; font-size: 24px; font-weight: lighter; text-transform: inherit; border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: bottom; padding-top: 5px; padding-bottom: 6px; padding-left: 5px; padding-right: 5px; overflow-x: hidden;" data-bgcolor="#A47823" data-valign="bottom">imcraRegion</th>
<th id="featureID" class="gt_col_heading gt_columns_bottom_border gt_left" data-quarto-table-cell-role="th" scope="col" style="text-align: left; border-style: none; color: #FFFFFF; background-color: #A47823; font-size: 24px; font-weight: lighter; text-transform: inherit; border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: bottom; padding-top: 5px; padding-bottom: 6px; padding-left: 5px; padding-right: 5px; overflow-x: hidden;" data-bgcolor="#A47823" data-valign="bottom">featureID</th>
<th id="featureName" class="gt_col_heading gt_columns_bottom_border gt_left" data-quarto-table-cell-role="th" scope="col" style="text-align: left; border-style: none; color: #FFFFFF; background-color: #A47823; font-size: 24px; font-weight: lighter; text-transform: inherit; border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: bottom; padding-top: 5px; padding-bottom: 6px; padding-left: 5px; padding-right: 5px; overflow-x: hidden;" data-bgcolor="#A47823" data-valign="bottom">featureName</th>
<th id="featureFacet1" class="gt_col_heading gt_columns_bottom_border gt_left" data-quarto-table-cell-role="th" scope="col" style="text-align: left; border-style: none; color: #FFFFFF; background-color: #A47823; font-size: 24px; font-weight: lighter; text-transform: inherit; border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: bottom; padding-top: 5px; padding-bottom: 6px; padding-left: 5px; padding-right: 5px; overflow-x: hidden;" data-bgcolor="#A47823" data-valign="bottom">featureFacet1</th>
<th id="featureFacet2" class="gt_col_heading gt_columns_bottom_border gt_left" data-quarto-table-cell-role="th" scope="col" style="text-align: left; border-style: none; color: #FFFFFF; background-color: #A47823; font-size: 24px; font-weight: lighter; text-transform: inherit; border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: bottom; padding-top: 5px; padding-bottom: 6px; padding-left: 5px; padding-right: 5px; overflow-x: hidden;" data-bgcolor="#A47823" data-valign="bottom">featureFacet2</th>
<th id="featureFacet3" class="gt_col_heading gt_columns_bottom_border gt_left" data-quarto-table-cell-role="th" scope="col" style="text-align: left; border-style: none; color: #FFFFFF; background-color: #A47823; font-size: 24px; font-weight: lighter; text-transform: inherit; border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: bottom; padding-top: 5px; padding-bottom: 6px; padding-left: 5px; padding-right: 5px; overflow-x: hidden;" data-bgcolor="#A47823" data-valign="bottom">featureFacet3</th>
</tr>
</thead>
<tbody class="gt_table_body" style="border-style: none; border-top-style: solid; border-top-width: 2px; border-top-color: #D3D3D3; border-bottom-style: solid; border-bottom-width: 2px; border-bottom-color: #D3D3D3;">
<tr class="odd" style="border-style: none;">
<td class="gt_row gt_left" headers="nri" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">ALA</td>
<td class="gt_row gt_left" headers="datasetName" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">SA Fauna (BDBSA)</td>
<td class="gt_row gt_left" headers="datasetURI" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">https://collections.ala.org.au/public/show/dr365</td>
<td class="gt_row gt_left" headers="nriKeyword" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">observed-no method stated: 884 samples</td>
<td class="gt_row gt_right" headers="decimalLatitude" style="text-align: right; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; font-variant-numeric: tabular-nums;" data-valign="middle">-34.92498</td>
<td class="gt_row gt_right" headers="decimalLongitude" style="text-align: right; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; font-variant-numeric: tabular-nums;" data-valign="middle">139.0421</td>
<td class="gt_row gt_right" headers="year" style="text-align: right; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; font-variant-numeric: tabular-nums;" data-valign="middle">2018</td>
<td class="gt_row gt_left" headers="stateTerritory" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">South Australia</td>
<td class="gt_row gt_left" headers="ibraRegion" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">Kanmantoo</td>
<td class="gt_row gt_left" headers="imcraRegion" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">NA</td>
<td class="gt_row gt_left" headers="featureID" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">https://biodiversity.org.au/afd/taxa/65625205-db74-4a87-b566-ca387b119974</td>
<td class="gt_row gt_left" headers="featureName" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">Biodiversity | Animals | Vertebrates | Birds</td>
<td class="gt_row gt_left" headers="featureFacet1" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">Biological Classification</td>
<td class="gt_row gt_left" headers="featureFacet2" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">Animals</td>
<td class="gt_row gt_left" headers="featureFacet3" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">Birds</td>
</tr>
<tr class="even" style="border-style: none;">
<td class="gt_row gt_left gt_striped" headers="nri" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">ALA</td>
<td class="gt_row gt_left gt_striped" headers="datasetName" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">SA Fauna (BDBSA)</td>
<td class="gt_row gt_left gt_striped" headers="datasetURI" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">https://collections.ala.org.au/public/show/dr365</td>
<td class="gt_row gt_left gt_striped" headers="nriKeyword" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">observed-no method stated: 24 samples</td>
<td class="gt_row gt_right gt_striped" headers="decimalLatitude" style="text-align: right; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06); font-variant-numeric: tabular-nums;" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">-34.89952</td>
<td class="gt_row gt_right gt_striped" headers="decimalLongitude" style="text-align: right; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06); font-variant-numeric: tabular-nums;" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">138.5954</td>
<td class="gt_row gt_right gt_striped" headers="year" style="text-align: right; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06); font-variant-numeric: tabular-nums;" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">2010</td>
<td class="gt_row gt_left gt_striped" headers="stateTerritory" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">South Australia</td>
<td class="gt_row gt_left gt_striped" headers="ibraRegion" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">Flinders Lofty Block</td>
<td class="gt_row gt_left gt_striped" headers="imcraRegion" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">NA</td>
<td class="gt_row gt_left gt_striped" headers="featureID" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">https://biodiversity.org.au/afd/taxa/65625205-db74-4a87-b566-ca387b119974</td>
<td class="gt_row gt_left gt_striped" headers="featureName" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">Biodiversity | Animals | Vertebrates | Birds</td>
<td class="gt_row gt_left gt_striped" headers="featureFacet1" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">Biological Classification</td>
<td class="gt_row gt_left gt_striped" headers="featureFacet2" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">Animals</td>
<td class="gt_row gt_left gt_striped" headers="featureFacet3" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">Birds</td>
</tr>
<tr class="odd" style="border-style: none;">
<td class="gt_row gt_left" headers="nri" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">TERN</td>
<td class="gt_row gt_left" headers="datasetName" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">TERN Surveillance monitoring site NSAMDD0006</td>
<td class="gt_row gt_left" headers="datasetURI" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">http://linked.data.gov.au/dataset/ausplots/site-nsamdd0006</td>
<td class="gt_row gt_left" headers="nriKeyword" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">soil profile</td>
<td class="gt_row gt_right" headers="decimalLatitude" style="text-align: right; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; font-variant-numeric: tabular-nums;" data-valign="middle">-33.66430</td>
<td class="gt_row gt_right" headers="decimalLongitude" style="text-align: right; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; font-variant-numeric: tabular-nums;" data-valign="middle">143.1670</td>
<td class="gt_row gt_right" headers="year" style="text-align: right; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; font-variant-numeric: tabular-nums;" data-valign="middle">2014</td>
<td class="gt_row gt_left" headers="stateTerritory" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">New South Wales</td>
<td class="gt_row gt_left" headers="ibraRegion" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">Murray Darling Depression</td>
<td class="gt_row gt_left" headers="imcraRegion" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">NA</td>
<td class="gt_row gt_left" headers="featureID" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">https://gcmd.earthdata.nasa.gov/kms/concept/7a16aa40-c74b-4a69-a230-1edd1b453332</td>
<td class="gt_row gt_left" headers="featureName" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">Land Surface | Soils | Soil Horizons/Profile</td>
<td class="gt_row gt_left" headers="featureFacet1" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">Land Surface</td>
<td class="gt_row gt_left" headers="featureFacet2" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">Soils</td>
<td class="gt_row gt_left" headers="featureFacet3" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">Soils</td>
</tr>
<tr class="even" style="border-style: none;">
<td class="gt_row gt_left gt_striped" headers="nri" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">TERN</td>
<td class="gt_row gt_left gt_striped" headers="datasetName" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">TERN Surveillance monitoring site QDAEIU0010</td>
<td class="gt_row gt_left gt_striped" headers="datasetURI" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">http://linked.data.gov.au/dataset/ausplots/site-qdaeiu0010</td>
<td class="gt_row gt_left gt_striped" headers="nriKeyword" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">plant occurrence</td>
<td class="gt_row gt_right gt_striped" headers="decimalLatitude" style="text-align: right; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06); font-variant-numeric: tabular-nums;" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">-19.89340</td>
<td class="gt_row gt_right gt_striped" headers="decimalLongitude" style="text-align: right; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06); font-variant-numeric: tabular-nums;" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">146.1820</td>
<td class="gt_row gt_right gt_striped" headers="year" style="text-align: right; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06); font-variant-numeric: tabular-nums;" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">2021</td>
<td class="gt_row gt_left gt_striped" headers="stateTerritory" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">Queensland</td>
<td class="gt_row gt_left gt_striped" headers="ibraRegion" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">Einasleigh Uplands</td>
<td class="gt_row gt_left gt_striped" headers="imcraRegion" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">NA</td>
<td class="gt_row gt_left gt_striped" headers="featureID" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">https://id.biodiversity.org.au/taxon/apni/51414459</td>
<td class="gt_row gt_left gt_striped" headers="featureName" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">Biodiversity | Plants</td>
<td class="gt_row gt_left gt_striped" headers="featureFacet1" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">Biological Classification</td>
<td class="gt_row gt_left gt_striped" headers="featureFacet2" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">Plants</td>
<td class="gt_row gt_left gt_striped" headers="featureFacet3" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">Plants</td>
</tr>
<tr class="odd" style="border-style: none;">
<td class="gt_row gt_left" headers="nri" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">TERN</td>
<td class="gt_row gt_left" headers="datasetName" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">TERN Surveillance monitoring site SAAEYB0008</td>
<td class="gt_row gt_left" headers="datasetURI" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">http://linked.data.gov.au/dataset/ausplots/site-saaeyb0008</td>
<td class="gt_row gt_left" headers="nriKeyword" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">plant community</td>
<td class="gt_row gt_right" headers="decimalLatitude" style="text-align: right; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; font-variant-numeric: tabular-nums;" data-valign="middle">-35.04930</td>
<td class="gt_row gt_right" headers="decimalLongitude" style="text-align: right; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; font-variant-numeric: tabular-nums;" data-valign="middle">137.2140</td>
<td class="gt_row gt_right" headers="year" style="text-align: right; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; font-variant-numeric: tabular-nums;" data-valign="middle">2020</td>
<td class="gt_row gt_left" headers="stateTerritory" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">South Australia</td>
<td class="gt_row gt_left" headers="ibraRegion" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">Eyre Yorke Block</td>
<td class="gt_row gt_left" headers="imcraRegion" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">NA</td>
<td class="gt_row gt_left" headers="featureID" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">https://id.biodiversity.org.au/taxon/apni/51414459</td>
<td class="gt_row gt_left" headers="featureName" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">Biodiversity | Plants</td>
<td class="gt_row gt_left" headers="featureFacet1" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">Biological Classification</td>
<td class="gt_row gt_left" headers="featureFacet2" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">Plants</td>
<td class="gt_row gt_left" headers="featureFacet3" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">Plants</td>
</tr>
<tr class="even" style="border-style: none;">
<td class="gt_row gt_left gt_striped" headers="nri" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">IMOS</td>
<td class="gt_row gt_left gt_striped" headers="datasetName" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">IMOS SOOP-XBT Upper Ocean Thermal Data collected in the Tasman Sea</td>
<td class="gt_row gt_left gt_striped" headers="datasetURI" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">https://catalogue-imos.aodn.org.au:443/geonetwork/srv/api/records/55b6a183-e942-424e-b3bd-476dfb284fc0</td>
<td class="gt_row gt_left gt_striped" headers="nriKeyword" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">oceans | ocean pressure | water pressure</td>
<td class="gt_row gt_right gt_striped" headers="decimalLatitude" style="text-align: right; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06); font-variant-numeric: tabular-nums;" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">NA</td>
<td class="gt_row gt_right gt_striped" headers="decimalLongitude" style="text-align: right; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06); font-variant-numeric: tabular-nums;" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">NA</td>
<td class="gt_row gt_right gt_striped" headers="year" style="text-align: right; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06); font-variant-numeric: tabular-nums;" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">2010</td>
<td class="gt_row gt_left gt_striped" headers="stateTerritory" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">Victoria</td>
<td class="gt_row gt_left gt_striped" headers="ibraRegion" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">NA</td>
<td class="gt_row gt_left gt_striped" headers="imcraRegion" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">Tweed-Moreton</td>
<td class="gt_row gt_left gt_striped" headers="featureID" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">https://gcmd.earthdata.nasa.gov/kms/concept/dd025312-0d27-44e0-ae05-7cfcc1aa17f0</td>
<td class="gt_row gt_left gt_striped" headers="featureName" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">Oceans | Ocean Pressure | Water Pressure</td>
<td class="gt_row gt_left gt_striped" headers="featureFacet1" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">Oceans</td>
<td class="gt_row gt_left gt_striped" headers="featureFacet2" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">Ocean Pressure</td>
<td class="gt_row gt_left gt_striped" headers="featureFacet3" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">Ocean Pressure</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<aside class="notes">
<p>This is a sample of what the aggregated dataset looks like: on the left is information about where the data is from and some associated keywords, in the middle we’ve included information about survey data and location, and cross-referenced this against spatial layers that tell you which state or territory the survey was in, and whether it intersected with terrestrial or marine bioregions, and on the right is where we’ve mapped it all to a common vocabulary. As you progress towards the right, the values in the columns get more specific, so it lets you look for information at different hierarchical levels. For instance, if I were only interested in bird surveys, I could just filter on this column for birds.</p>
<style type="text/css">
span.MJX_Assistive_MathML {
position:absolute!important;
clip: rect(1px, 1px, 1px, 1px);
padding: 1px 0 0 0!important;
border: 0!important;
height: 1px!important;
width: 1px!important;
overflow: hidden!important;
display:block!important;
}</style></aside>
</section>
<section id="choropleth" class="slide level2 std" data-menu-title="Monitoring GIF">
<h2></h2>
<img data-src="images/monitoring.gif" class="quarto-figure quarto-figure-center r-stretch"><aside class="notes">
<p>For example, here I’ve chosen biological monitoring events only, and mapped the number of surveys in each terrestrial region, for every year. These maps highlight the vast difference in monitoring effort across regions - some areas are consistently surveyed every year, like parts of South Australia, whereas other areas appear to be data-deficient, whether due an actual lack of monitoring or because EcoAssets doesn’t have that information. So that’s the first type of datasets we’ve produced, …</p>
<style type="text/css">
span.MJX_Assistive_MathML {
position:absolute!important;
clip: rect(1px, 1px, 1px, 1px);
padding: 1px 0 0 0!important;
border: 0!important;
height: 1px!important;
width: 1px!important;
overflow: hidden!important;
display:block!important;
}</style></aside>
</section></section>
<section>
<section id="biodiversity" class="title-slide slide level1 section-break center" data-menu-title="Biodiversity" data-background-color="#a47823">
<h1>Biodiversity</h1>
<aside class="notes">
<p>… the second type summarises biodiversity. These are based on species occurrence records - so, records of a taxon detected in a particular time and place. In aggregate, these data represent our understanding of biodiversity</p>
<style type="text/css">
span.MJX_Assistive_MathML {
position:absolute!important;
clip: rect(1px, 1px, 1px, 1px);
padding: 1px 0 0 0!important;
border: 0!important;
height: 1px!important;
width: 1px!important;
overflow: hidden!important;
display:block!important;
}</style></aside>
</section>
<section id="biodiv-table" class="slide level2 std" data-menu-title="Biodiversity Table" data-chalkboard-buttons="true">
<h2>Aggregated Biodiversity Data</h2>
<div class="cell">
<div class="cell-output-display">
<div id="obovbrylkb" style="padding-left:0px;padding-right:0px;padding-top:10px;padding-bottom:10px;overflow-x:auto;overflow-y:auto;width:auto;height:auto;">
<table class="gt_table" data-quarto-postprocess="true" data-quarto-disable-processing="false" data-quarto-bootstrap="false" style="-webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; font-family: Lato, system-ui, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'; display: table; border-collapse: collapse; line-height: normal; margin-left: auto; margin-right: auto; color: #273B50; font-size: 19px; font-weight: normal; font-style: normal; background-color: #FFFFFF; width: auto; border-top-style: solid; border-top-width: 2px; border-top-color: #A8A8A8; border-right-style: none; border-right-width: 2px; border-right-color: #D3D3D3; border-bottom-style: solid; border-bottom-width: 2px; border-bottom-color: #A8A8A8; border-left-style: none; border-left-width: 2px; border-left-color: #D3D3D3;" data-bgcolor="#FFFFFF">
<thead style="border-style: none;">
<tr class="header gt_col_headings" style="border-style: none; border-top-style: solid; border-top-width: 2px; border-top-color: #D3D3D3; border-bottom-style: solid; border-bottom-width: 2px; border-bottom-color: #D3D3D3; border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3;">
<th id="year" class="gt_col_heading gt_columns_bottom_border gt_right" data-quarto-table-cell-role="th" scope="col" style="text-align: right; border-style: none; color: #FFFFFF; background-color: #A47823; font-size: 24px; font-weight: lighter; text-transform: inherit; border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: bottom; padding-top: 5px; padding-bottom: 6px; padding-left: 5px; padding-right: 5px; overflow-x: hidden; font-variant-numeric: tabular-nums;" data-bgcolor="#A47823" data-valign="bottom">year</th>
<th id="basisOfRecord" class="gt_col_heading gt_columns_bottom_border gt_left" data-quarto-table-cell-role="th" scope="col" style="text-align: left; border-style: none; color: #FFFFFF; background-color: #A47823; font-size: 24px; font-weight: lighter; text-transform: inherit; border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: bottom; padding-top: 5px; padding-bottom: 6px; padding-left: 5px; padding-right: 5px; overflow-x: hidden;" data-bgcolor="#A47823" data-valign="bottom">basisOfRecord</th>
<th id="stateTerritory" class="gt_col_heading gt_columns_bottom_border gt_left" data-quarto-table-cell-role="th" scope="col" style="text-align: left; border-style: none; color: #FFFFFF; background-color: #A47823; font-size: 24px; font-weight: lighter; text-transform: inherit; border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: bottom; padding-top: 5px; padding-bottom: 6px; padding-left: 5px; padding-right: 5px; overflow-x: hidden;" data-bgcolor="#A47823" data-valign="bottom">stateTerritory</th>
<th id="ibraRegion" class="gt_col_heading gt_columns_bottom_border gt_left" data-quarto-table-cell-role="th" scope="col" style="text-align: left; border-style: none; color: #FFFFFF; background-color: #A47823; font-size: 24px; font-weight: lighter; text-transform: inherit; border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: bottom; padding-top: 5px; padding-bottom: 6px; padding-left: 5px; padding-right: 5px; overflow-x: hidden;" data-bgcolor="#A47823" data-valign="bottom">ibraRegion</th>
<th id="imcraRegion" class="gt_col_heading gt_columns_bottom_border gt_left" data-quarto-table-cell-role="th" scope="col" style="text-align: left; border-style: none; color: #FFFFFF; background-color: #A47823; font-size: 24px; font-weight: lighter; text-transform: inherit; border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: bottom; padding-top: 5px; padding-bottom: 6px; padding-left: 5px; padding-right: 5px; overflow-x: hidden;" data-bgcolor="#A47823" data-valign="bottom">imcraRegion</th>
<th id="forest2018Status" class="gt_col_heading gt_columns_bottom_border gt_left" data-quarto-table-cell-role="th" scope="col" style="text-align: left; border-style: none; color: #FFFFFF; background-color: #A47823; font-size: 24px; font-weight: lighter; text-transform: inherit; border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: bottom; padding-top: 5px; padding-bottom: 6px; padding-left: 5px; padding-right: 5px; overflow-x: hidden;" data-bgcolor="#A47823" data-valign="bottom">forest2018Status</th>
<th id="forest2013Status" class="gt_col_heading gt_columns_bottom_border gt_left" data-quarto-table-cell-role="th" scope="col" style="text-align: left; border-style: none; color: #FFFFFF; background-color: #A47823; font-size: 24px; font-weight: lighter; text-transform: inherit; border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: bottom; padding-top: 5px; padding-bottom: 6px; padding-left: 5px; padding-right: 5px; overflow-x: hidden;" data-bgcolor="#A47823" data-valign="bottom">forest2013Status</th>
<th id="capadStatus" class="gt_col_heading gt_columns_bottom_border gt_left" data-quarto-table-cell-role="th" scope="col" style="text-align: left; border-style: none; color: #FFFFFF; background-color: #A47823; font-size: 24px; font-weight: lighter; text-transform: inherit; border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: bottom; padding-top: 5px; padding-bottom: 6px; padding-left: 5px; padding-right: 5px; overflow-x: hidden;" data-bgcolor="#A47823" data-valign="bottom">capadStatus</th>
<th id="epbcStatus" class="gt_col_heading gt_columns_bottom_border gt_left" data-quarto-table-cell-role="th" scope="col" style="text-align: left; border-style: none; color: #FFFFFF; background-color: #A47823; font-size: 24px; font-weight: lighter; text-transform: inherit; border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: bottom; padding-top: 5px; padding-bottom: 6px; padding-left: 5px; padding-right: 5px; overflow-x: hidden;" data-bgcolor="#A47823" data-valign="bottom">epbcStatus</th>
<th id="griisStatus" class="gt_col_heading gt_columns_bottom_border gt_left" data-quarto-table-cell-role="th" scope="col" style="text-align: left; border-style: none; color: #FFFFFF; background-color: #A47823; font-size: 24px; font-weight: lighter; text-transform: inherit; border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: bottom; padding-top: 5px; padding-bottom: 6px; padding-left: 5px; padding-right: 5px; overflow-x: hidden;" data-bgcolor="#A47823" data-valign="bottom">griisStatus</th>
<th id="speciesID" class="gt_col_heading gt_columns_bottom_border gt_left" data-quarto-table-cell-role="th" scope="col" style="text-align: left; border-style: none; color: #FFFFFF; background-color: #A47823; font-size: 24px; font-weight: lighter; text-transform: inherit; border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: bottom; padding-top: 5px; padding-bottom: 6px; padding-left: 5px; padding-right: 5px; overflow-x: hidden;" data-bgcolor="#A47823" data-valign="bottom">speciesID</th>
<th id="speciesName" class="gt_col_heading gt_columns_bottom_border gt_left" data-quarto-table-cell-role="th" scope="col" style="text-align: left; border-style: none; color: #FFFFFF; background-color: #A47823; font-size: 24px; font-weight: lighter; text-transform: inherit; border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: bottom; padding-top: 5px; padding-bottom: 6px; padding-left: 5px; padding-right: 5px; overflow-x: hidden;" data-bgcolor="#A47823" data-valign="bottom">speciesName</th>
<th id="occurrenceCount" class="gt_col_heading gt_columns_bottom_border gt_right" data-quarto-table-cell-role="th" scope="col" style="text-align: right; border-style: none; color: #FFFFFF; background-color: #A47823; font-size: 24px; font-weight: lighter; text-transform: inherit; border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: bottom; padding-top: 5px; padding-bottom: 6px; padding-left: 5px; padding-right: 5px; overflow-x: hidden; font-variant-numeric: tabular-nums;" data-bgcolor="#A47823" data-valign="bottom">occurrenceCount</th>
</tr>
</thead>
<tbody class="gt_table_body" style="border-style: none; border-top-style: solid; border-top-width: 2px; border-top-color: #D3D3D3; border-bottom-style: solid; border-bottom-width: 2px; border-bottom-color: #D3D3D3;">
<tr class="odd" style="border-style: none;">
<td class="gt_row gt_right" headers="year" style="text-align: right; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; font-variant-numeric: tabular-nums;" data-valign="middle">1900</td>
<td class="gt_row gt_left" headers="basisOfRecord" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">HUMAN_OBSERVATION</td>
<td class="gt_row gt_left" headers="stateTerritory" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">New South Wales</td>
<td class="gt_row gt_left" headers="ibraRegion" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">Australian Alps</td>
<td class="gt_row gt_left" headers="imcraRegion" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle"></td>
<td class="gt_row gt_left" headers="forest2018Status" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">forest</td>
<td class="gt_row gt_left" headers="forest2013Status" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">forest</td>
<td class="gt_row gt_left" headers="capadStatus" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">PA</td>
<td class="gt_row gt_left" headers="epbcStatus" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">Not listed</td>
<td class="gt_row gt_left" headers="griisStatus" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">Native</td>
<td class="gt_row gt_left" headers="speciesID" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">https://biodiversity.org.au/afd/taxa/70b2fe09-3113-4167-bb3d-6f579419b747</td>
<td class="gt_row gt_left" headers="speciesName" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">Antechinus mimetes</td>
<td class="gt_row gt_right" headers="occurrenceCount" style="text-align: right; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; font-variant-numeric: tabular-nums;" data-valign="middle">1</td>
</tr>
<tr class="even" style="border-style: none;">
<td class="gt_row gt_right gt_striped" headers="year" style="text-align: right; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06); font-variant-numeric: tabular-nums;" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">1900</td>
<td class="gt_row gt_left gt_striped" headers="basisOfRecord" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">HUMAN_OBSERVATION</td>
<td class="gt_row gt_left gt_striped" headers="stateTerritory" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">Australian Capital Territory</td>
<td class="gt_row gt_left gt_striped" headers="ibraRegion" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">South Eastern Highlands</td>
<td class="gt_row gt_left gt_striped" headers="imcraRegion" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)"></td>
<td class="gt_row gt_left gt_striped" headers="forest2018Status" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">non-forest</td>
<td class="gt_row gt_left gt_striped" headers="forest2013Status" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">non-forest</td>
<td class="gt_row gt_left gt_striped" headers="capadStatus" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">not protected</td>
<td class="gt_row gt_left gt_striped" headers="epbcStatus" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">Not listed</td>
<td class="gt_row gt_left gt_striped" headers="griisStatus" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">Native</td>
<td class="gt_row gt_left gt_striped" headers="speciesID" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">https://biodiversity.org.au/afd/taxa/5254fe03-630b-44b2-9233-df51a7b8f25f</td>
<td class="gt_row gt_left gt_striped" headers="speciesName" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">Pardalotus punctatus</td>
<td class="gt_row gt_right gt_striped" headers="occurrenceCount" style="text-align: right; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06); font-variant-numeric: tabular-nums;" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">1</td>
</tr>
<tr class="odd" style="border-style: none;">
<td class="gt_row gt_right" headers="year" style="text-align: right; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; font-variant-numeric: tabular-nums;" data-valign="middle">1900</td>
<td class="gt_row gt_left" headers="basisOfRecord" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">HUMAN_OBSERVATION</td>
<td class="gt_row gt_left" headers="stateTerritory" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">South Australia</td>
<td class="gt_row gt_left" headers="ibraRegion" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">Channel Country</td>
<td class="gt_row gt_left" headers="imcraRegion" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle"></td>
<td class="gt_row gt_left" headers="forest2018Status" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">non-forest</td>
<td class="gt_row gt_left" headers="forest2013Status" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">non-forest</td>
<td class="gt_row gt_left" headers="capadStatus" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">PA</td>
<td class="gt_row gt_left" headers="epbcStatus" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">Not listed</td>
<td class="gt_row gt_left" headers="griisStatus" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">Native</td>
<td class="gt_row gt_left" headers="speciesID" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">https://biodiversity.org.au/afd/taxa/cbef5be9-829a-4691-9de4-125356441b1f</td>
<td class="gt_row gt_left" headers="speciesName" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">Calidris subminuta</td>
<td class="gt_row gt_right" headers="occurrenceCount" style="text-align: right; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; font-variant-numeric: tabular-nums;" data-valign="middle">1</td>
</tr>
<tr class="even" style="border-style: none;">
<td class="gt_row gt_right gt_striped" headers="year" style="text-align: right; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06); font-variant-numeric: tabular-nums;" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">1900</td>
<td class="gt_row gt_left gt_striped" headers="basisOfRecord" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">HUMAN_OBSERVATION</td>
<td class="gt_row gt_left gt_striped" headers="stateTerritory" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">Western Australia</td>
<td class="gt_row gt_left gt_striped" headers="ibraRegion" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">Avon Wheatbelt</td>
<td class="gt_row gt_left gt_striped" headers="imcraRegion" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)"></td>
<td class="gt_row gt_left gt_striped" headers="forest2018Status" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">non-forest</td>
<td class="gt_row gt_left gt_striped" headers="forest2013Status" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">non-forest</td>
<td class="gt_row gt_left gt_striped" headers="capadStatus" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">not protected</td>
<td class="gt_row gt_left gt_striped" headers="epbcStatus" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">Not listed</td>
<td class="gt_row gt_left gt_striped" headers="griisStatus" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">Native</td>
<td class="gt_row gt_left gt_striped" headers="speciesID" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">https://biodiversity.org.au/afd/taxa/031b2b69-e9fc-44c6-9df9-03c1470d5ec3</td>
<td class="gt_row gt_left gt_striped" headers="speciesName" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">Sericornis frontalis</td>
<td class="gt_row gt_right gt_striped" headers="occurrenceCount" style="text-align: right; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06); font-variant-numeric: tabular-nums;" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">1</td>
</tr>
<tr class="odd" style="border-style: none;">
<td class="gt_row gt_right" headers="year" style="text-align: right; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; font-variant-numeric: tabular-nums;" data-valign="middle">1900</td>
<td class="gt_row gt_left" headers="basisOfRecord" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">HUMAN_OBSERVATION</td>
<td class="gt_row gt_left" headers="stateTerritory" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">Tasmania</td>
<td class="gt_row gt_left" headers="ibraRegion" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">Ben Lomond</td>
<td class="gt_row gt_left" headers="imcraRegion" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle"></td>
<td class="gt_row gt_left" headers="forest2018Status" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">forest</td>
<td class="gt_row gt_left" headers="forest2013Status" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">forest</td>
<td class="gt_row gt_left" headers="capadStatus" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">PA</td>
<td class="gt_row gt_left" headers="epbcStatus" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">Not listed</td>
<td class="gt_row gt_left" headers="griisStatus" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">Native</td>
<td class="gt_row gt_left" headers="speciesID" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">https://biodiversity.org.au/afd/taxa/ac61fd14-4950-4566-b384-304bd99ca75f</td>
<td class="gt_row gt_left" headers="speciesName" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">Ornithorhynchus anatinus</td>
<td class="gt_row gt_right" headers="occurrenceCount" style="text-align: right; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; font-variant-numeric: tabular-nums;" data-valign="middle">1</td>
</tr>
<tr class="even" style="border-style: none;">
<td class="gt_row gt_right gt_striped" headers="year" style="text-align: right; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06); font-variant-numeric: tabular-nums;" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">1900</td>
<td class="gt_row gt_left gt_striped" headers="basisOfRecord" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">HUMAN_OBSERVATION</td>
<td class="gt_row gt_left gt_striped" headers="stateTerritory" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">Queensland</td>
<td class="gt_row gt_left gt_striped" headers="ibraRegion" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">Brigalow Belt North</td>
<td class="gt_row gt_left gt_striped" headers="imcraRegion" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)"></td>
<td class="gt_row gt_left gt_striped" headers="forest2018Status" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">non-forest</td>
<td class="gt_row gt_left gt_striped" headers="forest2013Status" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">non-forest</td>
<td class="gt_row gt_left gt_striped" headers="capadStatus" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">not protected</td>
<td class="gt_row gt_left gt_striped" headers="epbcStatus" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">Not listed</td>
<td class="gt_row gt_left gt_striped" headers="griisStatus" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">Native</td>
<td class="gt_row gt_left gt_striped" headers="speciesID" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">https://biodiversity.org.au/afd/taxa/112d02bc-0878-49e1-b605-d971d27698e3</td>
<td class="gt_row gt_left gt_striped" headers="speciesName" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">Eudynamys orientalis</td>
<td class="gt_row gt_right gt_striped" headers="occurrenceCount" style="text-align: right; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06); font-variant-numeric: tabular-nums;" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">1</td>
</tr>
<tr class="odd" style="border-style: none;">
<td class="gt_row gt_right" headers="year" style="text-align: right; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; font-variant-numeric: tabular-nums;" data-valign="middle">1950</td>
<td class="gt_row gt_left" headers="basisOfRecord" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">HUMAN_OBSERVATION</td>
<td class="gt_row gt_left" headers="stateTerritory" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">South Australia</td>
<td class="gt_row gt_left" headers="ibraRegion" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle"></td>
<td class="gt_row gt_left" headers="imcraRegion" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">North Spencer Gulf</td>
<td class="gt_row gt_left" headers="forest2018Status" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">non-forest</td>
<td class="gt_row gt_left" headers="forest2013Status" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">non-forest</td>
<td class="gt_row gt_left" headers="capadStatus" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">PA</td>
<td class="gt_row gt_left" headers="epbcStatus" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">Not listed</td>
<td class="gt_row gt_left" headers="griisStatus" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">Native</td>
<td class="gt_row gt_left" headers="speciesID" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">https://biodiversity.org.au/afd/taxa/cf17c9bb-09d1-47ce-adfe-dc060ba0b04c</td>
<td class="gt_row gt_left" headers="speciesName" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden;" data-valign="middle">Morus serrator</td>
<td class="gt_row gt_right" headers="occurrenceCount" style="text-align: right; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; font-variant-numeric: tabular-nums;" data-valign="middle">1</td>
</tr>
<tr class="even" style="border-style: none;">
<td class="gt_row gt_right gt_striped" headers="year" style="text-align: right; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06); font-variant-numeric: tabular-nums;" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">1950</td>
<td class="gt_row gt_left gt_striped" headers="basisOfRecord" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">HUMAN_OBSERVATION</td>
<td class="gt_row gt_left gt_striped" headers="stateTerritory" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">Victoria</td>
<td class="gt_row gt_left gt_striped" headers="ibraRegion" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)"></td>
<td class="gt_row gt_left gt_striped" headers="imcraRegion" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">Otway</td>
<td class="gt_row gt_left gt_striped" headers="forest2018Status" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">non-forest</td>
<td class="gt_row gt_left gt_striped" headers="forest2013Status" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">non-forest</td>
<td class="gt_row gt_left gt_striped" headers="capadStatus" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">PA</td>
<td class="gt_row gt_left gt_striped" headers="epbcStatus" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">Not listed</td>
<td class="gt_row gt_left gt_striped" headers="griisStatus" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">Native</td>
<td class="gt_row gt_left gt_striped" headers="speciesID" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">https://id.biodiversity.org.au/node/apni/2916905</td>
<td class="gt_row gt_left gt_striped" headers="speciesName" style="text-align: left; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06);" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">Atriplex billardierei</td>
<td class="gt_row gt_right gt_striped" headers="occurrenceCount" style="text-align: right; border-style: none; padding-top: 1.5px; padding-bottom: 1.5px; padding-left: 5px; padding-right: 5px; margin: 10px; border-top-style: solid; border-top-width: 1px; border-top-color: rgba(255, 255, 255, 0); border-left-style: none; border-left-width: 1px; border-left-color: #D3D3D3; border-right-style: none; border-right-width: 1px; border-right-color: #D3D3D3; vertical-align: middle; overflow-x: hidden; background-color: rgba(164, 120, 35, 0.06); font-variant-numeric: tabular-nums;" data-valign="middle" data-bgcolor="rgba(164, 120, 35, 0.06)">1</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<aside class="notes">
<p>So we’ve produced a dataset that comprises counts of species from 1900 onwards, and a number of derived datasets that describe the state of threatened species, invasive species, and the use of protected areas in both terrestrial and marine regions. This is a sample of what the aggregated dataset looks like - there’s information on …. This makes it possible to ask questions at different spatial, temporal, and taxonomic levels. I’ll start with an example of a single species.</p>
<style type="text/css">
span.MJX_Assistive_MathML {
position:absolute!important;
clip: rect(1px, 1px, 1px, 1px);
padding: 1px 0 0 0!important;
border: 0!important;
height: 1px!important;
width: 1px!important;
overflow: hidden!important;
display:block!important;
}</style></aside>
</section>
<section id="CBC" class="slide level2 std-mid" data-menu-title="Channel-billed Cuckoo">
<h2>Channel-billed Cuckoo</h2>
<p><span class="yellow-italics-mid">Scythrops novaehollandiae</span></p>
<p><img data-src="images/cuckoo.png" class="absolute" style="top: 0px; right: 10px; width: 582px; height: 900px; "> <span class="citation">Image from the Biodiversity Heritage Library; contributed by Smithsonian Libraries</span></p>
<aside class="notes">
<p>This is the channel-billed cuckoo, which has a fairly wide distribution across northern and eastern Australia. It’s also the world’s largest brood parasite.</p>
<style type="text/css">
span.MJX_Assistive_MathML {
position:absolute!important;
clip: rect(1px, 1px, 1px, 1px);
padding: 1px 0 0 0!important;
border: 0!important;
height: 1px!important;
width: 1px!important;
overflow: hidden!important;
display:block!important;
}</style></aside>
</section>
<section id="CBC-records" class="slide level2 std" data-menu-title="Channel-billed Cuckoo Records" data-auto-animate="true">
<h2 data-id="quarto-animate-title">Channel-billed Cuckoo</h2>
<img data-src="images/cbc_records.png" class="quarto-figure quarto-figure-center r-stretch"><aside class="notes">
<p>There are just over 69,000 records of CBCs in the dataset, and this figure shows the number of records each year since 1970. There’s a clear upward trend across the years</p>
<style type="text/css">
span.MJX_Assistive_MathML {
position:absolute!important;
clip: rect(1px, 1px, 1px, 1px);
padding: 1px 0 0 0!important;
border: 0!important;
height: 1px!important;
width: 1px!important;
overflow: hidden!important;
display:block!important;
}</style></aside>
</section>
<section id="CBC-regions" class="slide level2 std" data-menu-title="Channel-billed Cuckoo Regions" data-auto-animate="true">
<h2 data-id="quarto-animate-title">Channel-billed Cuckoo</h2>
<p><img data-src="images/cbc_records.png" class="absolute" style="left: 50px; width: 700px; height: 700px; "> <img data-src="images/cbc_regions.png" class="absolute" style="right: 50px; width: 700px; height: 700px; "></p>
<aside class="notes">
<p>We can also look at where the records are from - the figure on the right shows the number of terrestrial bioregions with records, over the same time period. The fact that it’s being seen in an increasing number of regions suggests that the species could be expanding in range.</p>
<style type="text/css">
span.MJX_Assistive_MathML {
position:absolute!important;
clip: rect(1px, 1px, 1px, 1px);
padding: 1px 0 0 0!important;
border: 0!important;
height: 1px!important;
width: 1px!important;
overflow: hidden!important;
display:block!important;
}</style></aside>
</section>
<section id="CBC-range" class="slide level2 std" data-menu-title="Channel-billed Cuckoo Range" data-auto-animate="true">
<h2 data-id="quarto-animate-title">Channel-billed Cuckoo</h2>
<p><img data-src="images/cbc_records.png" class="absolute" style="top: 100px; left: 100px; width: 375px; height: 375px; "> <img data-src="images/cbc_regions.png" class="absolute" style="left: 100px; bottom: 10px; width: 375px; height: 375px; "> <img data-src="images/cbc_range.gif" class="absolute" style="top: 50px; right: 100px; width: 800px; height: 800px; "></p>
<aside class="notes">
<p>If we map this across the five decades, we can get a better idea of where the expansion is occurring - here it looks like the cuckoo is spreading southward. It’s not unusual for individuals to move around, but changes in the range of a species may indicate that species are responding to disturbances like climate change, and these data have the potential to provide some insight into these sorts of species-level changes. We can also use these data to understand what’s happening with groups of species…</p>
<style type="text/css">
span.MJX_Assistive_MathML {
position:absolute!important;
clip: rect(1px, 1px, 1px, 1px);
padding: 1px 0 0 0!important;
border: 0!important;
height: 1px!important;
width: 1px!important;
overflow: hidden!important;
display:block!important;
}</style></aside>
</section>
<section id="invasive-spp" class="slide level2 std" data-menu-title="Invasive Species">
<h2>Invasive and Introduced Species</h2>
<p><img data-src="images/heatmap.png" class="absolute" style="top: 50px; width: 1600px; "></p>
<aside class="notes">
<p>… here I’ve pulled out information on species classified as introduced or invasive. The heatmap shows terrestrial regions in columns, and 5 year time periods in rows. The colours represent the proportion of introduced and invsive species for each segemnt of time and space, relative to the total number of species. The darker colours represent higher proportions. And this can be extended to other regions, like marine bioregions, or other types of species, like threatened species.</p>
<style type="text/css">
span.MJX_Assistive_MathML {
position:absolute!important;
clip: rect(1px, 1px, 1px, 1px);
padding: 1px 0 0 0!important;
border: 0!important;
height: 1px!important;
width: 1px!important;
overflow: hidden!important;
display:block!important;
}</style></aside>
</section>
<section id="pa-01" class="slide level2 std" data-menu-title="Protected Area Network">
<h2>Protected Areas</h2>
<p><img data-src="images/protected_area_map.png" class="absolute" style="top: 50px; left: 50px; width: 1400px; "></p>
<p><span class="blue-italics">not shown: Heard Island and McDonald Islands Marine Reserve</span></p>
<aside class="notes">
<p>These datasets also cross-reference occurrences with regards to the protected area network, which includes the National Reserve System and Marine Protected Areas. This shows the extent of the network, with marine and terrestrial protected areas shown in darker shades.</p>
<style type="text/css">
span.MJX_Assistive_MathML {
position:absolute!important;
clip: rect(1px, 1px, 1px, 1px);
padding: 1px 0 0 0!important;
border: 0!important;
height: 1px!important;
width: 1px!important;
overflow: hidden!important;
display:block!important;
}</style></aside>
</section>
<section id="wrasse" class="slide level2 std" data-menu-title="Comb Wrasse" data-background-image="images/wrasse.png" data-background-size="contain">
<h2>Comb Wrasse</h2>
<p><span class="yellow-italics">Coris picta</span></p>
<p><span class="citation">Image from the Biodiversity Heritage Library; contributed by Harvard University</span></p>
<aside class="notes">
<p>To show how we could use this information, I’ve pulled out records of the comb wrasse. It’s found in coastal and offshore rocky reefs, between southern Queensland to southern New South Wales, and there are just under a thousand records of it in our dataset</p>
<style type="text/css">
span.MJX_Assistive_MathML {
position:absolute!important;
clip: rect(1px, 1px, 1px, 1px);
padding: 1px 0 0 0!important;
border: 0!important;
height: 1px!important;
width: 1px!important;
overflow: hidden!important;
display:block!important;
}</style></aside>
</section>
<section id="pa-02" class="slide level2 std" data-menu-title="Records in Protected Ares">
<h2>Comb Wrasse Records in Protected Areas</h2>
<p><img data-src="images/wrasse_points.png" class="absolute" style="top: 100px; left: 350px; width: 800px; "></p>
<p><img data-src="images/wrasse-circle.png" class="absolute" style="top: 300px; left: 925px; width: 150px; "></p>
<aside class="notes">
<p>Over 60% of those records come from protected areas. To put this in context, the protected area network only covers about 20% of the Australian landmass, which suggests that the wrasse may be dispropotionately using protected areas. More broadly, 12% of all species in our datasets have only ever been recorded in protected areas. So this can be a useful facet to include when we think about how to manage species.</p>
<style type="text/css">
span.MJX_Assistive_MathML {
position:absolute!important;
clip: rect(1px, 1px, 1px, 1px);
padding: 1px 0 0 0!important;
border: 0!important;
height: 1px!important;
width: 1px!important;
overflow: hidden!important;
display:block!important;
}</style></aside>
</section></section>
<section>
<section id="considerations" class="title-slide slide level1 section-break center" data-menu-title="Considerations" data-background-color="#a47823">
<h1>Considerations</h1>
<aside class="notes">
<p>Aggregating millions of records from a diverse range of sources is inevitably going to result in some degree of error, with uneven levels of coverage, completeness, and methodology. Where possible, we’ve tried to compensate for this. There are 2 things in particular that I wanted to highlight today: the first is that we’ve excluded records if an organism was not identified to at least the rank of species, but this biases the data towards taxonomic groups that are well studied. It’s impossible to eliminate this but aggregating records means that the bias should be consistent across regions and time periods.</p>
<style type="text/css">
span.MJX_Assistive_MathML {
position:absolute!important;
clip: rect(1px, 1px, 1px, 1px);
padding: 1px 0 0 0!important;
border: 0!important;
height: 1px!important;
width: 1px!important;
overflow: hidden!important;
display:block!important;
}</style></aside>
</section>
<section id="bor-01" class="slide level2 std" data-menu-title="Collections">
<h2>Record Types</h2>
<img data-src="images/coll.png" class="quarto-figure quarto-figure-center r-stretch"><aside class="notes">
<p>And the second thing to note is that our evidence for the occurrence of a species has also changed over time. For much of the 20th century, this evidence came from museum specimens.</p>
<style type="text/css">
span.MJX_Assistive_MathML {
position:absolute!important;
clip: rect(1px, 1px, 1px, 1px);
padding: 1px 0 0 0!important;
border: 0!important;
height: 1px!important;
width: 1px!important;
overflow: hidden!important;
display:block!important;
}</style></aside>
</section>
<section id="bor-02" class="slide level2 std" data-menu-title="Human Observations">
<h2>Record Types</h2>
<img data-src="images/hobs.png" class="quarto-figure quarto-figure-center r-stretch"><aside class="notes">
<p>More recently, this has changed in favour of human observations, which includes data collected by ecologists, field monitoring programs, and, increasingly, citizen science projects. This has changed the likelihood of a species being recorded. Some species are only ever recorded by specialists working in collections, whereas common species are probably going to be under-recorded in collections.</p>
<style type="text/css">
span.MJX_Assistive_MathML {
position:absolute!important;
clip: rect(1px, 1px, 1px, 1px);
padding: 1px 0 0 0!important;
border: 0!important;
height: 1px!important;
width: 1px!important;
overflow: hidden!important;
display:block!important;
}</style></aside>
</section>
<section id="bor-03" class="slide level2 std" data-menu-title="Machine Observations">
<h2>Record Types</h2>
<img data-src="images/mobs.png" class="quarto-figure quarto-figure-center r-stretch"><aside class="notes">
<p>Another record type is machine observations, which includes images from camera traps and acoustic recordings. These currently make up a small proportion of the overall records, but it’s likely that they will soon become more prevalent. Records in the aggregated datasets we’ve created are separated by the basis of record field, which allows users to make judgements about which types of records to include in any analysis.</p>
<style type="text/css">
span.MJX_Assistive_MathML {
position:absolute!important;
clip: rect(1px, 1px, 1px, 1px);
padding: 1px 0 0 0!important;
border: 0!important;
height: 1px!important;
width: 1px!important;
overflow: hidden!important;
display:block!important;
}</style></aside>
</section>
<section id="ecoassets-url" class="slide level2 links" data-menu-title="EcoAssets URL" data-background-image="images/bckgrnd.png">
<h2></h2>
<div class="columns v-center-container">
<div class="column" style="width:5%;">
</div><div class="column" style="width:50%;">
<p><a href="https://ecoassets.org.au">ecoassets.org.au</a></p>
</div>
</div>
<aside class="notes">
<p>That was a whirlwind tour of many months of work - there’s much much more to the datasets, and if you’d like to check them out yourself, this is the website where they can be downloaded.</p>
<style type="text/css">
span.MJX_Assistive_MathML {