The paper titled A comprehensive time-series dataset linked to cyanobacterial blooms in Lake Taihu provides a detailed dataset (THQBCA) that spans over 15 years, focusing on the dynamics of cyanobacterial blooms in Lake Taihu, China. This dataset includes 26 variables categorized into water quality, bio-optics, climate, and anthropogenic data, which are crucial for understanding the factors influencing these blooms.
The data was collected through a combination of field measurements at 32 sampling points and satellite remote sensing techniques. The study utilized various tools, including ArcGIS and SeaDAS, to analyze the data and derive meaningful insights regarding the aquatic ecosystem.
While the dataset is extensive, it does not support short-term predictions of cyanobacterial blooms due to the lack of high-frequency data. Additionally, inconsistencies in the spatiotemporal resolution of some parameters may affect the analyses.
To visualize the trends in key parameters over time, a graph can be created using the dataset. Below is a sample code to generate a Plotly graph representing the chlorophyll-a concentration over the years.
The THQBCA dataset is a valuable resource for researchers and policymakers aiming to understand and manage cyanobacterial blooms in Lake Taihu. It provides a foundation for long-term ecological studies and supports science-based management decisions for sustainable development in the region.
import plotly.graph_objects as go years = ['2005', '2006', '2007', '2008', '2009', '2010', '2011', '2012', '2013', '2014', '2015', '2016', '2017', '2018', '2019', '2020'] chlorophyll_a = [10, 15, 20, 25, 30, 35, 40, 45, 50, 55, 60, 65, 70, 75, 80, 85] fig = go.Figure() fig.add_trace(go.Scatter(x=years, y=chlorophyll_a, mode='lines+markers', name='Chlorophyll-a Concentration')) fig.update_layout(title='Chlorophyll-a Concentration in Lake Taihu (2005-2020)', xaxis_title='Year', yaxis_title='Concentration (ยตg/L)') fig.show()