Supplementary Data for "Sedimentary conditions drive modern pyrite burial flux to exceed oxidation"
Description
Supplementary Data for "Sedimentary conditions drive modern pyrite burial flux to exceed oxidation"
The Supplementary Data is divided into the following folders:
-
Model Validation
This folder contains a collection of downcore profiles used for model validation. The profiles were compiled from various datasets to assess the accuracy and performance of the model. This Folder also contains a Validation subfolder, where model-data fits for all profiles are shown. -
Raw Data
This folder includes all the original global datasets utilized in the study. These data were compiled from multiple sources and serve as the foundational input for the analysis presented in the publication. -
Processed Data
This folder contains the processed datasets, which include global products derived from the raw data. Additionally, it contains validation data that has been extracted and compiled for use in the study. Subfolders provide gridded global data used as model inputs and the corresponding gridded global outputs generated by the model. All gridded data is provided as comma-delimited.txtfiles.
Data Structure and Files
Within the processed data, you will find the following key files:
-
latitude.txt
Contains gridded latitude values. -
longitude.txt
Contains gridded longitude values. -
Variable Files (e.g.,
pyrite_burial_rate.txt):
Each variable you wish to work with or display is stored in its own file. -
Output Grids:
pyrite burial rate ispyrite_burial_rate.txtin g cm⁻² y⁻¹
pyrite isotopic composition isdelta_pyrite.txtin ‰ (permil)
pyrite formation depth isz_max.txtin cm
total depth-integrated pyrite content istotal_mols_pyrite.txtin mol cm⁻².
When working with the data, you need to combine the lat and long grids with the variable file of interest to visualize or analyze the dataset.
Working with the Data in MATLAB
If you are using MATLAB, you can display the data using the geoshow function. For example, to display the pyrite burial rate:
-
Read the Data:
latitude = read('latitude.txt');longitude = read('longitude.txt');data = read('pyrite_burial_rate.txt'); -
Display the Data on a World Map:
worldmap worldgeoshow(latitude, longitude, data, 'DisplayType', 'texturemap')set(gca,'ColorScale','log')Alternatively, you can use the providedplot_global_data.mfunction located in the/plotting_functionsModel folder.
Working with the Data in Python
If you are using Python, you can work with the gridded data as follows:
-
Read the Data:
import pandas as pdimport numpy as npimport matplotlib.pyplot as pltimport cartopy.crs as ccrsfrom matplotlib.colors import LogNormlatitude = pd.read_csv('GlobalGridsOutput/latitude.txt', delimiter=',', header=None).valueslongitude = pd.read_csv('GlobalGridsOutput/longitude.txt', delimiter=',', header=None).valuesdata = pd.read_csv('GlobalGridsOutput/pyrite_burial_rate.txt', delimiter=',', header=None).values -
Plotting the Data:
You can plot the data on a world map usingcartopy:fig = plt.figure(figsize=(10, 5))ax = plt.axes(projection=ccrs.PlateCarree())ax.coastlines()mesh = ax.pcolormesh(longitude, latitude, data, transform=ccrs.PlateCarree(), cmap='viridis')plt.colorbar(mesh, ax=ax, orientation='vertical', label='Pyrite Burial Rate')plt.show()
Files
Data.zip
Files
(3.6 GB)
| Name | Size | Download all |
|---|---|---|
|
md5:2d081e2ec68e6cce97e1aa9da297d835
|
3.6 GB | Preview Download |