forked from IMERSS/howe-sound-mapping
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Platyhelminthes.Rmd
62 lines (46 loc) · 4.54 KB
/
Platyhelminthes.Rmd
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
---
title: Platyhelminthes
author: Antranig Basman, Charlie Gibbs, Donna Gibbs, Scott Gilmore, Andy Lamb, Andrew Simon
date: August 7th, 2023
output:
html_document:
self_contained: false
knit: (function(inputFile, encoding) {
rmarkdown::render(inputFile, encoding = encoding, output_dir = "docs", output_options = list(copy_resources = TRUE)) })
---
```{r, echo=FALSE, message=FALSE, warning=FALSE}
library(tidyverse)
platyhelminthes <- read.csv("tabular_data/platyhelminthes_all_records_gridded.csv")
platyhelminthes.summary <- read.csv("tabular_data/platyhelminthes_summary.csv")
new <- platyhelminthes.summary %>% filter(str_detect(reportingStatus, "new"))
confirmed <- platyhelminthes.summary %>% filter(reportingStatus == 'confirmed')
reported <- platyhelminthes.summary %>% filter(reportingStatus == 'reported')
observed <- platyhelminthes.summary %>% filter(iNatObservationStatus == 'observed')
unobserved <- platyhelminthes.summary %>% filter(iNatObservationStatus == 'unobserved')
```
## Galiano Island's flatworm diversity
*‘Platyhelminthes’ is rooted in the Greek πλατύ (platy), meaning “flat”, and ἑλμινθ- (helminth-), meaning “worm”.*
Platyhelminthes (flatworms) are a phylum of dorsoventrally flattened, bilaterally symmetrical invertebrates, most of which are found in marine and freshwater environments. The phylum includes nearly 13,000 extant marine species, though this estimate does not account for cryptic parasitic species, such as trematodes or flukes, and many taxa remain undescribed. Over 170 species are reported for the coast of British Columbia, `r nrow(platyhelminthes.summary)` of which have been reported for Galiano Island to date.
Given the region's high diversity of cryptic free-living and parasitic flatworm species, expert search effort is necessary to gain a comprehensive understanding of this understudied phylum. The larger flatworm species in the order [Polycladida](#taxon:Polycladida) are the most likely to be found diving or in intertidal areas. However, even with this more visible group, species identification can be difficult, requiring the fixing, cleaning and sectioning of specimens to examine the microscopic details of copulatory organs and other internal anatomy. Only the largest and most distinctly patterned taxa, such as the spotted flatworm ([*Eurylepta leoparda*](#taxon:Eurylepta leoparda)), can easily be identified in the field. Of these more conspicuous taxa, around 10 species are likely to be encountered diving around Galiano Island. Many more species could potentially be documented by taxonomic specialists via searches targeting the more obscure free-living species or fluke, tapeworm and monogenean parasites.
![Spotted flatworm (*Eurylepta leoparda*) – Photograph by Karolle Wall](media/Eurylepta_leoparda_Karolle_Wall.jpg)
```{r, echo=FALSE, message=FALSE, warning=FALSE}
source("scripts/Diversity_map_script.R")
animal.grid.map <- mx_diversity_map("platyhelminthes")
animal.grid.map
```
## Community science contributions
Since the Biodiversity Galiano project began in 2016, our community has documented `r nrow(observed)` flatworm species in the waters around Galiano Island, [confirming](#region:confirmed) `r round((nrow(confirmed)/(nrow(confirmed)+nrow(reported))*100), digits = 0)` percent of the [historical records](#region:historical) and adding `r nrow(new)` [new](#region:new) species to the list.
```{r, echo=FALSE, message=FALSE, warning=FALSE}
source("scripts/Status_map_script.R")
figs <- mx_status_map("platyhelminthes")
figs$reportingStatusMap
figs$reportingStatusFig
```
## Top community contributions to our knowledge of the island flatworm diversity
Here, you can browse photos of platyhelminthes commonly documented around Galiano Island, as well as recent observations, most favourited observations, and top observers, based on [iNaturalist](http://inaturalist.org/) data. Please help contribute to the growing record of the island flatworm diversity by submitting your observations to the [Biodiversity Galiano iNaturalist project.](http://inaturalist.org/projects/biodiversity-galiano-island)
<span class="mxcw-nonLeafletPane mxcw-paneName-TopContributions html-widget leaflet"></span>
## Sources
[Simon, A. D., Adamczyk, E. M., Basman, A., Chu, J. W., Gartner, H. N., Fletcher, K., ... & Starzomski, B. M. (2022). Toward an atlas of Salish Sea biodiversity: the flora and fauna of Galiano Island, British Columbia, Canada. Part I. Marine zoology. Biodiversity Data Journal, 10.](https://bdj.pensoft.net/article/76050/)
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```