The Surface Ocean CO₂ Atlas (SOCAT) contains measurements of the fugacity of CO₂ in seawater around the globe. But to calculate how much carbon the ocean is taking up from the atmosphere, these measurements need to be converted to the partial pressure of CO₂. We will convert the units by combining measurements of the surface temperature and fugacity. Python libraries (xarray, pandas, numpy) and the pyseaflux package facilitate this process.
In this example tutorial, our focus will be on running the oceanography dataset with Bacalhau, where we will investigate the data and convert the workload. This will enable the execution on the Bacalhau network, allowing us to leverage its distributed storage and compute resources.
Prerequisites
To get started, you need to install the Bacalhau client, see more information here
Running Locally
Downloading the dataset
For the purposes of this example we will use the SOCATv2022 dataset in the "Gridded" format from the SOCAT website and long-term global sea surface temperature data from NOAA - information about that dataset can be found here.
import fsspec # for reading remote files
import xarray as xr
# Open the zip archive using fsspec and load the data into xarray.Dataset
with fsspec.open("./inputs/SOCATv2022_tracks_gridded_monthly.nc.zip", compression='zip') as fp:
ds = xr.open_dataset(fp)
# Display information about the dataset
ds.info()
time_slice = slice("2010", "2020") # select a decade
res = ds['sst_ave_unwtd'].sel(tmnth=time_slice).mean(dim='tmnth') # compute the mean for this period
res.plot() # plot the result
We can see that the dataset contains latitude-longitude coordinates, the date, and a series of seawater measurements. Below is a plot of the average sea surface temperature (SST) between 2010 and 2020, where data have been collected by buoys and vessels.
Data Conversion
To convert the data from fugacity of CO2 (fCO2) to partial pressure of CO2 (pCO2) we will combine the measurements of the surface temperature and fugacity. The conversion is performed by the pyseaflux package.
Writing the Script
Let's create a new file called main.py and paste the following script in it:
# main.py
import fsspec
import xarray as xr
import pandas as pd
import numpy as np
import pyseaflux
def lon_360_to_180(ds=None, lonVar=None):
lonVar = "lon" if lonVar is None else lonVar
return (ds.assign_coords({lonVar: (((ds[lonVar] + 180) % 360) - 180)})
.sortby(lonVar)
.astype(dtype='float32', order='C'))
def center_dates(ds):
# start and end date
start_date = str(ds.time[0].dt.strftime('%Y-%m').values)
end_date = str(ds.time[-1].dt.strftime('%Y-%m').values)
# monthly dates centered on 15th of each month
dates = pd.date_range(start=f'{start_date}-01T00:00:00.000000000',
end=f'{end_date}-01T00:00:00.000000000',
freq='MS') + np.timedelta64(14, 'D')
return ds.assign(time=dates)
def get_and_process_sst(url=None):
# get noaa sst
if url is None:
url = ("/inputs/sst.mnmean.nc")
with fsspec.open(url) as fp:
ds = xr.open_dataset(fp)
ds = lon_360_to_180(ds)
ds = center_dates(ds)
return ds
def get_and_process_socat(url=None):
if url is None:
url = ("/inputs/SOCATv2022_tracks_gridded_monthly.nc.zip")
with fsspec.open(url, compression='zip') as fp:
ds = xr.open_dataset(fp)
ds = ds.rename({"xlon": "lon", "ylat": "lat", "tmnth": "time"})
ds = center_dates(ds)
return ds
def main():
print("Load SST and SOCAT data")
ds_sst = get_and_process_sst()
ds_socat = get_and_process_socat()
print("Merge datasets together")
time_slice = slice("1981-12", "2022-05")
ds_out = xr.merge([ds_sst['sst'].sel(time=time_slice),
ds_socat['fco2_ave_unwtd'].sel(time=time_slice)])
print("Calculate pco2 from fco2")
ds_out['pco2_ave_unwtd'] = xr.apply_ufunc(
pyseaflux.fCO2_to_pCO2,
ds_out['fco2_ave_unwtd'],
ds_out['sst'])
print("Add metadata")
ds_out['pco2_ave_unwtd'].attrs['units'] = 'uatm'
ds_out['pco2_ave_unwtd'].attrs['notes'] = ("calculated using" +
"NOAA OI SST V2" +
"and pyseaflux package")
print("Save data")
ds_out.to_zarr("/processed.zarr")
import shutil
shutil.make_archive("/outputs/processed.zarr", 'zip', "/processed.zarr")
print("Zarr file written to disk, job completed successfully")
if __name__ == "__main__":
main()
This code loads and processes SST and SOCAT data, combines them, computes pCO2, and saves the results for further use.
Upload the Data to IPFS
The simplest way to upload the data to IPFS is to use a third-party service to "pin" data to the IPFS network, to ensure that the data exists and is available. To do this you need an account with a pinning service like NFT.storage or Pinata. Once registered you can use their UI or API or SDKs to upload files.
This resulted in the IPFS CID of bafybeidunikexxu5qtuwc7eosjpuw6a75lxo7j5ezf3zurv52vbrmqwf6y.
Setting up Docker Container
We will create a Dockerfile and add the desired configuration to the file. These commands specify how the image will be built, and what extra requirements will be included.
Job status: You can check the status of the job using bacalhau job list.
bacalhau job list --id-filter ${JOB_ID}
When it says Published or Completed, that means the job is done, and we can get the results.
Job information: You can find out more information about your job by using bacalhau job describe.
bacalhau job describe ${JOB_ID}
Job download: You can download your job results directly by using bacalhau job get. Alternatively, you can choose to create a directory to store your results. In the command below, we created a directory (results) and downloaded our job output to be stored in that directory.
rm -rf results
mkdir -p ./results # Temporary directory to store the results
bacalhau job get ${JOB_ID} --output-dir ./results # Download the results