-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.xml
More file actions
1476 lines (1240 loc) · 123 KB
/
index.xml
File metadata and controls
1476 lines (1240 loc) · 123 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
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Global freshwater biodiversity research</title>
<link>https://glowabio.org/</link>
<atom:link href="https://glowabio.org/index.xml" rel="self" type="application/rss+xml" />
<description>Global freshwater biodiversity research</description>
<generator>Wowchemy (https://wowchemy.com)</generator><language>en-us</language><lastBuildDate>Mon, 28 Jul 2025 00:00:00 +0000</lastBuildDate>
<image>
<url>https://glowabio.org/media/icon_huf2b89bb3aeddaf27bedd36282c847631_693_512x512_fill_lanczos_center_3.png</url>
<title>Global freshwater biodiversity research</title>
<link>https://glowabio.org/</link>
</image>
<item>
<title>Contact</title>
<link>https://glowabio.org/contact/</link>
<pubDate>Fri, 27 May 2022 00:00:00 +0200</pubDate>
<guid>https://glowabio.org/contact/</guid>
<description><p>We constantly seek possible collaborations regarding interesting projects, novel methods, data, and publications in spatial freshwater biodiversity science and beyond. Please do not hesitate to <a href="mailto:sami.domisch@igb-berlin.de?subject=[glowabio]%20contact">contact us</a> to discuss further details.
<br/></p>
<p><strong>Join the group?</strong></p>
<p>Are you interested in joining the group? We are looking for motivated candidates across the Master, PhD and Postdoc levels.
If you are interested please <a href="mailto:sami.domisch@igb-berlin.de?subject=[glowabio]%20contact">drop us a line</a> indicating your research interests &amp; plans and we can discuss how to move things further and seek for possible funding opportunities.</p>
<br/>
<p>We use, beside R, largely open-source (command-line) GIS tools within the Linux environment that facilitate handling and analyzing large datasets (see also some of the tools <a href="https://glowabio.org/data_code/open-source-gis">here</a>). We consider a good understanding, or alternatively, a great motivation to learn such tools &amp; techniques as a prerequisite to join the group.</p>
<br/>
<hr>
<p><strong>Contact information:</strong></p>
<p>Dr. Sami Domisch<br>
Leibniz Institute of Freshwater Ecology and Inland Fisheries<br>
Department of Community and Ecosystem Ecology <br/>
Müggelseedamm 301<br>
D-12587 Berlin<br>
Germany</p>
<p>E-mail: <a href="mailto:sami.domisch@igb-berlin.de">sami.domisch@igb-berlin.de</a><br>
Phone: +49 (0) 30 6392 4079</p>
</description>
</item>
<item>
<title>The hidden dimensions of biodiversity</title>
<link>https://glowabio.org/publication/2025_domisch_the_hidden_dimensions/</link>
<pubDate>Mon, 28 Jul 2025 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/publication/2025_domisch_the_hidden_dimensions/</guid>
<description></description>
</item>
<item>
<title>Environment90m - globally standardized environmental variables for spatial freshwater biodiversity science at high spatial resolution</title>
<link>https://glowabio.org/publication/2025_garcia_marquez_environment90m/</link>
<pubDate>Fri, 11 Jul 2025 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/publication/2025_garcia_marquez_environment90m/</guid>
<description></description>
</item>
<item>
<title>Comparative phylogeography of Himalopsyche (Trichoptera, Rhyacophilidae) in the Tibeto-Himalayan Region: An assessment of the mountain-geobiodiversity hypothesis</title>
<link>https://glowabio.org/publication/2025_deng_comparative_phylogeography_of/</link>
<pubDate>Mon, 07 Jul 2025 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/publication/2025_deng_comparative_phylogeography_of/</guid>
<description></description>
</item>
<item>
<title>Freshwater biodiversity is not adequately addressed in current protected areas</title>
<link>https://glowabio.org/publication/2025_torres-cambas_freshwater_biodiversity_is_not_adequately/</link>
<pubDate>Mon, 07 Jul 2025 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/publication/2025_torres-cambas_freshwater_biodiversity_is_not_adequately/</guid>
<description></description>
</item>
<item>
<title>Protected areas promote ecological recovery in degraded European rivers</title>
<link>https://glowabio.org/publication/2025_sinclair_protected_areas_promote/</link>
<pubDate>Mon, 07 Jul 2025 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/publication/2025_sinclair_protected_areas_promote/</guid>
<description></description>
</item>
<item>
<title>The spatial discrepancy between Colombian freshwater fish suitable habitats and existing protected areas</title>
<link>https://glowabio.org/publication/2025_tomiczek_protected_areas_in_a_neotropical/</link>
<pubDate>Mon, 07 Jul 2025 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/publication/2025_tomiczek_protected_areas_in_a_neotropical/</guid>
<description></description>
</item>
<item>
<title>Optimizing river restoration: A multi-scenario approach to barrier removal prioritization</title>
<link>https://glowabio.org/publication/2025_optimizing_river_restoration/</link>
<pubDate>Tue, 01 Jul 2025 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/publication/2025_optimizing_river_restoration/</guid>
<description></description>
</item>
<item>
<title>Complex Life Cycles Shape the Functional Biogeography of European Dragonflies</title>
<link>https://glowabio.org/publication/2025_iversen_complex_life_cycles/</link>
<pubDate>Sun, 01 Jun 2025 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/publication/2025_iversen_complex_life_cycles/</guid>
<description></description>
</item>
<item>
<title>Encouraging reusability of computational research through Data-to-Knowledge Packages - A hydrological use case</title>
<link>https://glowabio.org/publication/2025_konkol_encouraging_reusability_of/</link>
<pubDate>Thu, 01 May 2025 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/publication/2025_konkol_encouraging_reusability_of/</guid>
<description></description>
</item>
<item>
<title>The Scale-Dependency in Freshwater Habitat Regionalisation Analyses</title>
<link>https://glowabio.org/publication/2025_schuerz-the_scale-dependency_in/</link>
<pubDate>Tue, 01 Apr 2025 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/publication/2025_schuerz-the_scale-dependency_in/</guid>
<description></description>
</item>
<item>
<title>Evaluating Environmental Predictors of Fish Community Composition in a Semi-Arid River System Using a Model-Based Approach</title>
<link>https://glowabio.org/publication/2025_zare_evaluating_fish_community_composition/</link>
<pubDate>Mon, 03 Feb 2025 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/publication/2025_zare_evaluating_fish_community_composition/</guid>
<description></description>
</item>
<item>
<title>A spatial inventory of freshwater macroinvertebrate occurrences in the Guineo-Congolian biodiversity hotspot</title>
<link>https://glowabio.org/publication/2025_akindele_a_spatial-inventory_of/</link>
<pubDate>Fri, 03 Jan 2025 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/publication/2025_akindele_a_spatial-inventory_of/</guid>
<description></description>
</item>
<item>
<title>Environmental effects of the Kakhovka Dam destruction by warfare in Ukraine</title>
<link>https://glowabio.org/publication/2025_shumilova_a_farewell_to_dams/</link>
<pubDate>Fri, 03 Jan 2025 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/publication/2025_shumilova_a_farewell_to_dams/</guid>
<description></description>
</item>
<item>
<title>Evaluating the readiness for river barrier removal: A scoping review under the EU nature restoration law</title>
<link>https://glowabio.org/publication/2025_darre-evaluating_the_readiness/</link>
<pubDate>Wed, 01 Jan 2025 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/publication/2025_darre-evaluating_the_readiness/</guid>
<description></description>
</item>
<item>
<title>Western Balkans amphibian biodiversity facets</title>
<link>https://glowabio.org/project/western_balkans_amphibians/</link>
<pubDate>Tue, 01 Oct 2024 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/project/western_balkans_amphibians/</guid>
<description><p><strong>Mapping the complementary amphibian biodiversity facets across the Western Balkans</strong></p>
<div class="alert alert-note">
<div>
<p>You can be part of this project!</p>
<p>We are looking for species occurrence data for the following countries:
Greece, Macedonia, Montenegro, Bosnia &amp; Herzegovina, Serbia, Bulgaria, Romania, Croatia, Slovenia and Hungary</p>
<p>If you wish to help by providing data, please contact: <a href="mailto:kristi.bego@igb-berlin.de">kristi.bego@igb-berlin.de</a></p>
</div>
</div>
<p>Freshwater ecosystems cover less than one percent of the Earth&rsquo;s surface but house over 12% of all recorded species, and over 33% of vertebrates. The services provided by these ecosystems are invaluable, and yet there is an ongoing freshwater crisis that has been slowly building up over the years as water demand continues to grow. As a result there has been a continuous decline in freshwater vertebrate populations since the 1970s, a trend which is still on a downward slope. Among vertebrates, amphibians stand out globally as the most threatened vertebrate group according to IUCN (2020), however they don&rsquo;t receive the same conservation attention and often get overlooked, as is the case with amphibians still not being included in the EU Water Framework Directive.</p>
<p>The Western Balkans is often regarded as a biodiversity hotspot, with amphibians representing a key biodiversity group for this region. It is home to 29 amphibian species, including endemic and protected species, with countries like Croatia hosting 25% of all european amphibian species. The typical threats to populations in the Balkans are habitat destruction, alteration and fragmentation, pollution, UV-B radiation, disease, introduced species, exploitation, climate change and more. This emphasizes the conservation interest in amphibians of the Balkan region as a whole.</p>
<p>In this project we will be studying the spatial species and functional diversity patterns of amphibians in the Western Balkan biodiversity hotspot. We will evaluate the spatial similarity and uniqueness of these diversity patterns by investigating both local connectivity and upstream/downstream connectivity at the same time. We also aim to identify possible priority conservation areas, by highlighting areas where these biodiversity facets can be spatially prioritized. Essentially, we wish to know how congruent amphibian species and functional diversity patterns are between them, and how contigent are spatial prioritization areas on species &amp; functional diversity patterns.</p>
<p>To this end, we will map the species distributions of all amphibian species found in the Western Balkan region, utilizing species distribution models based on existing occurrence records. These network-based distribution models will account for connectivity among other key environmental factors to map suitable habitats for amphibians in the Western Balkans. We expect patterns of species distribution and range size to emerge across the hydrographic network of the region. Building upon the distribution models, we will investigate and map the functional trait diversity and uniqueness of amphibians in the region, to uncover possible patterns of functional drainage endemism. Finally, we will combine both of these approaches through a spatial prioritization framework to analyze hotspots of conservation importance in the Western Balkan region.</p>
<p>Ultimately through this project we expect to shed more light and broaden our understanding of the intricate environmental interactions and dynamics of amphibian populations of the Western Balkans biodiversity hotspot. We hope that the findings presented by our project will open the door to more discussions on bettering global conservation efforts, highlighting the importance and conservation interest of amphibians as a vertebrate group, as well as providing a baseline for spatial prioritization with the purpose of increasing the efficiency of said conservation efforts.</p>
<p>As we prepare data and vizualizations, they will be added to this page throughout the development of the project.</p>
<p><br/><br/></p>
</description>
</item>
<item>
<title>Disentangling spatio-temporal impacts of multiple environmental factors on the global discharge regime</title>
<link>https://glowabio.org/publication/2024_vu_disentangling_spatio-temporal_impacts/</link>
<pubDate>Thu, 01 Aug 2024 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/publication/2024_vu_disentangling_spatio-temporal_impacts/</guid>
<description></description>
</item>
<item>
<title>GeoFRESH – an online platform for freshwater geospatial data processing</title>
<link>https://glowabio.org/publication/2024_domisch_geofresh_an-online_platform/</link>
<pubDate>Thu, 01 Aug 2024 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/publication/2024_domisch_geofresh_an-online_platform/</guid>
<description></description>
</item>
<item>
<title>A modelling approach to assess climate change impacts on taxonomic and functional diversity of European stream macroinvertebrates: Implications for water quality monitoring</title>
<link>https://glowabio.org/publication/2024_polazzo_modelling_climate_change/</link>
<pubDate>Mon, 01 Jul 2024 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/publication/2024_polazzo_modelling_climate_change/</guid>
<description></description>
</item>
<item>
<title>Time series of freshwater macroinvertebrate abundances and site characteristics of European streams and rivers</title>
<link>https://glowabio.org/publication/2024_welti_time_series_of_freshwater/</link>
<pubDate>Sat, 01 Jun 2024 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/publication/2024_welti_time_series_of_freshwater/</guid>
<description></description>
</item>
<item>
<title>The relationships between biotic uniqueness and abiotic uniqueness are context dependent across drainage basins worldwide</title>
<link>https://glowabio.org/publication/2024_snare_the_relationships_between_biotic/</link>
<pubDate>Wed, 01 May 2024 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/publication/2024_snare_the_relationships_between_biotic/</guid>
<description></description>
</item>
<item>
<title>300 years of past and future changes for native fish species in the upper Danube River Basin– historical flow alterations versus future climate change</title>
<link>https://glowabio.org/publication/2024_friedrichs-manthay_modelling_300_years/</link>
<pubDate>Thu, 01 Feb 2024 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/publication/2024_friedrichs-manthay_modelling_300_years/</guid>
<description></description>
</item>
<item>
<title>Downscaling future land cover scenarios for freshwater fish distribution models under climate change</title>
<link>https://glowabio.org/publication/2024_brunner_downscaling_future_landcover/</link>
<pubDate>Mon, 01 Jan 2024 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/publication/2024_brunner_downscaling_future_landcover/</guid>
<description></description>
</item>
<item>
<title>hydrographr: an R package for scalable hydrographic data processing</title>
<link>https://glowabio.org/publication/2023_schurz_grigoropoulou_hydrograpr_scalable_hydrgraphic/</link>
<pubDate>Wed, 01 Nov 2023 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/publication/2023_schurz_grigoropoulou_hydrograpr_scalable_hydrgraphic/</guid>
<description></description>
</item>
<item>
<title>The recovery of European freshwater biodiversity has come to a halt</title>
<link>https://glowabio.org/publication/2023_haase_the_recovery_of_/</link>
<pubDate>Tue, 01 Aug 2023 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/publication/2023_haase_the_recovery_of_/</guid>
<description></description>
</item>
<item>
<title>Freshwater habitat regionalization</title>
<link>https://glowabio.org/project/regionalization/</link>
<pubDate>Sat, 01 Jul 2023 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/project/regionalization/</guid>
<description><div class="alert alert-note">
<div>
<p>See the online maps of the six drainage basins:</p>
<p><strong>&raquo; <a href="https://geo.igb-berlin.de/maps/719/view" target="_blank" rel="noopener">Click here for the visualization</a> &laquo;</strong></p>
</div>
</div>
<p>Freshwater habitats and biodiversity require efficient protection measures calling for detailed information regarding the spatial distribution of freshwater environmental characteristics. We developed a data-driven approach to identify environmental characteristics and similarities between freshwater habitats at high-resolution and across large spatial scales. We aggregated land cover, geomorphological and climatic variables across the sub-catchments of the Hydrography90m dataset in six drainage basins across continents and climatic zones. We then employed a k-means cluster analysis and tested the effect of (i) spatial scale, (ii) the choice of environmental variables, and (iii) the combination of scale and variables, on the resulting habitat regionalization.</p>
<p>Our manuscript is in preparation and the following map shows the results of the six drainage basins (<a href="https://geo.igb-berlin.de/maps/719/view" target="_blank" rel="noopener">click here for the fullscreen interactive map</a>):</p>
<div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
<iframe src="https://geo.igb-berlin.de/maps/719/embed" min-width : 900px ; style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="Regionalization analysis" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
<div style="text-align: right"> CC BY-NC 4.0 </div>
<br/><br/>
</description>
</item>
<item>
<title>Terrestrial and Freshwater Ecosystems and Their Services</title>
<link>https://glowabio.org/publication/2023_parmesan_ipcc/</link>
<pubDate>Thu, 29 Jun 2023 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/publication/2023_parmesan_ipcc/</guid>
<description></description>
</item>
<item>
<title>Guineo-Congolian freshwater biodiversity</title>
<link>https://glowabio.org/project/guineo-congolian_biodiversity/</link>
<pubDate>Wed, 07 Jun 2023 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/project/guineo-congolian_biodiversity/</guid>
<description><p><strong>Assessing the Freshwater Biodiversity Hotspots in West Africa and the Congo Basin</strong></p>
<div class="alert alert-note">
<div>
<p>See the online map of the new database on freshwater macroinvertebrates in the Guineo-Congolian Biodiversity Hotspot:</p>
<p><strong>&raquo; <a href="https://geo.igb-berlin.de/maps/901/view" target="_blank" rel="noopener">Click here for the visualization</a> &laquo;</strong></p>
</div>
</div>
<p>The West Africa sub-region and the Congo Basin, the latter extending from Cameroon to Gabon, are two of the eight biodiversity hotspots on the African continent. The hotspots are incredibly endowered with many rare and threatened species, and outstanding freshwater systems, of which relatively few have been documented for freshwater biodiversity to date. This suggests that the freshwater ecosystems of conservation importance may be grossly underreported in these regions. This research hinges on the concept that the loss of some threatened freshwater invertebrates and freshwater ecosystems of high conservation value may be inevitable in West Africa and the Congo Basin, unless the actual and potential distributions of such species or sites are discovered.</p>
<p>An extensive database of all available stream macroinvertebrate species occurrence records from different eco-regions of Nigeria will be prepared. We will employ open-source software such as GRASS-GIS and R to estimate the actual or potential geographical distribution of species across a newly-developed, high-resolution hydrographic network to assess biogeographic patterns of freshwater biodiversity in this unique hotspot. We will also build on the model and use future climate and land cover predictions to obtain an estimate of how species distributions might be impacted by global change. The findings of this research have a very high potential to depict the present and probable future status of Nigeria&rsquo;s freshwater biodiversity and to guide conservation efforts.</p>
<p>Our data paper is in preparation and the following map shows the 8809 records we&rsquo;ve collated (<a href="https://geo.igb-berlin.de/maps/901/view" target="_blank" rel="noopener">click here for the fullscreen interactive map</a>):</p>
<div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
<iframe src="https://geo.igb-berlin.de/maps/901/embed" min-width : 900px ; style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="Guineo-Congolian species data" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
<div style="text-align: right"> CC BY-NC 4.0 </div>
<br/><br/>
</description>
</item>
<item>
<title>The GeoFRESH online platform</title>
<link>https://glowabio.org/project/geofresh/</link>
<pubDate>Tue, 06 Jun 2023 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/project/geofresh/</guid>
<description><!--- [](https://github.com/glowabio/hydrographr) -->
<p>We have developed the GeoFRESH online platform, available at <a href="http://geofresh.org/" target="_blank" rel="noopener">http://geofresh.org/</a> that supports point data processing across the global river network by providing a set of spatial tools. GeoFRESH was a one-year pilot project funded by <a href="https://www.nfdi4earth.de/" target="_blank" rel="noopener">NFDI4Earth</a> (DFG) and IGB.</p>
<p>GeoFRESH allows to</p>
<ul>
<li>map your points,</li>
<li>move points to the nearest stream network segment,</li>
<li>delineate upstream catchments of each point,</li>
<li>extract a suite of environmental attributes across the catchment,</li>
<li>and download the data for further analyses.</li>
</ul>
<p>
<figure >
<div class="d-flex justify-content-center">
<div class="w-100" ><img alt="&amp;ldquo;NFDI&amp;rdquo;" srcset="
/media/nfdi4earth_hud6e42d14738cf3fc3f882aaa49eb782c_19018_a5068d035bc65c3cd895c487e52cd240.webp 400w,
/media/nfdi4earth_hud6e42d14738cf3fc3f882aaa49eb782c_19018_ae57e850a21fdfa41ebcd1c05b329ba4.webp 760w,
/media/nfdi4earth_hud6e42d14738cf3fc3f882aaa49eb782c_19018_1200x1200_fit_q75_h2_lanczos_3.webp 1200w"
src="https://glowabio.org/media/nfdi4earth_hud6e42d14738cf3fc3f882aaa49eb782c_19018_a5068d035bc65c3cd895c487e52cd240.webp"
width="524"
height="133"
loading="lazy" data-zoomable /></div>
</div></figure>
</p>
</description>
</item>
<item>
<title>The hydrographr R-package</title>
<link>https://glowabio.org/project/hydrographr/</link>
<pubDate>Mon, 05 Jun 2023 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/project/hydrographr/</guid>
<description><!--- [](https://github.com/glowabio/hydrographr) -->
<p>We have developed the <em>hydrographr</em> R-Package that facilitates the download and data processing of the <a href="https://hydrography.org/hydrography90m/hydrography90m_layers/" target="_blank" rel="noopener">Hydrography90m</a> data (which can be visualized at the <a href="https://geo.igb-berlin.de/maps/351/view" target="_blank" rel="noopener">IGB-GeoNode</a>). The package is maintained at <a href="https://github.com/glowabio/hydrographr" target="_blank" rel="noopener">https://github.com/glowabio/hydrographr</a>, the installation procedure is available <a href="https://glowabio.github.io/hydrographr/articles/hydrographr.html" target="_blank" rel="noopener">here</a>, and the publication in <em>Methods in Ecology and Evolution</em> can be found <a href="https://doi.org/10.1111/2041-210X.14226" target="_blank" rel="noopener">here</a>.</p>
<p><em>hydrographr</em> provides functions to allow scalable hydrographical data extraction and analysis workflows. The R-functions are wrappers around the open-source geospatial GDAL and GRASS-GIS software that run in the Linux environment and enable fast and memory-efficient data processing.</p>
<p>We will soon upload a vignette that showcases the functionality of <em>hydrographr</em>. In the meantime, feel free to explore the package and drop us a line <a href="https://github.com/glowabio/hydrographr/issues" target="_blank" rel="noopener">here</a> if you have any questions.</p>
<p>We thank <a href="https://www.nfdi4biodiversity.org" target="_blank" rel="noopener">NFDI4Biodiversity</a> and <a href="https://www.nfdi4earth.de/" target="_blank" rel="noopener">NFDI4Earth</a> for providing the funding that helped us getting the <em>hydrographr</em> package together!</p>
<p>
<figure >
<div class="d-flex justify-content-center">
<div class="w-100" ><img alt="&amp;ldquo;NFDI&amp;rdquo;" srcset="
/media/nfdi_logos_hufb5cb9b4ad08fee6af8f5d20f6c9360c_44205_3d803bde523d36f68e02deb5d4f9ee03.webp 400w,
/media/nfdi_logos_hufb5cb9b4ad08fee6af8f5d20f6c9360c_44205_b082aa6699a43c1e3b634bfc5f7a721e.webp 760w,
/media/nfdi_logos_hufb5cb9b4ad08fee6af8f5d20f6c9360c_44205_1200x1200_fit_q75_h2_lanczos_3.webp 1200w"
src="https://glowabio.org/media/nfdi_logos_hufb5cb9b4ad08fee6af8f5d20f6c9360c_44205_3d803bde523d36f68e02deb5d4f9ee03.webp"
width="760"
height="98"
loading="lazy" data-zoomable /></div>
</div></figure>
</p>
</description>
</item>
<item>
<title>A database of freshwater macroinvertebrate occurrence records across Cuba</title>
<link>https://glowabio.org/publication/2023_torres_a_database_of_freshwater/</link>
<pubDate>Thu, 01 Jun 2023 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/publication/2023_torres_a_database_of_freshwater/</guid>
<description></description>
</item>
<item>
<title>Developing an online infrastructure</title>
<link>https://glowabio.org/project/aquainfra/</link>
<pubDate>Thu, 01 Jun 2023 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/project/aquainfra/</guid>
<description><p><strong>The AquaInfra Project - <a href="https://aquainfra.eu/" target="_blank" rel="noopener">https://aquainfra.eu/</a></strong></p>
<p>The AquaINFRA project aims to develop a virtual environment equipped with FAIR multi-disciplinary data and services to support marine and freshwater scientists and stakeholders restoring healthy oceans, seas, coastal and inland waters. The AquaINFRA virtual environment will enable the target stakeholders to store, share, access, analyse and process research data and other research digital objects from their own discipline, across research infrastructures, disciplines and national borders leveraging on EOSC and the other existing operational dataspaces. Besides supporting the ongoing development of the EOSC as an overarching research infrastructure, AquaINFRA is addressing the specific need for enabling researchers from the marine and freshwater communities to work and collaborate across those two domains.</p>
<p>A specific goal of AquaINFRA will be to develop an EOSC based research infrastructure combining the marine and freshwater domains, which will include the development of a cross domain and cross-country search and discovery mechanism as well as building services for spatio-temporal analysis and modelling through Virtual Research Environments. A set of strategic use cases including a Pan-European use case as well as more focused use cases in the Baltic Sea, the North Sea and the Mediterranean will provide the setting for co-designing and testing services in the targeted research communities.</p>
<p>The AquaINFRA project results are expected to contribute to the utilisation of EOSC as an overarching research infrastructure enabling collaboration across the domains of marine and freshwater scientists and stakeholders working on restoring of healthy oceans, seas, coastal and inland waters.</p>
<p>Check out the project website at <a href="https://aquainfra.eu/" target="_blank" rel="noopener">https://aquainfra.eu/</a> for more information.</p>
<p>
<figure >
<div class="d-flex justify-content-center">
<div class="w-100" ><img alt="AquaINFRA" srcset="
/media/eosc_aquainfra_logo_hu330ee25b97e12b78f57db6dc212df921_7071_6a7ca8f4535d7ef8820b12e3b5481148.webp 400w,
/media/eosc_aquainfra_logo_hu330ee25b97e12b78f57db6dc212df921_7071_e7c457a84b3963a2839e1093804bc839.webp 760w,
/media/eosc_aquainfra_logo_hu330ee25b97e12b78f57db6dc212df921_7071_1200x1200_fit_q75_h2_lanczos_3.webp 1200w"
src="https://glowabio.org/media/eosc_aquainfra_logo_hu330ee25b97e12b78f57db6dc212df921_7071_6a7ca8f4535d7ef8820b12e3b5481148.webp"
width="80%"
height="68"
loading="lazy" data-zoomable /></div>
</div></figure>
<figure >
<div class="d-flex justify-content-center">
<div class="w-100" ><img alt="EU" srcset="
/media/EN_FundedbytheEU_RGB_POS_hu267502184c4df6851ee51303a763ebc9_62745_a7133d34f03611952666b72acc802815.webp 400w,
/media/EN_FundedbytheEU_RGB_POS_hu267502184c4df6851ee51303a763ebc9_62745_12a9843b39971988e18366ebcdbb1891.webp 760w,
/media/EN_FundedbytheEU_RGB_POS_hu267502184c4df6851ee51303a763ebc9_62745_1200x1200_fit_q75_h2_lanczos_3.webp 1200w"
src="https://glowabio.org/media/EN_FundedbytheEU_RGB_POS_hu267502184c4df6851ee51303a763ebc9_62745_a7133d34f03611952666b72acc802815.webp"
width="80%"
height="169"
loading="lazy" data-zoomable /></div>
</div></figure>
The AquaINFRA has received funding from the European Commission’s Horizon Europe Research and Innovation programme under grant agreement No 101094434.</p>
</description>
</item>
<item>
<title>Safe operating space for water resources</title>
<link>https://glowabio.org/project/sos_water/</link>
<pubDate>Thu, 01 Jun 2023 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/project/sos_water/</guid>
<description><p><strong>The SOS-Water Project - <a href="https://sos-water.eu/" target="_blank" rel="noopener">https://sos-water.eu/</a></strong></p>
<p>Pressure on water resources has been mounting in the last decades and continues to grow worldwide, driven by increasing demand for food and energy, improving standards of living and complicated by regional water governance and climate change.</p>
<p>SOS-Water is a EU-funded project, started in October 2022, which aims to define a safe operating space (SOS) for the water resources, accounting concurrently for all relevant water dimensions across multiple sectors and spatial scales under the influence of socio-economic, policy, technological, and climatic changes.</p>
<p>This framework aims to operationalize and downscale the global freshwater SOS to the continental and river basin levels, by integrating water system models (WSMs) in five different case studies in Europe and abroad.</p>
<p>Check out the project website at <a href="https://sos-water.eu" target="_blank" rel="noopener">https://sos-water.eu</a> for more information.</p>
<p>
<figure >
<div class="d-flex justify-content-center">
<div class="w-100" ><img alt="EU" srcset="
/media/EN_FundedbytheEU_RGB_POS_hu267502184c4df6851ee51303a763ebc9_62745_a7133d34f03611952666b72acc802815.webp 400w,
/media/EN_FundedbytheEU_RGB_POS_hu267502184c4df6851ee51303a763ebc9_62745_12a9843b39971988e18366ebcdbb1891.webp 760w,
/media/EN_FundedbytheEU_RGB_POS_hu267502184c4df6851ee51303a763ebc9_62745_1200x1200_fit_q75_h2_lanczos_3.webp 1200w"
src="https://glowabio.org/media/EN_FundedbytheEU_RGB_POS_hu267502184c4df6851ee51303a763ebc9_62745_a7133d34f03611952666b72acc802815.webp"
width="80%"
height="169"
loading="lazy" data-zoomable /></div>
</div></figure>
This project has received funding from European Union’s Horizon EUROPE Research and Innovation Programme under Grant Agreement N° 101059264 (SOS-WATER).</p>
</description>
</item>
<item>
<title>The Global EPTO Database: worldwide occurrences of aquatic insects</title>
<link>https://glowabio.org/publication/2023_grigoropoulou_the_epto_database/</link>
<pubDate>Wed, 01 Mar 2023 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/publication/2023_grigoropoulou_the_epto_database/</guid>
<description></description>
</item>
<item>
<title>EPTO database</title>
<link>https://glowabio.org/project/epto_database/</link>
<pubDate>Fri, 27 Jan 2023 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/project/epto_database/</guid>
<description><div class="alert alert-note">
<div>
<p>Our EPTO data paper has been published in <em>Global Ecology and Biogeography</em> ! Many thanks again to all co-authors and data providers for putting this together!</p>
<p><strong>&raquo; <a href="https://onlinelibrary.wiley.com/doi/full/10.1111/geb.13648" target="_blank" rel="noopener">Click here to read the publication</a> &laquo;</strong></p>
<p><strong>&raquo; <a href="https://doi.org/10.18728/igb-fred-837.4" target="_blank" rel="noopener">Click here to download the data</a> &laquo;</strong></p>
<p><strong>&raquo; <a href="https://geo.igb-berlin.de/maps/621/view" target="_blank" rel="noopener">Click here for the visualization</a> &laquo;</strong></p>
</div>
</div>
<p>Global biodiversity is declining rapidly worldwide, and among terrestrial, marine and freshwater ecosystems, freshwaters are particularly vulnerable. These fragmented ecosystems cover less than 1% of the Earth’s surface, yet they harbour approximately 10% of all described species.
Aquatic insects contribute to freshwater diversity by approximately 60% as the largest and most diverse taxa group, and given this substantial proportion, aquatic insects may be considered as a proxy for freshwater biodiversity and ecological state of a given habitat.</p>
<hr>
<p>We have collated, together with nearly 100 co-authors, a global database of Ephemeroptera, Plecoptera, Trichoptera and Odonata (EPTO) occurrences comprising more than 8 million records. The data can be downloaded <a href="https://doi.org/10.18728/igb-fred-811.0" target="_blank" rel="noopener">here</a> and visualized <a href="https://geo.igb-berlin.de/maps/609/view" target="_blank" rel="noopener">here</a>.</p>
<p>The following map shows the number of occurrences and genera per site (<a href="https://geo.igb-berlin.de/maps/621/view" target="_blank" rel="noopener">click here for the fullscreen interactive map</a>):</p>
<div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
<iframe src="https://geo.igb-berlin.de/maps/621/embed" min-width : 900px ; style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="EPTO database" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
<div style="text-align: right"> CC BY-NC 4.0 </div>
<br/><br/>
<p>This map shows the density of records globally (<a href="https://geo.igb-berlin.de/maps/609/view" target="_blank" rel="noopener">click here for the fullscreen interactive map</a>):</p>
<div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
<iframe src="https://geo.igb-berlin.de/maps/609/embed" min-width : 900px ; style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="EPTO database" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
<div style="text-align: right"> CC BY-NC 4.0 </div>
<p>Map of observation records per basin (<a href="https://geo.igb-berlin.de/maps/569/view" target="_blank" rel="noopener">click here for the fullscreen interactive map</a>):</p>
<div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
<iframe src="https://geo.igb-berlin.de/maps/569/embed" min-width : 900px ; style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="EPTO database" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
<div style="text-align: right"> CC BY-NC 4.0 </div>
<br/><br/>
<p>Map showing the number of genera per basin (<a href="https://geo.igb-berlin.de/maps/570/view" target="_blank" rel="noopener">click here for the fullscreen interactive map</a>):</p>
<div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
<iframe src="https://geo.igb-berlin.de/maps/570/embed" min-width : 900px ; style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="EPTO database" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
<div style="text-align: right"> CC BY-NC 4.0 </div>
<br/><br/>
<hr>
</description>
</item>
<item>
<title>Long-term trends in crayfish invasions across European rivers</title>
<link>https://glowabio.org/publication/2023_soto_long-term_trends_in_crayfish/</link>
<pubDate>Sun, 01 Jan 2023 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/publication/2023_soto_long-term_trends_in_crayfish/</guid>
<description></description>
</item>
<item>
<title>Tracking a killer shrimp: Dikerogammarus villosus invasion dynamics across Europe</title>
<link>https://glowabio.org/publication/2023_soto_tracking_a_killer_shrimp/</link>
<pubDate>Sun, 01 Jan 2023 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/publication/2023_soto_tracking_a_killer_shrimp/</guid>
<description></description>
</item>
<item>
<title>Hydrography90m: A new high-resolution global hydrographic dataset</title>
<link>https://glowabio.org/publication/2022_amatulli_hydrography90m/</link>
<pubDate>Sat, 01 Oct 2022 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/publication/2022_amatulli_hydrography90m/</guid>
<description></description>
</item>
<item>
<title>SSP projections of landcover and fish</title>
<link>https://glowabio.org/project/ssp_landcover/</link>
<pubDate>Fri, 01 Jul 2022 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/project/ssp_landcover/</guid>
<description><p>Thesis topic: <em>Influence of land-cover on suitable fish habitats in Colombia’s inland waters considering the &ldquo;Shared Socioeconomic Pathway (SSP)&rdquo; scenarios</em></p>
<p><strong>&raquo; <a href="https://glowabio.org/pdf/Brunner_etal_2023_Limnologica_accepted.pdf">Dowload the publication as a pdf</a> &laquo;</strong> <br/>
<strong>&raquo; <a href="https://geo.igb-berlin.de/maps/681/view" target="_blank" rel="noopener">Click here for the visualization</a> &laquo;</strong></p>
<p>Freshwater ecosystems are becoming increasingly degraded and freshwater species diversity is declining drastically. Anthropological influences, such as land-cover change, play an important role in these processes. In Latin America, freshwater fish show high rates of diversity and endemism. At the same time, ecosystems in Latin America are threatened by high rates of land-cover change. Therefore, Colombia, endowed with a great habitat diversity and species richness due to a combination of altitude, climate and geographic location, but also distinct land-cover dynamics, was chosen as a case study for this work.</p>
<p>The objective of the thesis was (i) to consider the land-cover types prevalent, past trends of land-cover change and future land-cover changes projected according to the shared socioeconomic pathway scenarios (SSPs) (ii) to discern the influence of environmental factors, including land-cover, on suitable habitats of Colombian fish species and (iii) to project the possible future development of fish habitats and species richness. The main tools used for these analysis were land-cover modelling (with Dinamica EGO) and species distribution modelling (with BIOMOD).</p>
<p>The analysis of past land-cover changes shows that factors such as demand or policies contribute to both increases and decreases in agricultural land expansion and deforestation and also that trends are not stable. The land-cover projections are driven by population development, nutrition or technological progress assumptions incorporated in the SSP scenarios and thus represent the trends of &ldquo;Sustainability&rdquo; (SSP1), &ldquo;Middle of the road&rdquo; (SSP2), &ldquo;Regional rivalry&rdquo; (SSP3), &ldquo;Inequality&rdquo; (SSP4) or &ldquo;Fossil-fueled development&rdquo; (SSP5).</p>
<br/>
<p><em>The projected landcover change for a larger window of Colombia until 2070 following the SSP1 storyline:</em></p>
<div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
<iframe src="https://geo.igb-berlin.de/maps/681/embed" min-width : 900px ; style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="Landcover change" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
<br/>
<p>Across all 1,209 modelled fish species, models suggest that until 2050 and 2070 species richness in the study area will increase and spatial expansion of suitable habitats will occur. Land-cover, unlike climate, had a poor contribution to the projection of changes in habitat development and species richness. As a function of present temperature and precipitation in projected suitable habitats, future habitats of species in presently warmer habitats are projected to have more area, higher elevation on average and lower flow accumulation, than species with lower mean present habitat temperatures. For the Colombian endemic species (n=219) analysed - more likely projected in lower-temperature sub-catchments - the species distribution model projects stagnating future richness, decreasing habitat area, a shift to higher elevated habitats as well as higher extinction rates compared to non-endemic species.</p>
<p>Migration, expansion or extinction of certain fish species, caused, altered or accelerated by changes in environmental conditions, for example by climate change, are likely to affect the composition, diversity, function, and services of fish communities, further impacting the whole freshwater ecosystem and also structures and systems beyond. Projecting potential future environmental changes and species distributions through models can accordingly help identify factors that may affect species populations or locate places where threats to certain species are particularly high so that appropriate conservation planning steps can be taken.</p>
</description>
</item>
<item>
<title>Conservation planning across Colombia</title>
<link>https://glowabio.org/project/colombia_conservation/</link>
<pubDate>Fri, 03 Jun 2022 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/project/colombia_conservation/</guid>
<description><div class="alert alert-note">
<div>
<p>See the online map of the fish prioritization maps across Colombia:</p>
<p><strong>&raquo; <a href="https://geo.igb-berlin.de/maps/290/view" target="_blank" rel="noopener">Click here for the visualization</a> &laquo;</strong></p>
</div>
</div>
<p>Colombia forms one of the global freshwater biodiversity hotspots, home to 1494 freshwater fish species. This exceptional fish fauna has, however, rarely been considered when selecting areas for biodiversity conservation. This study integrates freshwater fish distributions into a spatial prioritization exercise to assess to which extent (i) freshwater biodiversity, using fish as a proxy, is currently represented within the existing protected areas, and (ii) if alternative protected area networks may have the potential to increase the number of fish species under protection.</p>
<p>At first all available fish data was collated, resulting in a data base of over 112,535 geographic occurrences of 1224 freshwater fishes across Colombia with harmonized nomenclature and revised geo-referenced coordinates.</p>
<p>Based on a digital elevation model at 1 km<sup>2</sup> resolution, the stream network was delineated with a minimum catchment size of 90 km<sup>2</sup> and extracted the corresponding 33,612 sub-catchments that served as spatial units within the analyses. In the next step fish occurrence data and environmental variables (climate, topography, land cover, hydrology) were aggregated across the sub-catchments and an ensemble of species distribution modelling algorithms was employed to project suitable habitat of each fish species across the study area.</p>
<p>Following the principles of systematic conservation planning, integer linear programming was applied to delineate a hypothetical protected area network that fulfills minimum, predefined conservation targets for each fish species, i.e. maximizing species representativeness and connectivity among river catchments, while minimizing the cost of anthropogenic impact, represented by the human footprint index and required area for protection. This spatial prioritization was carried out for four different conservation targets, set to protect 20 %, 30 %, 40 % and 50 % of each fish species suitable habitats in the priority network.</p>
<p>The projected suitable habitats of freshwater fish show high species richness in the Amazon and Orinoco basins while endemic and threatened fish mainly are projected for the Magdalena-Cauca and Pacific-Choco region.</p>
<br/>
<p><em>Stacking the individual fish predictions gives an estimate of species richness (low: purple, high:yellow), where red points represent the fish sampling occurences:</em></p>
<div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
<iframe src="https://geo.igb-berlin.de/maps/290/embed" min-width : 900px ; style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="Fish richness" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
<br/>
<p>The calculated total area of the hypothetical priority area network is between 279,077 km<sup>2</sup> and 754,400 km<sup>2</sup> for the different conservation targets. It represents 12.1 % – 32.6 % of the study area, needed for the conservation of 20 % - 50 % of 1224 Colombian freshwater fish species. Most sub-catchments are prioritized in the Amazon and Orinoco basins and the least in the Caribbean basins. The priority network extents into the neighboring countries of Colombia, signifying the need of transboundary cooperation in freshwater conservation. Between 9.2 % to 28.2 % of Colombia’s protected areas coincide with the projected priority area network. A sensitivity analysis, locking in the existing protected areas in the spatial prioritization solution, reveals a priority area network 16.3 % to 34.7 % larger than that of the minimum cost priority network. It indicates that the existing protected areas inadequately represent freshwater fish in Colombia.</p>
<p>Conservation efforts are best focused on the Magdalena-Cauca and Pacific-Choco basins for the expansion of protected areas, since the majority of endemic and threatened fish species occurs within those basins. This thesis represents a first important step in the integration of freshwater biodiversity for spatial area prioritization and can serve as a baseline scenario for future conservation planning exercises in Colombia.</p>
<br/>
<p><em>Potential protected areas for this region are represented in red, here for a target of 20% of the suitable habitat of each 1224 freshwater fish in Colombia, accounting for the lowest human footprint index and sub-catchment size:</em></p>
<div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
<iframe src="https://geo.igb-berlin.de/maps/294/embed" min-width : 900px ; style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="Protected areas" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
</description>
</item>
<item>
<title>Geomorpho90m</title>
<link>https://glowabio.org/project/geomorpho90m/</link>
<pubDate>Fri, 27 May 2022 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/project/geomorpho90m/</guid>
<description><p>The <strong>Geomorphho90m</strong> dataset</p>
<p><strong>&raquo; <a href="https://www.openlandmap.org/#/?base=Stamen%20%28OpenStreetMap%29&amp;center=26.8842,38.4204&amp;zoom=3.294688713147893&amp;opacity=40&amp;layer=dtm_roughness_merit.dem_m" target="_blank" rel="noopener">Click here for the visualization</a> &laquo;</strong></p>
<p>Topographical relief comprises the vertical and horizontal variations of the Earth’s terrain and drives processes in geomorphology, biogeography, climatology, hydrology and ecology. Its characterisation and assessment, through geomorphometry and feature extraction, is fundamental to numerous environmental modelling and simulation analyses. We developed the Geomorpho90m global dataset comprising of different geomorphometric features derived from the MERIT-Digital Elevation Model (DEM) - the best global, high-resolution DEM available. The fully-standardised 26 geomorphometric variables consist of layers that describe the (i) rate of change across the elevation gradient, using first and second derivatives, (ii) ruggedness, and (iii) geomorphological forms. The Geomorpho90m variables are available at 3 (~90 m) and 7.5 arc-second (~250 m) resolutions under the WGS84 geodetic datum, and 100 m spatial resolution under the Equi7 projection. They are useful for modelling applications in fields such as geomorphology, geology, hydrology, ecology and biogeography.</p>
<p>Check out the paper in <a href="https://www.nature.com/articles/s41597-020-0479-6" target="_blank" rel="noopener"><em>Scientific Data</em></a>. The data can be downloaded <a href="https://doi.pangaea.de/10.1594/PANGAEA.899135" target="_blank" rel="noopener">here</a> and visualized <a href="https://www.openlandmap.org/#/?base=Stamen%20%28OpenStreetMap%29&amp;center=26.8842,38.4204&amp;zoom=3.294688713147893&amp;opacity=40&amp;layer=dtm_roughness_merit.dem_m" target="_blank" rel="noopener">here</a>.</p>
<hr>
<div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
<iframe src="https://www.openlandmap.org/#/?base=Stamen%20%28OpenStreetMap%29&center=26.8842,38.4204&zoom=3.294688713147893&opacity=40&layer=dtm_roughness_merit.dem_m" min-width : 900px ; style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="Hydrography90m" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
</description>
</item>
<item>
<title>Hydrography90m</title>
<link>https://glowabio.org/project/hydrography90m/</link>
<pubDate>Fri, 27 May 2022 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/project/hydrography90m/</guid>
<description><p>The <strong>Hydography90m</strong> dataset</p>
<p><strong>&raquo; <a href="https://geo.igb-berlin.de/maps/351/view#/" target="_blank" rel="noopener">Click here for the visualization</a> &laquo;</strong></p>
<p>We used the MERIT Hydro Digital Elevation Model at 3 arc-sec (∼90 m at the equator) to derive a globally seamless, standardised hydrographic network, the &ldquo;Hydrography90m&rdquo;, with corresponding stream topographic and topologicalinformation. A central feature of the network is the minimal upstream contributing area, i.e. flow accumulation,of 0.05 km2 (or 5 ha) to initiate a stream channel, which allowed us to extract headwater stream channels ingreat detail. By employing a suite of GRASS GIS hydrological modules, we calculated the range-wide upstreamflow accumulation and flow direction to delineate a total of 1.6 million drainage basins, and extracted globallya total of 726 million unique stream segments with their corresponding sub-catchments. In addition, we computed stream topographic variables comprising stream slope, gradient, length, and curvature attributes, as wellas stream topological variables to allow for network routing and various stream order classifications. We validated the spatial accuracy and flow accumulation of Hydrography90m against NHDPlus HR, an independent,national high-resolution hydrographic network dataset of the United States. Our validation shows that the newly developed Hydrography90m has the highest spatial precision, and contains more headwater stream channels compared to three other global hydrographic datasets. This inclusive approach provides a vital, and long-overdue baseline for assessing actual streamflow in headwaters, and opens new research avenues for high-resolution studies of surface water worldwide. Hydrography90m thus offers significant potential to facilitate the assessment offreshwater quantity and quality, inundation risk, biodiversity and conservation, as well as resource managementobjectives in a globally comprehensive and standardised manner. We provide all the computed layers for visualisation and download in 20° × 20° tiles.</p>
<p>Check out the paper in <a href="https://essd.copernicus.org/articles/14/4525/2022/" target="_blank" rel="noopener"><em>Earth System Science Data</em></a>. The data can be downloaded <a href="https://hydrography.org/hydrography90m/hydrography90m_layers/" target="_blank" rel="noopener">here</a> and visualized <a href="https://geo.igb-berlin.de/maps/351/view#/" target="_blank" rel="noopener">here</a>.
The data can also be retrieved using the (<em>hydrographr</em> R-Package)[https://github.com/glowabio/hydrographr].</p>
<hr>
<div style="position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;">
<iframe src="https://geo.igb-berlin.de/maps/351/embed" min-width : 900px ; style="position: absolute; top: 0; left: 0; width: 100%; height: 100%; border:0;" title="Hydrography90m" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>
</description>
</item>
<item>
<title>Protected areas in Cuba</title>
<link>https://glowabio.org/project/cuba_biodiversity/</link>
<pubDate>Fri, 27 May 2022 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/project/cuba_biodiversity/</guid>
<description><p>Freshwater ecosystems are among the most biodiverse and the most important providers of services to humans globally. Unfortunately, these ecosystems are also among the most threatened in the world. In Cuba, the main threats to freshwater ecosystems are climate change and habitat loss and fragmentation induced by land use/land cover change (LULC). Cuba’s National System of Protected Areas (in short SNAP for Sistema Nacional de Áreas Protegidas) is the main tool to protect biodiversity across the country. However, SNAP was not explicitly designed to account for freshwater biodiversity, ecosystem services, river’s connectivity and future scenarios of climate and LULC.</p>
<p>The main goal of the present project is to assess the protection offered by SNAP to freshwater biodiversity and to the provision of freshwater ecosystem services, considering the present conditions and future climate and land use/land cover change scenarios across Cuba. We expect to identify a hypothetical network of protected areas that should assure targets for biodiversity and ecosystem services in the present and future environmental conditions, at the lowest possible cost.</p>
</description>
</item>
<item>
<title>Spatial conservation planning</title>
<link>https://glowabio.org/project/glowabio_conservation/</link>
<pubDate>Fri, 27 May 2022 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/project/glowabio_conservation/</guid>
<description><p>Current freshwater conservation efforts fall short in effectively protecting freshwater biodiversity. Acknowledging the challenge in freshwater conservation management, further assessments are needed regarding the efficiency of conservation planning. We aim to analyze global, systematic conservation planning networks given the key features habitat and biodiversity to (i) highlight areas of irreplaceability within freshwater ecosystems, and (ii) to compare the effectiveness of present-day conservation efforts vs. alternative, prioritized freshwater conservation planning solutions.</p>
</description>
</item>
<item>
<title>Freshwater-specific environmental variables</title>
<link>https://glowabio.org/data_code/freshwater-variables/</link>
<pubDate>Fri, 27 May 2022 00:00:00 +0200</pubDate>
<guid>https://glowabio.org/data_code/freshwater-variables/</guid>
<description><p>This tutorial shows you how to calculate stream-specific freshwater variables by relating the upstream e.g. land cover to any given downstream location using the GRASS GIS add-ons <em>r.stream.watersheds</em> &amp; <em>r.stream.variables</em>. The original 1km data and publication are available <a href="http://www.earthenv.org/streams" target="_blank" rel="noopener">here</a> - see also the original code from <a href="http://spatial-ecology.net/dokuwiki/doku.php?id=wiki:grassrivarvariable" target="_blank" rel="noopener">spatial-ecology.net</a>.</p>
<p><a href="http://www.earthenv.org/streams" target="_blank" rel="noopener">
<figure >
<div class="d-flex justify-content-center">
<div class="w-100" ><img alt="Add-on animation"
src="https://glowabio.org/media/Add-ons_for_GRASS_GIS.gif"
loading="lazy" data-zoomable /></div>
</div></figure>
</a></p>
<p><strong>This example contains the following steps:</strong></p>
<ul>
<li>Download an exemplary digital elevation model (DEM)</li>
<li>Extract the stream network from the DEM</li>
<li>Delineate major drainage basins</li>
<li>Crop data to a sub-basin</li>
<li>Calculate the sub-watersheds for each stream grid cell (<em>r.stream.watersheds</em>)</li>
<li>Calculate contiguous stream-specific variables (<em>r.stream.variables</em>)</li>
</ul>
<div class="alert alert-note">
<div>
The add-ons have been tested in the Linux environment. Microsoft Windows users: consider installing the OSGEO-Live Virtual machine that has GRASS GIS 7 already installed and is ready to use. Alternatively you can run the add-ons via QGIS.
</div>
</div>
<br/>
<p>Create and enter the folder where the data will be stored:</p>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-fallback" data-lang="fallback"><span class="line"><span class="cl">export INDIR=$HOME/grass_hydro
</span></span><span class="line"><span class="cl">mkdir $INDIR
</span></span><span class="line"><span class="cl">cd $INDIR
</span></span></code></pre></div><p>Download the script</p>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-fallback" data-lang="fallback"><span class="line"><span class="cl">cd ~
</span></span><span class="line"><span class="cl">wget &#34;http://www.spatial-ecology.net/ost4sem/exercise/basic_adv_grass/stream_variables.sh&#34;
</span></span><span class="line"><span class="cl">rstudio stream_variables.sh &amp;
</span></span></code></pre></div><br/>
<p>Download and unzip a DEM from <a href="http://www.worldclim.org/tiles.php" target="_blank" rel="noopener">WorldClim</a>:</p>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-fallback" data-lang="fallback"><span class="line"><span class="cl">wget -O $INDIR/alt_16_tif.zip &#34;http://biogeo.ucdavis.edu/data/climate/worldclim/1_4/tiles/cur/alt_16_tif.zip&#34;
</span></span><span class="line"><span class="cl">unzip -o $INDIR/alt_16_tif.zip -d $INDIR/dem
</span></span><span class="line"><span class="cl">gdalinfo $INDIR/dem/alt_16.tif # check data
</span></span></code></pre></div><p>If needed, first install the latest GRASS GIS version:</p>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-fallback" data-lang="fallback"><span class="line"><span class="cl">sudo add-apt-repository ppa:ubuntugis/ubuntugis-unstable
</span></span><span class="line"><span class="cl">sudo add-apt-repository ppa:grass/grass-devel
</span></span><span class="line"><span class="cl">sudo apt-get update
</span></span><span class="line"><span class="cl">sudo apt-get install grass grass-gui grass-dev subversion gdal-bin libgdal-grass libalgorithms1 libbase1 libgdal-dev
</span></span></code></pre></div><p>Create the GRASS GIS data base and enter GRASS:</p>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-fallback" data-lang="fallback"><span class="line"><span class="cl">grass78 -text -c $INDIR/dem/alt_16.tif $INDIR/grass_location
</span></span></code></pre></div><p>Read data into GRASS:</p>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-fallback" data-lang="fallback"><span class="line"><span class="cl">r.in.gdal input=$INDIR/dem/alt_16.tif output=elevation
</span></span><span class="line"><span class="cl">r.info elevation # check data
</span></span></code></pre></div><p>Open GUI and visualize the layers:</p>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-fallback" data-lang="fallback"><span class="line"><span class="cl">g.gui wxpython
</span></span></code></pre></div><p>Run hydrological conditioning:</p>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-fallback" data-lang="fallback"><span class="line"><span class="cl">g.extension extension=r.hydrodem # download extension
</span></span><span class="line"><span class="cl"># if you get an error run: sudo apt install grass-dev subversion
</span></span><span class="line"><span class="cl">r.hydrodem input=elevation output=elevation_cond
</span></span></code></pre></div><p>Extract drainage direction and stream network</p>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-fallback" data-lang="fallback"><span class="line"><span class="cl">r.watershed --h # see help regarding the options and flags
</span></span><span class="line"><span class="cl">r.watershed elevation=elevation_cond drainage=drainage stream=stream accumulation=accumulation threshold=100 --o
</span></span></code></pre></div><p>Get drainage basins (last downstream segment: -l flag)</p>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-fallback" data-lang="fallback"><span class="line"><span class="cl">g.extension extension=r.stream.basins
</span></span><span class="line"><span class="cl">r.stream.basins direction=drainage stream_rast=stream basins=basins_last -l --o
</span></span></code></pre></div><p>Categorize the single basins:</p>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-fallback" data-lang="fallback"><span class="line"><span class="cl">r.clump -d input=basins_last output=basins_cat --o
</span></span></code></pre></div><p>Extract the data for one basin:</p>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-fallback" data-lang="fallback"><span class="line"><span class="cl">r.mapcalc &#34;drainage_sub = if (basins_cat==798, drainage, null() ) &#34; --o
</span></span><span class="line"><span class="cl">r.mapcalc &#34;stream_sub = if (basins_cat==798, stream, null() ) &#34; --o
</span></span></code></pre></div><p>Write files to disk:</p>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-fallback" data-lang="fallback"><span class="line"><span class="cl">r.out.gdal input=drainage_sub output=$INDIR/drainage_sub.tif type=Int32 nodata=-9999 --o -c createopt=&#34;COMPRESS=LZW,ZLEVEL=9&#34;
</span></span><span class="line"><span class="cl">r.out.gdal input=stream_sub output=$INDIR/stream_sub.tif type=Int32 nodata=-9999 --o -c createopt=&#34;COMPRESS=LZW,ZLEVEL=9&#34;
</span></span></code></pre></div><p><strong>Create stream-specific variables, and limit the calculation only to a single basin.</strong></p>
<p>Download and install the GRASS add-ons. Work-around (December 2019) for grass78:</p>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-fallback" data-lang="fallback"><span class="line"><span class="cl">mkdir $HOME/.grass7/addons/scripts
</span></span><span class="line"><span class="cl">wget -O $HOME/.grass7/addons/scripts/r.stream.watersheds &#34;https://raw.githubusercontent.com/domisch/grass-addons/master/r.stream.watersheds&#34;
</span></span><span class="line"><span class="cl">chmod 777 $HOME/.grass7/addons/scripts/r.stream.watersheds
</span></span><span class="line"><span class="cl">
</span></span><span class="line"><span class="cl">wget -O $HOME/.grass7/addons/scripts/r.stream.variables &#34;https://raw.githubusercontent.com/domisch/grass-addons/master/r.stream.variables&#34;
</span></span><span class="line"><span class="cl">chmod 777 $HOME/.grass7/addons/scripts/r.stream.variables
</span></span></code></pre></div><p>Add-on 1: Calculate the sub-watershed and sub-stream sections for each stream grid cell using 2 processors:</p>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-fallback" data-lang="fallback"><span class="line"><span class="cl">r.stream.watersheds stream=stream_sub drainage=drainage_sub cpu=2
</span></span></code></pre></div><p>Add-on 2: Create stream-specific variables based on elevation</p>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-fallback" data-lang="fallback"><span class="line"><span class="cl">r.stream.variables variable=elevation output=cells,min,max,range,mean,stddev,coeff_var,sum area=watershed scale=1 cpu=2
</span></span></code></pre></div><p>Rename the “elevation_cells” to “flow_accumulation” and check variables:</p>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-fallback" data-lang="fallback"><span class="line"><span class="cl">r.mapcalc &#34;flow_accummulation = elevation_cells&#34; --o
</span></span><span class="line"><span class="cl">r.info flow_accummulation
</span></span><span class="line"><span class="cl">r.info elevation_range
</span></span></code></pre></div><p>Get stream length (similar procedure as above):</p>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-fallback" data-lang="fallback"><span class="line"><span class="cl">r.stream.variables variable=elevation output=cells area=stream scale=1 cpu=2
</span></span><span class="line"><span class="cl">r.mapcalc &#34;stream_length = elevation_cells&#34; --o
</span></span><span class="line"><span class="cl">r.info stream_length
</span></span></code></pre></div><p>Calculate the amount of rainfall within the basin:</p>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-fallback" data-lang="fallback"><span class="line"><span class="cl">wget -O $INDIR/prec_16_tif.zip &#34;http://biogeo.ucdavis.edu/data/climate/worldclim/1_4/tiles/cur/prec_16_tif.zip&#34;
</span></span><span class="line"><span class="cl">unzip -q -o $INDIR/prec_16_tif.zip -d $INDIR/prec
</span></span><span class="line"><span class="cl">r.in.gdal input=$INDIR/prec/prec6_16.tif output=prec6 # rainfall in June
</span></span><span class="line"><span class="cl">r.stream.variables variable=prec6 output=sum area=watershed scale=1 cpu=2
</span></span></code></pre></div><p>Run all 12 months in a loop:</p>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-fallback" data-lang="fallback"><span class="line"><span class="cl">for var in $(seq 1 12); do
</span></span><span class="line"><span class="cl">r.in.gdal input=$INDIR/prec/prec${var}_16.tif output=prec$var
</span></span><span class="line"><span class="cl">r.stream.variables variable=prec$var output=sum area=watershed scale=1 cpu=2
</span></span><span class="line"><span class="cl">done
</span></span></code></pre></div><p>Other useful add-ons for hydrological applications: <a href="http://grasswiki.osgeo.org/wiki/Hydrological_Sciences" target="_blank" rel="noopener">http://grasswiki.osgeo.org/wiki/Hydrological_Sciences</a></p>
<p><strong>Other examples</strong></p>
<p>Get the stream order:</p>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-fallback" data-lang="fallback"><span class="line"><span class="cl">r.stream.order stream_rast=stream direction=drainage strahler=str_order --o
</span></span></code></pre></div><p>Get only streams and basins &gt;=3rd order</p>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-fallback" data-lang="fallback"><span class="line"><span class="cl">r.mapcalc &#34;str_order_3rd = if(str_order &gt;=3, str_order, null() ) &#34; --o
</span></span><span class="line"><span class="cl">r.stream.basins direction=drainage stream_rast=str_order_3rd basins=basins_3rd_last -l --o
</span></span></code></pre></div><p>Stream distance - Calculates distance to and elevation above streams and outlet</p>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-fallback" data-lang="fallback"><span class="line"><span class="cl">g.extension extension=r.stream.distance
</span></span><span class="line"><span class="cl">r.stream.distance stream_rast=stream direction=drainage elevation=elevation_cond method=downstream distance=str_distance difference=str_elevation_diff --o
</span></span></code></pre></div><p>Stream order statistics - Calculates Horton&rsquo;s statistics for Strahler and Horton ordered networks created with r.stream.order Print only order statistics:</p>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-fallback" data-lang="fallback"><span class="line"><span class="cl">g.extension extension=r.stream.stats
</span></span><span class="line"><span class="cl">r.stream.stats stream_rast=stream direction=drainage elevation=elevation_cond output=str_stats_o.txt --o
</span></span><span class="line"><span class="cl">more $INDIR/str_stats_o.txt
</span></span></code></pre></div><p>Print only catchment statistics:</p>
<div class="highlight"><pre tabindex="0" class="chroma"><code class="language-fallback" data-lang="fallback"><span class="line"><span class="cl">r.stream.stats stream_rast=stream direction=drainage elevation=elevation_cond output=str_stats_c.txt -c
</span></span><span class="line"><span class="cl">more $INDIR/str_stats_c.txt
</span></span></code></pre></div><br/>
<p><strong>See also these useful GRASS-GIS commands for hydrological applications:</strong></p>
<p><a href="https://grass.osgeo.org/grass78/manuals/topic_hydrology.html" target="_blank" rel="noopener">https://grass.osgeo.org/grass78/manuals/topic_hydrology.html</a>
<a href="https://grasswiki.osgeo.org/wiki/R.stream" target="_blank" rel="noopener">https://grasswiki.osgeo.org/wiki/R.stream</a>.*_modules <br/>
<a href="https://grasswiki.osgeo.org/wiki/Hydrological_Sciences" target="_blank" rel="noopener">https://grasswiki.osgeo.org/wiki/Hydrological_Sciences</a></p>
<br/>
</description>
</item>
<item>
<title>Bayesian species distribution models</title>
<link>https://glowabio.org/data_code/bayesian-species-distribution-models/</link>
<pubDate>Fri, 27 May 2022 00:00:00 +0200</pubDate>
<guid>https://glowabio.org/data_code/bayesian-species-distribution-models/</guid>
<description><p>Here is a tutorial of running a <a href="https://github.com/domisch/species_distribution_models" target="_blank" rel="noopener">species distribution model in a Bayesian framework</a> using the hSDM package in R, using a rangemap as a covariate. See also the associated paper in <a href="http://onlinelibrary.wiley.com/doi/10.1111/ecog.01925/abstract" target="_blank" rel="noopener">Ecography</a>.</p>
<p><a href="https://github.com/domisch/species_distribution_models" target="_blank" rel="noopener">
<figure >
<div class="d-flex justify-content-center">
<div class="w-100" ><img alt="Bayesian SDMs" srcset="
/media/bayesian_SDMs_hu65c47ba3bb45951a0fd7155bf8b2839f_200795_4e5a97927a726dac4958bc9feefd1902.webp 400w,
/media/bayesian_SDMs_hu65c47ba3bb45951a0fd7155bf8b2839f_200795_1c017a60436019d793eea9fe6f95bdbe.webp 760w,
/media/bayesian_SDMs_hu65c47ba3bb45951a0fd7155bf8b2839f_200795_1200x1200_fit_q75_h2_lanczos_3.webp 1200w"
src="https://glowabio.org/media/bayesian_SDMs_hu65c47ba3bb45951a0fd7155bf8b2839f_200795_4e5a97927a726dac4958bc9feefd1902.webp"
width="760"
height="417"
loading="lazy" data-zoomable /></div>
</div></figure>
</a></p>
</description>
</item>
<item>
<title>Invasion impacts and dynamics of a European-wide introduced species</title>
<link>https://glowabio.org/publication/2022_haubrock_invasion_impacts/</link>
<pubDate>Sun, 01 May 2022 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/publication/2022_haubrock_invasion_impacts/</guid>
<description></description>
</item>
<item>
<title>Urbanization promotes specific bacteria in freshwater microbiomes including potential pathogens</title>
<link>https://glowabio.org/publication/2022_numberger_urbanization_promotes_specific/</link>
<pubDate>Sun, 01 May 2022 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/publication/2022_numberger_urbanization_promotes_specific/</guid>
<description></description>
</item>
<item>
<title>Incongruent latitudinal patterns of taxonomic, phylogenetic and functional diversity reveal different drivers of caddisfly community assembly across spatial scales</title>
<link>https://glowabio.org/publication/2022_grigoropoulou_geb/</link>
<pubDate>Fri, 01 Apr 2022 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/publication/2022_grigoropoulou_geb/</guid>
<description></description>
</item>
<item>
<title>A global agenda for advancing freshwater biodiversity research</title>
<link>https://glowabio.org/publication/2022_maasri_global_agenda/</link>
<pubDate>Sat, 01 Jan 2022 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/publication/2022_maasri_global_agenda/</guid>
<description></description>
</item>
<item>
<title>Assessing whether artificial intelligence is an enabler or an inhibitor of sustainability</title>
<link>https://glowabio.org/publication/2021_gupta_assessing_whether_artificial/</link>
<pubDate>Tue, 01 Jun 2021 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/publication/2021_gupta_assessing_whether_artificial/</guid>
<description></description>
</item>
<item>
<title>Twenty-five essential research questions to inform the protection and restoration of freshwater biodiversity</title>
<link>https://glowabio.org/publication/2021_harper_twenty-five_essential/</link>
<pubDate>Tue, 01 Jun 2021 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/publication/2021_harper_twenty-five_essential/</guid>
<description></description>
</item>
<item>
<title>Improving the reliability of eDNA data interpretation</title>
<link>https://glowabio.org/publication/2021_burian_improving_the_reliability/</link>
<pubDate>Mon, 01 Mar 2021 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/publication/2021_burian_improving_the_reliability/</guid>
<description></description>
</item>
<item>
<title>Integrative species delimitation: testing the efficacy of the multispecies coalescent model in the Greenthroat Darter complex (Percidae: Etheostomatinae)</title>
<link>https://glowabio.org/publication/2021_mcguigan_integrative_species-delimitation/</link>
<pubDate>Mon, 01 Feb 2021 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/publication/2021_mcguigan_integrative_species-delimitation/</guid>
<description></description>
</item>
<item>
<title>Safeguarding freshwater life beyond 2020: Recommendations for the new global biodiversity framework from the European experience</title>
<link>https://glowabio.org/publication/2021_rees_safeguarding_freshwater/</link>
<pubDate>Mon, 01 Feb 2021 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/publication/2021_rees_safeguarding_freshwater/</guid>
<description><p>+++
title = &ldquo;Safeguarding freshwater life beyond 2020: Recommendations for the new global biodiversity framework from the European experience&rdquo;
date = &ldquo;2021-02-01&rdquo;
authors = [&ldquo;van Rees, C.B.&rdquo;, &ldquo;Waylen, K.&rdquo; , &ldquo;Schmidt-Kloiber, A.&rdquo;, &ldquo;Thackeray, S.&rdquo; , &ldquo;Kalinkat, G.&rdquo;, &ldquo;Martens, K.&rdquo;, &ldquo;<strong>Domisch, S.</strong>&rdquo;, &ldquo;Lillebø, A.I.&rdquo;, &ldquo;Hermoso, V.&rdquo;, &ldquo;Grossart, H.-P.&rdquo;, &ldquo;Schinegger, R.&rdquo;, &ldquo;Decleer, K.&rdquo;, &ldquo;Adriaens, T.&rdquo;, &ldquo;Denys, L.&rdquo;, &ldquo;Jarić, I.&rdquo;, &ldquo;Monaghan, M.T.&rdquo;, &ldquo;Janse, J.&rdquo;, &ldquo;De Wever, A.&rdquo;, &ldquo;Geijzendorffer, I.&rdquo;, &ldquo;Adamescu, M.&rdquo;, &ldquo;Jähnig, S.C&rdquo;]</p>
</description>
</item>
<item>
<title>Revisiting global trends in freshwater insect biodiversity</title>
<link>https://glowabio.org/publication/2020_jahnig_revisiting-global-trends/</link>
<pubDate>Fri, 01 Jan 2021 00:00:00 +0000</pubDate>
<guid>https://glowabio.org/publication/2020_jahnig_revisiting-global-trends/</guid>
<description></description>
</item>
<item>
<title>Extract raster values</title>
<link>https://glowabio.org/data_code/extract-variables/</link>
<pubDate>Wed, 01 Jul 2020 00:00:00 +0200</pubDate>
<guid>https://glowabio.org/data_code/extract-variables/</guid>
<description><p>Here are some useful commands to move point records to a stream network and to extract the values for each point. The code is maintained on GitHub at <a href="https://github.com/domisch/stream_layers" target="_blank" rel="noopener">https://github.com/domisch/stream_layers</a>.</p>
</description>
</item>
<item>
<title>GeoFRESH</title>
<link>https://glowabio.org/data_code/geofresh/</link>
<pubDate>Wed, 01 Jul 2020 00:00:00 +0200</pubDate>
<guid>https://glowabio.org/data_code/geofresh/</guid>
<description><p>GeoFRESH is a platform that helps freshwater researchers to process point data across the global river network by providing a set of spatial tools. Head over to <a href="http://geofresh.org/" target="_blank" rel="noopener">http://geofresh.org/</a> to check it out!</p>
<p><a href="http://geofresh.org/" target="_blank" rel="noopener">
<figure >
<div class="d-flex justify-content-center">
<div class="w-100" ><img alt="&amp;ldquo;GeoFRESH&amp;rdquo;" srcset="
/media/geofresh_logo_hu512682383adc8444fdc8c4e0c1c84c89_47218_09595c839c08e0a46cd041c760b21bd9.webp 400w,
/media/geofresh_logo_hu512682383adc8444fdc8c4e0c1c84c89_47218_7f5e788a9acc79dfd989201e6e175b1d.webp 760w,
/media/geofresh_logo_hu512682383adc8444fdc8c4e0c1c84c89_47218_1200x1200_fit_q75_h2_lanczos_3.webp 1200w"
src="https://glowabio.org/media/geofresh_logo_hu512682383adc8444fdc8c4e0c1c84c89_47218_09595c839c08e0a46cd041c760b21bd9.webp"
width="400"
height="400"
loading="lazy" data-zoomable /></div>
</div></figure>
</a></p>
</description>
</item>
<item>
<title>IGB workshop</title>
<link>https://glowabio.org/data_code/igb_workshop/</link>
<pubDate>Wed, 01 Jul 2020 00:00:00 +0200</pubDate>