Contributors | Affiliation | Role |
---|---|---|
Nelson, James | University of Georgia (UGA) | Principal Investigator |
Leavitt, Herbert | University of Georgia (UGA) | Student |
Thomas, Alexander | University of Georgia (UGA) | Student |
York, Amber D. | Woods Hole Oceanographic Institution (WHOI BCO-DMO) | BCO-DMO Data Manager |
Location description: All data for this analysis were collected near Port Fourchon, Louisiana, USA (29.10 °N, 90.19 °W). The marshes around the port are microtidal, with a mean tidal range of ~0.37 m. The site sits at the precise edge of black mangrove expansion into saltmarsh habitats and although some land loss in the areas has occurred, mangroves in the area have been expanding since the 1990s (Osland et al., 2013).
Species Collections
All species in this study were collected using a drop sampler method specifically designed for flooded marsh habitats, providing a standardized approach across sampling years. The design of the drop samplers used in 2005, 2015, and 2022 varied slightly in terms of construction materials and deployment mechanisms to adapt to equipment improvements over time, but the essential structure remained the same. Each sampler employed a 1-m² cylinder, suspended from a boom arm, to minimize disturbance prior to deployment. The cylinder was rapidly lowered to enclose a section of flooded marsh habitat, ensuring precise capture of benthic and water-column organisms (Nelson et al., 2019; Zimmerman et al., 1984).
Once the sampler was in position, a submersible pump was used to evacuate the water inside the cylinder to concentrate captured organisms. Special care was taken to prevent loss of organisms during pumping by filtering the outflow through a fine mesh screen. After the water was removed, captured animals were collected manually or with fine nets, transferred to containers with preservatives appropriate for long-term identification and analysis, such as ethanol or formalin. Each sample was meticulously labeled with the date, location, and environmental parameters at the time of collection to facilitate later analysis. Salinity, water temperature, and depth were also recorded at each sampling event to characterize habitat conditions during collection.
All samples were transported to the laboratory for taxonomic identification. Species were identified to the lowest taxonomic level possible, typically genus or species, with multiple experts cross-validating questionable identifications to ensure data quality.
Species Range Estimation
To estimate species ranges, we employed the gbif.range R package (Chauvier et al., 2022) for its ability to integrate multiple data sources, including GBIF occurrences and ecoregion boundaries curated by The Nature Conservancy (2012). We accessed the Global Biodiversity Facility (GBIF) database focusing on species occurrences based on both human observations and preserved specimens spanning 2005 to 2022 (GBIF 2024). We limited the downloaded material to the first 15000 observations of any species to limit file size. The downloaded data were subjected to rigorous cleaning, removing any records outside of the western hemisphere or observations that did not align with Atlantic coastal regions. This step ensured that our analyses focused on species relevant to the ecosystem under study.
The gbif.range package offers automated range delineation by grouping observations into ecoregions. We applied these tools to each species observed at Port Fourchon to estimate both their historical and current ranges. Spatial range estimates were refined using polygon overlays, restricting them to the latitudinal gradients from the North to South Poles along the Atlantic coast. We also evaluated the completeness of occurrence data by assessing whether species records covered their known ecological niches.
For species with sparse or conflicting records, range estimates were adjusted manually based on prior literature and known habitat preferences. Final outputs included range maps for each species, with ecoregion-based polygons providing clear visualizations of distribution shifts over time. The complete list of species, with associated GBIF records and curated metadata, is included in the supplementary materials.
Statistical Analysis of Species Occurrences
To assess changes in species distributions over time, we hypothesized that the presence or absence of species across sampling years (2005, 2014, 2022) might indicate shifts in their ecological distributions. To test this hypothesis, we employed a chi-squared test for independence, a statistical method suitable for categorical data, to evaluate whether species presence and absence differed significantly across years.
Climate-Driven Range Expansion Analysis Code:
The data were processed and analyzed using R and python code (See "Supplemental Files" section for code and supplemental data tables discussed here).
This project analyzes the range expansion of black mangroves into areas traditionally dominated by smooth cordgrass using quantitative nekton sampling and satellite imagery analysis. The analysis includes species range estimation, satellite imagery processing, and statistical testing on species distributions over two decades.
---
Species Range Mapping Workflow
Overview
This workflow processes species occurrence data to generate range maps in GeoTIFF format (see tiff_outputs.zip). It includes three scripts, each designed to perform specific tasks in the pipeline. At the end of the workflow, nine species are merged based on taxonomic changes.
Workflow Components
GBIF_DOI_Species_Download.py
Purpose: Automates the download of species occurrence data from GBIF using DOI references.
Details: Retrieves occurrence records for specified species. Outputs data in CSV format for further processing.
GBIF_Species_Data_Filtered.py
Purpose: Cleans and filters the downloaded species data.
Details: Removes invalid or missing geospatial data (e.g., NA coordinates, outliers). Prepares the data for range mapping.
R_gbig.ranges.r
Purpose: Generates species range maps using filtered occurrence data.
Details: Creates range maps as GeoTIFFs for individual species. Incorporates bioregional data for spatial validation.
Taxonomic Name Merging
After the GeoTIFF files are created, nine species pairs are merged due to taxonomic reclassifications. These changes reflect current accepted names and improve dataset consistency.
Merged Species List: "Port_Furchon_merged_species_list.csv"
Merging Process:
Occurs after the individual .tiff files are created.
The GeoTIFFs for the previous and current names are combined into a single file under the current accepted name.
Species Occurrence Data Merging
Manually merge the presence/absence data for all species across 2005, 2014, and 2022 into a single dataset.
Ensure data consistency by aligning species names and resolving taxonomic differences where applicable.
How to Run the Workflow
1. Prepare Species List:
Ensure the input species list includes both historical and current taxonomic names for proper processing. Supply this list to variable species_names in GBIF_DOI_Species_Download.py.
2. Run Python Script GBIF_DOI_Species_Download.py
a. Supply credentials for GBIF access in script GBIF_DOI_Species_Download.py, define the location of the desired output folder then execute to download raw occurrence data (downloads as zip containing a tabular data file). The citation for the data download is provided by the script. The citation for the GBIF occurrence data used in this dataset is:
GBIF.org (14 November 2024) GBIF Occurrence Download https://doi.org/10.15468/dl.c88hxd
See https://techdocs.gbif.org/en/data-use/download-formats for more information about the GBIF occurrence data (simple) format.
3. Run Python Script GBIF_Species_Data_Filtered.py
Use GBIF_Species_Data_Filtered.py to clean and filter the data. Removes invalid or missing geospatial data (e.g., NA coordinates, outliers). Prepares the data for range mapping.
* Input: GBIF occurrence data (simple). This dataset used 0014997-241107131044228.csv (access at https://doi.org/10.15468/dl.c88hxd)
* Output: Individual .csv file per species (see filtered_species.zip). Example: Acetes_americanus_filtered.csv
4. Generate Range Maps:
Run R_gbig.ranges.r in R to create GeoTIFF files for each species.
* Input: filtered species csv files (see "filtered_species.zip"). Example: Achirus_lineatus_filtered.csv
* Output: GeoTIFF files for each species (see "tiff_outputs.zip"). Example: Achirus_lineatus_filtered_range.tif
Merge Taxonomically Revised Species:
Combine range maps for the nine species pairs listed above under their accepted names.
Chi-Squared Test for Independence
Run chi_square_test.py to perform a chi-squared test to evaluate whether the distributions of species presence (True) and absence (False) are significantly different across years.
* Data table from submitted file "species_latitudes.csv" was imported into the BCO-DMO data system for this dataset.
** In the BCO-DMO data system missing data identifiers are displayed according to the format of data you access. For example, in csv files it will be blank (null) values. In Matlab .mat files it will be NaN values. When viewing data online at BCO-DMO, the missing value will be shown as blank (null) values.
* Column names adjusted to conform to BCO-DMO naming conventions designed to support broad re-use by a variety of research tools and scripting languages. [Only numbers, letters, and underscores. Can not start with a number]
* Life Science Identifier (LSID) added to the table using the World Register of Marine Species (WoRMS) taxa match tool. All names matched exactly (or exact_subgenus) to WoRMS names on 2024-10-24 except Species provided as "Pattern not found" since it wasn't a species name. Note that some names are not the currently accepted synonym for the organism. Accepted names change over time and the LSID can be used to consult WoRMS for up to date information about the status of names used in this dataset.
* Primary data table attached to the dataset as Data file "941250_v1_species-latitudes.csv"
* Redacted authentication details from scripts. Comments and instructions clarify how to configure for running.
* script name updated before attaching as supplemental file GBFI_Species_Data_Filtered.py -> GBIF_Species_Data_Filtered.py
* Supplied file 0014997-241107131044228.csv (GBIF occurrence data download) was not added as a supplemental file. But instead cited as suggested by GBIF (see https://doi.org/10.15468/dl.c88hxd). File could not be added with attribution due to licensing conflicts.
Parameter | Description | Units |
Species | This column contains the species name (e.g. Acetes americanus) or 'Pattern not found.' | unitless |
Min_Latitude | minimum latitude point in range | decimal degrees |
Max_Latitude | maximum latitude point in range | decimal degrees |
Mean_Latitude | mean latitude point in range | decimal degrees |
LSID | Life Science Identfier (LSID) for the species name in the column 'Species'. | unitless |
NSF Award Abstract:
Coastal marshes provide a suite of vital functions that support natural and human communities. Humans frequently take for granted and exploit these ecosystem services without fully understanding the ecological feedbacks, linkages, and interdependencies of these processes to the wider ecosystem. As demands on coastal ecosystem services have risen, marshes have experienced substantial loss due to direct and indirect impacts from human activity. The rapidly changing coastal ecosystems of Louisiana provide a natural experiment for understanding how coastal change alters ecosystem function. This project is developing new metrics and tools to assess food web variability and test hypotheses on biodiversity and ecosystem function in coastal Louisiana. The research is determining how changing habitat configuration alters the distribution of energy across the seascape in a multitrophic system. This work is engaging students from the University of Louisiana Lafayette and Dillard University in placed-based learning by immersing them in the research and local restoration efforts to address land loss and preserve critical ecosystem services. Students are developing a deeper understanding of the complex issues facing coastal regions through formal course work, directed field work, and outreach. Students are interacting with stakeholders and managers who are currently battling coastal change. Their directed research projects are documenting changes in coastal habitat and coupling this knowledge with the consequences to ecosystems and the people who depend on them. By participating in the project students are emerging with knowledge and training that is making them into informed citizens and capable stewards of the future of our coastal ecosystems, while also preparing them for careers in STEM. The project is supporting two graduate students and a post-doc.
The transformation and movement of energy through a food web are key links between biodiversity and ecosystem function. A major hurdle to testing biodiversity ecosystem function theory is a limited ability to assess food web variability in space and time. This research is quantifying changing seascape structure, species diversity, and food web structure to better understand the relationship between biodiversity and energy flow through ecosystems. The project uses cutting edge tools and metrics to test hypotheses on how the distribution, abundance, and diversity of key species are altered by ecosystem change and how this affects function. The hypotheses driving the research are: 1) habitat is a more important indirect driver of trophic structure than a direct change to primary trophic pathways; and 2) horizontal and vertical diversity increases with habitat resource index. Stable isotope analysis is characterizing energy flow through the food web. Changes in horizontal and vertical diversity in a multitrophic system are being quantified using aerial surveys and field sampling. To assess the spatial and temporal change in food web resources, the project is combining results from stable isotope analysis and drone-based remote sensing technology to generate consumer specific energetic seascape maps (E-scapes) and trophic niche metrics. In combination these new metrics are providing insight into species’ responses to changing food web function across the seascape and through time.
This project is jointly funded by Biological Oceanography and the Established Program to Stimulate Competitive Research (EPSCoR).
This award reflects NSF's statutory mission and has been deemed worthy of support through evaluation using the Foundation's intellectual merit and broader impacts review criteria.
Funding Source | Award |
---|---|
NSF Division of Ocean Sciences (NSF OCE) |