forked from IMERSS/howe-sound-mapping
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Crustacea.Rmd
82 lines (58 loc) · 6.9 KB
/
Crustacea.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
---
title: Crustacea
author: Antranig Basman, Charlie Gibbs, Donna Gibbs, Emily Adamczyk, Andy Lamb, Andrew Simon
date: Aug 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)
crustaceans <- read.csv("tabular_data/crustacea_all_records_gridded.csv")
crustacean.summary <- read.csv("tabular_data/crustacea_summary.csv")
new <- crustacean.summary %>% filter(str_detect(reportingStatus, "new"))
confirmed <- crustacean.summary %>% filter(reportingStatus == 'confirmed')
reported <- crustacean.summary %>% filter(reportingStatus == 'reported')
observed <- crustacean.summary %>% filter(iNatObservationStatus == 'observed')
unobserved <- crustacean.summary %>% filter(iNatObservationStatus == 'unobserved')
```
## Galiano Island's crustacean diversity
*The name ‘Crustacea’ is rooted in the Modern Latin 'crusta', meaning “shell.”*
Crustacea are a highly diverse subphylum of Arthropoda that contains over 52,000 described terrestrial, marine and freshwater species. This subphylum includes six classes, three of which are represented locally: [Hexanauplia](#taxon:Hexanauplia) (barnacles, copepods and tantulocarids); [Ichthyostraca](#taxon:Ichthyostraca) (fish lice); and [Malacostraca](#taxon:Malacostraca) (amphipods, crabs, isopods, krill and shrimp). Over 900 marine crustacean species are known to occur in British Columbia. Of these, `r nrow(crustacean.summary)` species have been reported for Galiano Island, through the combined efforts of more than `r length(unique(crustaceans$recordedBy))` individuals.
Numerous non-native crustaceans are known to the region, though only one introduced species is currently represented in the Galiano Island record. The introduced Japanese skeleton shrimp ([*Caprella mutica*](#taxon:Caprella mutica)), reported for Galiano Island, is now well established along the coast of British Columbia. The invasive European green crab (*Carcinus maenas*) and two tanaids, *Leptochelia dubia* and *Zuexo normani*, have been found off Vancouver Island, but are not yet known locally. Additionally, the non-native amphipods *Ampithoe valida*, *Caprella drepanochir*, *Incisocalliope derzhavini*, *Melita nitida*, *Monocorophium acherusicum*, *Monocorophium insidiosum*, and *Jassa slatteryi*, along with the bay barnacle *Amphibalanus improvisus*, have all been reported in the Strait of Georgia, but have not yet been reported for Galiano Island.
![*Caprella mutica* – Photograph by Emily Adamczyk](media/Caprella_mutica_Emily_Adamczyk.jpeg)
```{r, echo=FALSE, message=FALSE, warning=FALSE}
source("scripts/Diversity_map_script.R")
animal.grid.map <- mx_diversity_map("crustacea")
animal.grid.map
```
## Community science contributions
Since the Biodiversity Galiano project began in 2016, our community has documented `r nrow(observed)` crustacean 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 and adding `r nrow(new)` [new species](#region:new) to the list. Of the `r nrow(reported) + nrow(confirmed)` historically reported taxa, `r nrow(reported)` species remain unconfirmed, having gone unreported in the last twenty years.
Many crustaceans are difficult to identify without microscopy, contributing to biases in the local record. Locally, [ichthyostracan](#taxon:Ichthyostraca) crustaceans are vastly under-represented and cladocerans and ostracods remain unrepresented to date. As of yet, there are no records of hoplocarids (mantis shrimps), ascothoracids or tantulocarids occurring within British Columbia. The latter two groups will likely be discovered with further investigation; hoplocarids, however, have never been observed north of southern California and are unlikely to occur in the region. Leptostracans are not well described, though at least one species from the genus *Nebalia* is known to the Northeast Pacific. Closer examination of subtidal and intertidal eelgrass, algae wrack and the rocky intertidal zone will uncover many unrecorded taxa.
```{r, echo=FALSE, message=FALSE, warning=FALSE}
source("scripts/Status_map_script.R")
figs <- mx_status_map("crustacea")
figs$reportingStatusMap
figs$reportingStatusFig
```
## Crustaceans with Indigenous cultural significance
Crustaceans are one of many phyla that have cultural significance to Hul'qumi'num speaking peoples. Generally, crustaceans are regarded as important food sources for delicacy and cultural practice.
* [Giant Barnacle](#taxon:Balanus nubilus), known in Hul'qumi'num as [**Qumine'**](#taxon:Balanus nubilis), is regarded as an important and tasty delicacy, roasting them by fire making them an easier delicacy to enjoy.
* [Red Rock Crab](#taxon:Cancer productus), known in Hul'qumi'num as [**Kwakwatl'shun**](#taxon:Cancer productus), is easier to find but provides less meat for the effort, hence, they are generally not a preferred species to consume but one consumed in times of need.
* [Dungeness Crab](#taxon:Metacarcinus magister), known in Hul'qumi'num as [**Ey'x**](#taxon:Metacarcinus magister), is an important food source, traditionally harvested with a 3-pronged spear. Some Elders have harvested ey'x by stepping ('umutsun) on ey'x barefoot and then placing them in a basket or canoe.
* [Pacific Prawn](#taxon:Pandalus platyceros), known in Hul'qumi'num as [**Mam'ul' or Maal-mul'**](#taxon:Pandalus platyceros), is the largest shrimp species in the North Pacific, reaching lengths of up to 25 cm. There is limited cultural information about Mam'ul', just that the Hul'qumi'num name has been documented.
```{r, echo=FALSE, message=FALSE, warning=FALSE}
source("scripts/Cultural_map_script.R")
animal.cultural.map <- mx_cultural_map("crustacea")
animal.cultural.map
```
## Top community contributions to our knowledge of the island crustacean diversity
Here, you can browse photos of crustacean species 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 crustacean 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)
```