-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbioecoocean-catalogue.jsonld
More file actions
2041 lines (2041 loc) · 89.3 KB
/
bioecoocean-catalogue.jsonld
File metadata and controls
2041 lines (2041 loc) · 89.3 KB
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
{
"@context": [
"https://schema.org/",
{
"@vocab": "https://schema.org/"
}
],
"@graph": [
{
"@context": "https://schema.org/",
"@type": "CreativeWork",
"@id": "https://zenodo.org/record/13911286",
"name": "Data Management Plan by BioEcoOcean - Towards Integrated, FAIR and Inclusive Ocean Data Management",
"identifier": "https://doi.org/10.5281/zenodo.13911286",
"url": "https://zenodo.org/record/13911286",
"datePublished": "2026-01-31",
"creator": [
{
"@type": "Person",
"name": "Lawrence, Elizabeth"
},
{
"@type": "Person",
"name": "Formel, Stephen"
},
{
"@type": "Person",
"name": "Mtwana Nordlund, Lina"
}
],
"keywords": [
"data management plan",
"Horizon Europe",
"essential ocean variables"
],
"license": {
"id": "cc-by-4.0"
}
},
{
"@context": "https://schema.org/",
"@type": "CreativeWork",
"@id": "https://zenodo.org/record/18672397",
"name": "OCEANIS Quick Start guide: A Collaborative Planning tool for Integrated Ocean Action",
"identifier": "https://doi.org/10.5281/zenodo.18672397",
"url": "https://zenodo.org/record/18672397",
"description": "<p><span>A workshop quick start guiding tool to encourage cross-domain thinking and develop action plans</span></p>",
"datePublished": "2026-02-17",
"creator": [
{
"@type": "Person",
"name": "Lawrence, Elizabeth"
},
{
"@type": "Person",
"name": "Nordlund, Lina Mtwana"
}
],
"license": {
"id": "cc-by-4.0"
}
},
{
"@context": "https://schema.org/",
"@type": "CreativeWork",
"@id": "https://zenodo.org/record/18407772",
"name": "Hands On Darwin Core Data Standardization Exercise",
"identifier": "https://doi.org/10.5281/zenodo.18407772",
"url": "https://zenodo.org/record/18407772",
"description": "<p>Instructional materials for a hands-on workshop designed to practice standardizing field biodiversity data to Darwin Core (DwC). The materials include an instructional presentation, a printable exercise where participants manually map data into Darwin Core tables, and a document with completed solutions.</p>",
"datePublished": "2026-01-28",
"creator": [
{
"@type": "Person",
"name": "Lawrence, Elizabeth"
}
],
"keywords": [
"Darwin Core"
],
"license": {
"id": "cc-by-4.0"
}
},
{
"@context": "https://schema.org/",
"@type": "CreativeWork",
"@id": "https://zenodo.org/record/18018256",
"name": "Sensing the Ocean through the Exquisite Corpse ArtScience method",
"identifier": "https://doi.org/10.1525/elementa.2024.00051",
"url": "https://zenodo.org/record/18018256",
"datePublished": "2025-12-22",
"creator": [
{
"@type": "Person",
"name": "Jung, Julia"
},
{
"@type": "Person",
"name": "Cherkasheva, Alexandra"
},
{
"@type": "Person",
"name": "Corporeau, charlotte"
},
{
"@type": "Person",
"name": "Mistry, Jayalaxshmi"
},
{
"@type": "Person",
"name": "Narvaez, Diego"
},
{
"@type": "Person",
"name": "Owens, Dwight"
},
{
"@type": "Person",
"name": "Parrain, Camille"
},
{
"@type": "Person",
"name": "Riddel, David J"
},
{
"@type": "Person",
"name": "Zivian, Anna"
}
],
"license": {
"id": "cc-by-4.0"
}
},
{
"@context": "https://schema.org/",
"@type": "CreativeWork",
"@id": "https://zenodo.org/record/15480849",
"name": "Updated EOV specification sheets",
"identifier": "https://doi.org/10.5281/zenodo.15480849",
"url": "https://zenodo.org/record/15480849",
"datePublished": "2025-05-21",
"creator": [
{
"@type": "Person",
"name": "Lara-Lopez, Ana"
}
],
"license": {
"id": "cc-by-4.0"
}
},
{
"@context": "https://schema.org/",
"@type": "CreativeWork",
"@id": "https://zenodo.org/record/15655871",
"name": "Initial conceptual design of the Blueprint for Integrated Ocean Science",
"identifier": "https://doi.org/10.5281/zenodo.15655871",
"url": "https://zenodo.org/record/15655871",
"description": "<p>The sustainable management and conservation of the ocean depend increasingly on our ability to observe and understand biological and ecosystem processes. While global coordination around physical and biogeochemical ocean observing has advanced significantly over the past decades, biology and ecosystems (BioEco) observations remain fragmented, unevenly<br>implemented, and often disconnected from policy needs. The BioEcoOcean project seeksaddress this gap by developing a Blueprint for Integrated Ocean Science - a practical, co-created support tool to strengthen collaboration, integration, and impact across the ocean observing system.</p>\n<p>This deliverable presents the initial conceptual design of the Blueprint. It is grounded incomprehensive overview of the BioEco ocean observing landscape and informed by several co-creative workshops, where experts critically examined and contributed to the Blueprint components and their interconnections. The results highlighted the need for interoperability,<br>multi-level governance, and meaningful stakeholder engagement, particularly in under-resourced regions.</p>",
"datePublished": "2025-06-16",
"creator": [
{
"@type": "Person",
"name": "Mtwana Nordlund, Lina"
},
{
"@type": "Person",
"name": "Hashim, Said"
},
{
"@type": "Person",
"name": "Lawrence, Elizabeth"
},
{
"@type": "Person",
"name": "Lepola, Nina"
},
{
"@type": "Person",
"name": "Lara-Lopez, Ana"
},
{
"@type": "Person",
"name": "Palacz, Artur"
}
],
"license": {
"id": "cc-by-4.0"
}
},
{
"@context": "https://schema.org/",
"@type": "CreativeWork",
"@id": "https://zenodo.org/record/16630482",
"name": "Novel Monitoring Technologies - an integrated overview of traditional and emerging methods for monitoring marine biodiversity. Deliverable 3.1_BioEcoOcean",
"identifier": "https://doi.org/10.5281/zenodo.16630482",
"url": "https://zenodo.org/record/16630482",
"description": "<p>This report provides an integrated overview of traditional and emerging methods for monitoring marine biodiversity, with emphasis on Essential Ocean Variables (EOVs). Traditional visual sampling methods such as underwater visual census (UVC), quadrat surveys, and net tows have long formed the backbone of biodiversity monitoring, offering high taxonomic resolution and compatibility with historical data.</p>\n<p>Emerging technologies—including environmental DNA (eDNA), imaging combined with Artificial Intelligence (AI) analysis, and remote sensing (satellites and drones)—promise to boost biodiversity observations by increasing spatial and temporal coverage, automating labor-intensive processes, and reducing environmental impact. eDNA enables non-invasive detection of cryptic species, while AI image analysis automates species identification and habitat quantification. Remote platforms such as Unmanned Aerial Vehicles (UAVs) and Remotely Operated Vehicles (ROVs) extend survey capabilities into deep or otherwise inaccessible environments.</p>\n<p>Key findings highlight the strengths and limitations of each method. eDNA excels in sensitivity but faces challenges in assigning species to sampling sites and in abundance estimation. AI imaging supports scalable monitoring, but requires large, annotated training sets. Acoustic methods offer large-scale tracking of biomass via proxies, but they still lack taxonomic precision. Hybrid approaches are emerging as best practice: combining traditional methods with novel tools is necessary for cross-validation and to maximize spatial and temporal coverage. Calibration remains essential, as it requires reference libraries and standardized protocols. The combination of traditional and emerging biodiversity observing technologies aligns with ethical research principles, such as the 3Rs (Replacement, Reduction, Refinement), especially by reducing the impact associated with destructive sampling.</p>\n<p>We recommend adopting integrated monitoring frameworks that combine in situ, genetic, and remote sensing data collection, tailored to the goals and constraints of each project. Supporting policy development and training efforts will be key to mainstreaming these approaches across the EU and global marine monitoring networks.</p>\n<p> </p>\n<div> </div>\n<p> </p>",
"datePublished": "2025-07-31",
"creator": [
{
"@type": "Person",
"name": "Benedetti-Cecchi, Lisandro"
},
{
"@type": "Person",
"name": "Rindi, Luca"
},
{
"@type": "Person",
"name": "McGrath, Alexander"
},
{
"@type": "Person",
"name": "Olatoye, Dolapo Salim"
},
{
"@type": "Person",
"name": "Lüskow, Florian"
},
{
"@type": "Person",
"name": "Lehodey, Patrick"
},
{
"@type": "Person",
"name": "Borges, Débora"
},
{
"@type": "Person",
"name": "Reis, Bianca"
},
{
"@type": "Person",
"name": "Valente, André"
},
{
"@type": "Person",
"name": "Mtwana Nordlund, Lina"
}
],
"license": {
"id": "cc-by-4.0"
}
},
{
"@context": "https://schema.org/",
"@type": "CreativeWork",
"@id": "https://zenodo.org/record/17789946",
"name": "Clustering Event I - Co-production of Policy Recommendations - Bridging Physics and Biology & Ecosystem Ocean Science - Deliverable 6.3",
"identifier": "https://doi.org/10.5281/zenodo.17789946",
"url": "https://zenodo.org/record/17789946",
"datePublished": "2025-12-02",
"creator": [
{
"@type": "Person",
"name": "Karaca, Deniz"
},
{
"@type": "Person",
"name": "Hashim, Said"
},
{
"@type": "Person",
"name": "Benedetti-Cecchi, Lisandro"
},
{
"@type": "Person",
"name": "Lehodey, Patrick"
},
{
"@type": "Person",
"name": "Lepola, Nina"
},
{
"@type": "Person",
"name": "Lüskow, Florian"
},
{
"@type": "Person",
"name": "Lawrence, Elizabeth"
},
{
"@type": "Person",
"name": "Reis, Bianca"
},
{
"@type": "Person",
"name": "Koski, Marja"
},
{
"@type": "Person",
"name": "Kedra, Monika"
},
{
"@type": "Person",
"name": "Poursanidis, Dimitris"
},
{
"@type": "Person",
"name": "McAdam, Ronan"
},
{
"@type": "Person",
"name": "Soares, Joana"
},
{
"@type": "Person",
"name": "Mtwana Nordlund, Lina"
}
],
"license": {
"id": "cc-by-4.0"
}
},
{
"@context": "https://schema.org/",
"@type": "CreativeWork",
"@id": "https://zenodo.org/record/17786843",
"name": "BioEcoOcean Initial Dissemination, Exploitation and Communication Plan Plan - Deliverable 6.2",
"identifier": "https://doi.org/10.5281/zenodo.17786843",
"url": "https://zenodo.org/record/17786843",
"datePublished": "2025-12-02",
"creator": [
{
"@type": "Person",
"name": "Palacz, Artur"
},
{
"@type": "Person",
"name": "Krzymiński, Dominik"
},
{
"@type": "Person",
"name": "Soares, Joana"
},
{
"@type": "Person",
"name": "Karaca, H. Deniz"
},
{
"@type": "Person",
"name": "Lepola, Nina"
},
{
"@type": "Person",
"name": "Mtwana Nordlund, Lina"
}
],
"license": {
"id": "cc-by-4.0"
}
},
{
"@context": "https://schema.org/",
"@type": "CreativeWork",
"@id": "https://zenodo.org/record/17786530",
"name": "BioEcoOcean Project Website - Deliverable 6.1",
"identifier": "https://doi.org/10.5281/zenodo.17786530",
"url": "https://zenodo.org/record/17786530",
"datePublished": "2025-12-02",
"creator": [
{
"@type": "Person",
"name": "Palacz, Artur"
},
{
"@type": "Person",
"name": "Krzymiński, Dominik"
},
{
"@type": "Person",
"name": "Lepola, Nina"
},
{
"@type": "Person",
"name": "Mtwana Nordlund, Lina"
}
],
"license": {
"id": "cc-by-4.0"
}
},
{
"@context": "https://schema.org/",
"@type": "CreativeWork",
"@id": "https://zenodo.org/record/17864822",
"name": "Report of the workshop \"Data Product Development for Modeling Benthic Carbon Processes in the Arctic\"",
"identifier": "https://doi.org/10.5281/zenodo.17864822",
"url": "https://zenodo.org/record/17864822",
"description": "<p>The workshop “Data Product Development for Modelling Benthic Carbon Processes in the Arctic” was held online on 8th and 10th October 2025. It was organised by the EU-funded BioEcoOcean project in collaboration with EU funded projects POMP, SEA-Quester and NECCTON. The workshop gathered experts in Arctic marine biogeochemistry, benthic ecology, and modeling to identify gaps and develop a roadmap for generating benthic carbon data products suitable for model applications. The event consisted of two 3-hour online sessions combining plenary discussions and collaborative group work using Miro boards. In total 30 participants from 15 countries and 20 institutions attended.</p>",
"datePublished": "2025-12-09",
"creator": [
{
"@type": "Person",
"name": "Szczepanek, Marta"
},
{
"@type": "Person",
"name": "Palacz, Artur"
},
{
"@type": "Person",
"name": "Kedra, Monika"
},
{
"@type": "Person",
"name": "Krzymiński, Dominik"
},
{
"@type": "Person",
"name": "Bluhm, Bodil"
},
{
"@type": "Person",
"name": "Dannheim, Jennifer"
},
{
"@type": "Person",
"name": "Gregoire, Marilaure"
}
],
"license": {
"id": "cc-by-4.0"
}
},
{
"@context": "https://schema.org/",
"@type": "CreativeWork",
"@id": "https://zenodo.org/record/17776002",
"name": "Guide on EOVs. Deliverable 2.1_BioEcoOcean",
"identifier": "https://doi.org/10.5281/zenodo.17776002",
"url": "https://zenodo.org/record/17776002",
"description": "<p>The purpose of the Essential Ocean Variables specification guide is to outline and translate the information requested in each field of the EOV specification sheets to facilitate their update and use.</p>\n<p>The process to create this guide included a complete re-structure of the EOV specification sheet template to simplify the information provided. The creation of this new template considered the following:</p>\n<p>1) The audiences it aims to inform, including decision-makers and policymakers, funders, ocean observers, technologists, and data managers.<br>2) The needs of the different expert panels, i.e. physics, biogeochemistry (BGC) and biology and ecosystems panels, who will be using this standardised template<br>3) Simplification of the terminology used to make the information more accessible<br>4) The addition of a thorough metadata and data management section that provides the necessary information to contribute data to global ocean observing.</p>\n<p>From the restructuring of the EOV specification sheet template, an interactive guide (this deliverable) was created. The guide allows users to understand the information within the EOV specification sheets. Further refinements may be undertaken from additional feedback from the BGC and physics expert panels or from within the BioEcoOcean consortium.</p>\n<p> </p>\n<div> </div>\n<p> </p>",
"datePublished": "2025-01-17",
"creator": [
{
"@type": "Person",
"name": "Lara-Lopez, Ana"
},
{
"@type": "Person",
"name": "Lawrence, Elizabeth"
},
{
"@type": "Person",
"name": "Appeltans, Ward"
},
{
"@type": "Person",
"name": "Heslop, Emma"
}
],
"license": {
"id": "cc-by-4.0"
}
},
{
"@context": "https://schema.org/",
"@type": "CreativeWork",
"@id": "https://zenodo.org/record/17779538",
"name": "Revising Carbon Uptake Estimates in the European Arctic with a regional satellite algorithm and BGC-Argo data",
"identifier": "https://doi.org/10.5281/zenodo.17779538",
"url": "https://zenodo.org/record/17779538",
"datePublished": "2025-12-01",
"creator": [
{
"@type": "Person",
"name": "Cherkasheva, Alexandra"
},
{
"@type": "Person",
"name": "Palacz, Artur"
},
{
"@type": "Person",
"name": "Manurov, Rustam"
},
{
"@type": "Person",
"name": "Kowalczuk, Piotr"
},
{
"@type": "Person",
"name": "Loginova, Alexandra"
},
{
"@type": "Person",
"name": "Bracher, Astrid"
}
],
"license": {
"id": "cc-by-4.0"
}
},
{
"@context": "https://schema.org/",
"@type": "CreativeWork",
"@id": "https://zenodo.org/record/17076486",
"name": "The Global Lipid Pump",
"identifier": "https://doi.org/10.5281/zenodo.17076486",
"url": "https://zenodo.org/record/17076486",
"datePublished": "2025-09-08",
"creator": [
{
"@type": "Person",
"name": "Visser, Andre"
},
{
"@type": "Person",
"name": "Jonasdottir, Sigrun"
},
{
"@type": "Person",
"name": "Pinti, Jérôme"
}
],
"license": {
"id": "cc-by-4.0"
}
},
{
"@context": "https://schema.org/",
"@type": "CreativeWork",
"@id": "https://zenodo.org/record/17417069",
"name": "Bridging the Gap: Simplifying Metadata Flows with an EOV Application",
"identifier": "https://doi.org/10.5281/zenodo.17417069",
"url": "https://zenodo.org/record/17417069",
"description": "<p>Presentation given during Living Data 2025 conference, Bogota, Colombia. Presentation was part of the session #6802990 Trust, Traceability & Transparency: Tackling biodiversity data provenance.</p>",
"datePublished": "2025-10-23",
"creator": [
{
"@type": "Person",
"name": "Lawrence, Elizabeth"
}
],
"license": {
"id": "cc-by-4.0"
}
},
{
"@context": "https://schema.org/",
"@type": "CreativeWork",
"@id": "https://zenodo.org/record/17410456",
"name": "From Observation to Impact: Co-created tools emphasize the role of data management in global biodiversity observing systems",
"identifier": "https://doi.org/10.5281/zenodo.17410456",
"url": "https://zenodo.org/record/17410456",
"description": "<p>Presentation given during Living Data 2025 conference, Bogota, Colombia. Presentation was part of the session #6803154 A Global Ocean Biodiversity Observing System supporting governance framework implementation.</p>",
"datePublished": "2025-10-21",
"creator": [
{
"@type": "Person",
"name": "Lawrence, Elizabeth"
},
{
"@type": "Person",
"name": "Mtwana Nordlund, Lina"
}
],
"license": {
"id": "cc-by-4.0"
}
},
{
"@context": "https://schema.org/",
"@type": "CreativeWork",
"@id": "https://zenodo.org/record/17341127",
"name": "Taking advantage of open data in coastal science and conservation",
"identifier": "https://doi.org/10.1016/j.scitotenv.2025.180276",
"url": "https://zenodo.org/record/17341127",
"description": "<p><strong>Abstract</strong><br>Human society relies on, and interacts with, a diverse assortment of organisms and ecological systems, from the local to the global level. Research and management of these coupled social-ecological systems requires data that speaks to the variety of processes, statuses, and situations defined by them. Effective stewardship is enhanced by interdisciplinary thinking and, critically, access to interoperable data describing human society and governance and ecological and environmental conditions. Such approaches are inherently challenging, especially for those without broad training. In this paper, we propose a workflow harnessing the Social-Ecological System Framework to identify, access, and utilize geospatial data from across a spectrum of social and ecological indicators. We demonstrate the application of this workflow using Tropical Indo-Pacific seagrasses as an example system and in doing so, demonstrate the wealth of available open-data which can support an enhanced understanding of social-ecological system dynamics. With this workflow, we provide a readily applicable tool for use by coastal researchers and managers to support more inclusive social-ecological decision making.</p>",
"datePublished": "2025-09-01",
"creator": [
{
"@type": "Person",
"name": "Hoad, Nicholas"
},
{
"@type": "Person",
"name": "Lefcheck, Jonathan"
},
{
"@type": "Person",
"name": "Alexandridis, Nikolaos"
},
{
"@type": "Person",
"name": "Jones, Benjamin Lawrence Hopper"
},
{
"@type": "Person",
"name": "Eklöf, Johan"
},
{
"@type": "Person",
"name": "Mtwana Nordlund, Lina"
}
],
"license": {
"id": "cc-by-4.0"
}
},
{
"@context": "https://schema.org/",
"@type": "CreativeWork",
"@id": "https://zenodo.org/record/17209942",
"name": "Dissemination, Exploitation and Communication Plan",
"identifier": "https://doi.org/10.5281/zenodo.17209942",
"url": "https://zenodo.org/record/17209942",
"datePublished": "2025-07-31",
"creator": [
{
"@type": "Person",
"name": "Palacz, Artur"
},
{
"@type": "Person",
"name": "Krzymiński, Dominik"
},
{
"@type": "Person",
"name": "Soares, Joana"
},
{
"@type": "Person",
"name": "Karaca Halen, Deniz"
},
{
"@type": "Person",
"name": "Lepola, Nina"
},
{
"@type": "Person",
"name": "Mtwana Nordlund, Lina"
}
],
"keywords": [
"DEC Plan"
],
"license": {
"id": "cc-by-4.0"
}
},
{
"@context": "https://schema.org/",
"@type": "CreativeWork",
"@id": "https://zenodo.org/record/10972535",
"name": "Seagrass Synergy: Collaborate for Global Observing and Understanding",
"identifier": "https://doi.org/10.5281/zenodo.10972535",
"url": "https://zenodo.org/record/10972535",
"description": "<p><a href=\"https://goosocean.org/webinars/seagrass-synergy-collaborate-for-global-observing-and-understanding/\" target=\"_blank\" rel=\"noopener\"><strong>Global Ocean Observing System webinar</strong></a></p>\n<p><strong>Presenters:</strong> Lina Mtwana Nordlund and Emmett Duffy</p>\n<p><strong>Date and Time:</strong> 27 March 2024, 15:00 CET</p>\n<p>Join us in envisioning a world with comparable seagrass data across the globe. Explore the journey from the development of the Seagrass Essential Ocean Variable to the importance of standardized measurement, data availability, and the transformative impact of openly accessible seagrass data on global biodiversity indicators. Be part of the conversation as we discuss the evolving landscape of seagrass monitoring, from essential variables and open repositories to global collaborations shaping the future of seagrass research.</p>",
"datePublished": "2024-03-27",
"creator": [
{
"@type": "Person",
"name": "Nordlund, Lina Mtwana"
},
{
"@type": "Person",
"name": "Duffy, J. Emmett"
}
],
"license": {
"id": "cc-by-4.0"
}
},
{
"@context": "https://schema.org/",
"@type": "CreativeWork",
"@id": "https://zenodo.org/record/17106055",
"name": "Advancing ocean observations of marine life through collaboration and integration",
"identifier": "https://doi.org/10.5281/zenodo.17106055",
"url": "https://zenodo.org/record/17106055",
"description": "<p>ABSTRACT: Are you working to understand and protect marine life? Do you think that fragmented data, disconnected initiatives, and communication barriers hold us back? This workshop offers a chance to be part of changing this narrative. Led by the BioEcoOcean project, this interactive session invites you to take an active role in co-creating the Blueprint for Integrated Ocean Science - a pioneering global support tool designed to transform how we observe, understand, and manage marine ecosystems. The Blueprint is not a framework imposed from elsewhere. It is being built collaboratively, and this workshop is a key moment to ensure that the priorities, challenges, and ambitions of early career researchers are also firmly embedded in its design. Through structured discussions, participants will shape a practical tool encouraging communication that strengthens biological and ecosystem observations, connects fragmented efforts, and guides future partnerships, funding strategies, and management actions. The Blueprint will directly support regional and global marine conservation goals, ecosystem-based management, and policy implementation, aligned with frameworks such as the Convention on Biological Diversity and the Sustainable Development Goals. The insights generated here will feed directly into the Blueprint, which will launch in 2027 as an open-access, interactive platform endorsed by the Global Ocean Observing System (GOOS) under IOC-UNESCO. This is your opportunity to ensure that the voice of early career researchers helps lead and define the future of integrated ocean observation. Join us - and be part of building a tool that serves both the region and the world.</p>",
"datePublished": "2025-09-12",
"creator": [
{
"@type": "Person",
"name": "Nordlund, Lina Mtwana"
},
{
"@type": "Person",
"name": "Lepola, Nina"
},
{
"@type": "Person",
"name": "Hashim, Said"
},
{
"@type": "Person",
"name": "Montesano, Valentina"
}
],
"license": {
"id": "cc-by-4.0"
}
},
{
"@context": "https://schema.org/",
"@type": "CreativeWork",
"@id": "https://zenodo.org/record/16928804",
"name": "The Marine Organic Carbon Atlas Living Lab (MOCA)",
"identifier": "https://doi.org/10.5281/zenodo.16928804",
"url": "https://zenodo.org/record/16928804",
"datePublished": "2025-03-11",
"creator": [
{
"@type": "Person",
"name": "Cherkasheva, Alexandra"
},
{
"@type": "Person",
"name": "Draganska-Deja, Katarzyna"
},
{
"@type": "Person",
"name": "Szczepanek, Marta"
},
{
"@type": "Person",
"name": "Szeligowska, Marlena"
},
{
"@type": "Person",
"name": "Palacz, Artur"
}
],
"keywords": [
"Marine Organic Carbon Atlas"
],
"license": {
"id": "cc-by-4.0"
}
},
{
"@context": "https://schema.org/",
"@type": "CreativeWork",
"@id": "https://zenodo.org/record/16928709",
"name": "Marine Organic Carbon Atlas (MOCA) for the Arctic: contributions from EU HE BioEcoOcean & SEA-Quester",
"identifier": "https://doi.org/10.5281/zenodo.16928709",
"url": "https://zenodo.org/record/16928709",
"datePublished": "2024-12-12",
"creator": [
{
"@type": "Person",
"name": "Palacz, Artur"
},
{
"@type": "Person",
"name": "Cherkasheva, Alexandra"
},
{
"@type": "Person",
"name": "Draganska-Deja, Katarzyna"
},
{
"@type": "Person",
"name": "Szczepanek, Marta"
},
{
"@type": "Person",
"name": "Szeligowska, Marlena"
},
{
"@type": "Person",
"name": "Kedra, Monika"
},
{
"@type": "Person",
"name": "Krzymiński, Dominik"
},
{
"@type": "Person",
"name": "GRIGORATOU, MARIA"
}
],
"keywords": [
"Marine Organic Carbon Atlas"
],
"license": {
"id": "cc-by-4.0"
}
},
{
"@context": "https://schema.org/",
"@type": "CreativeWork",
"@id": "https://zenodo.org/record/16928353",
"name": "The Role Of Earth Observations in Developing a Pilot Demonstration of the Marine Organic Carbon Atlas for the Arctic Ocean",
"identifier": "https://doi.org/10.5281/zenodo.16928353",
"url": "https://zenodo.org/record/16928353",
"datePublished": "2025-06-25",
"creator": [
{
"@type": "Person",
"name": "Palacz, Artur"
},
{
"@type": "Person",
"name": "Cherkasheva, Aleksandra"
},
{
"@type": "Person",
"name": "Darecki, Mirosław"
},
{
"@type": "Person",
"name": "Stoń-Egiert, Joanna"
},
{
"@type": "Person",
"name": "Szeligowska, Marlena"
},
{
"@type": "Person",
"name": "Szczepanek, Marta"
},
{
"@type": "Person",
"name": "Telszewski, Maciej"
}
],
"keywords": [
"Marine Organic Carbon Atlas"
],
"license": {
"id": "cc-by-4.0"
}
},
{
"@context": "https://schema.org/",
"@type": "CreativeWork",
"@id": "https://zenodo.org/record/16911238",
"name": "Sequestration by the biological carbon pump: Do we really know what we are talking about?",
"identifier": "https://doi.org/10.1002/lol2.70053",
"url": "https://zenodo.org/record/16911238",
"datePublished": "2025-08-20",
"creator": [
{
"@type": "Person",
"name": "Visser, Andre W"
}
],
"keywords": [
"S-Q WP6"
],
"license": {
"id": "cc-by-4.0"
}
},
{
"@context": "https://schema.org/",
"@type": "CreativeWork",
"@id": "https://zenodo.org/record/15969408",
"name": "Pelagic tunicate assemblages along two latitudinal transects across the Sargasso Sea in spring 2023 – ecology linked to oceanography",
"identifier": "https://doi.org/10.5281/zenodo.15969408",
"url": "https://zenodo.org/record/15969408",
"datePublished": "2025-07-16",
"creator": [
{
"@type": "Person",
"name": "Lüskow, Florian"
},
{
"@type": "Person",
"name": "Blancke, Tina"
},
{
"@type": "Person",
"name": "Freese, Marko"
},
{
"@type": "Person",
"name": "Mańko, Maciej K."
},
{
"@type": "Person",
"name": "Marohn, Lasse"
},
{
"@type": "Person",
"name": "Hanel, Reinhold"
},
{
"@type": "Person",
"name": "Pakhomov, Evgeny"
}
],
"license": {
"id": "cc-by-4.0"
}
},
{
"@context": "https://schema.org/",
"@type": "CreativeWork",
"@id": "https://zenodo.org/record/15855747",
"name": "The immeasurable value of plankton to humanity",
"identifier": "https://doi.org/10.1093/biosci/biaf049",
"url": "https://zenodo.org/record/15855747",
"description": "<p>Abstract</p>\n<p>Plankton, a diverse group of aquatic organisms, make Earth livable, regulate aquatic life, and provide benefits to human societies such as access to clean water, food security, and well-being. They also support economies and inspire biotechnological innovations. This article aims to raise awareness of the value of plankton to humanity and serves as an informative guide for aquatic professionals, policymakers, and anyone interested in plankton. We present the value of plankton across six themes of human interest: biogeochemistry; ecology; climate; the evolution of science; economy; and culture, recreation, and well-being. Guided by the 2022 Intergovernmental Science-Policy Platform on Biodiversity and Ecosystem Services values assessment, we introduce the six themes under the Life Framework of Values to offer a comprehensive summary of the significance of plankton to humanity. In addition, we provide examples of plankton variables used in policy frameworks and recommendations for enhancing understanding of their value through long-term sustainable research and monitoring.</p>",
"datePublished": "2025-06-24",
"creator": [
{
"@type": "Person",
"name": "GRIGORATOU, MARIA"
},
{
"@type": "Person",
"name": "Menden-Deuer, Susanne"
},
{
"@type": "Person",
"name": "McQuatters-Gollop, Abigail"
},
{
"@type": "Person",
"name": "Arhonditsis, George"
},
{
"@type": "Person",
"name": "Artigas, Luis Felipe"
},
{
"@type": "Person",
"name": "Ayata, Sakina-Dorothée"
},
{
"@type": "Person",
"name": "Bedikoğlu, Dalida"
},
{
"@type": "Person",
"name": "Beisner, Beatrix"
},
{
"@type": "Person",
"name": "Chen, Bingzhang"
},
{
"@type": "Person",
"name": "davies, claire"
},
{
"@type": "Person",
"name": "Diarra, Lillian"
},
{
"@type": "Person",
"name": "Elegbeleye, Owoyemi W"
},
{
"@type": "Person",
"name": "Everett, Jason D."
},
{
"@type": "Person",
"name": "Garcia, Tatiane M."
},
{
"@type": "Person",
"name": "Gentleman, Wendy C."
},
{
"@type": "Person",
"name": "Gonçalves, Rodrigo Javier"
},
{
"@type": "Person",
"name": "Guy-Haim, Tamar"
},
{
"@type": "Person",
"name": "Halfter, Svenja"
},
{
"@type": "Person",
"name": "Hinners, Jana"
},
{
"@type": "Person",
"name": "Horaeb, Richard R."
},
{
"@type": "Person",
"name": "Huggett, Jenny A."
},
{
"@type": "Person",
"name": "Johnson, Catherine L."
},
{
"@type": "Person",
"name": "Kavanaugh, Maria T."
},
{
"@type": "Person",
"name": "Lindemann, Christian"
},
{
"@type": "Person",