Published July 21, 2025 | Version v4
Dataset Open

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:

  1. 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. 

  2. 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.

  3. 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 .txt files.

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 is pyrite_burial_rate.txt in g cm⁻² y⁻¹
    pyrite isotopic composition is delta_pyrite.txt in ‰ (permil)
    pyrite formation depth is z_max.txt in cm
    total depth-integrated pyrite content is total_mols_pyrite.txt in 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:

  1. Read the Data:

    latitude = read('latitude.txt');
    longitude = read('longitude.txt');
    data = read('pyrite_burial_rate.txt');
  2. Display the Data on a World Map:

     
    worldmap world
    geoshow(latitude, longitude, data, 'DisplayType', 'texturemap')
    set(gca,'ColorScale','log')
     
    Alternatively, you can use the provided plot_global_data.m function located in the /plotting_functions Model folder. 
     

Working with the Data in Python

If you are using Python, you can work with the gridded data as follows: 

  1. Read the Data:

    import pandas as pd
    import numpy as np
    import matplotlib.pyplot as plt
    import cartopy.crs as ccrs
    from matplotlib.colors import LogNorm
     
    latitude = pd.read_csv('GlobalGridsOutput/latitude.txt', delimiter=',', header=None).values
    longitude = pd.read_csv('GlobalGridsOutput/longitude.txt', delimiter=',', header=None).values
    data = pd.read_csv('GlobalGridsOutput/pyrite_burial_rate.txt', delimiter=',', header=None).values

     

  2. Plotting the Data:
    You can plot the data on a world map using cartopy:

     
    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