These files provide the interpolated TCO2 fields calculated annually and for each quarter (tco2_ann.dat, tco2_djf.dat, tco2_mam.dat, tco2_jja.dat, and tco2_son.dat). The files are sorted by longitude and latitude and can be read by using the following FORTRAN 77 code [contained in tco2dat.for (File 6)]:
Stated in tabular form, the contents include the following:REAL lon, lat, dep, mld, trco2, tmp, aou, sal read (1, 10, end=999) lon, lat, dep, mld, trco2, tmp, 1 aou, sal 10 format (F7.1, 1X, F6.1, 1X, F7.1, 1X, F7.1, 1X, F9.1, 1 1X, F7.3, 1X, F7.3, 1X, F7.3)
| Variable | Variable | Variable | Starting | Ending | lon | Numeric | lat | Numeric | dep | Numeric | mld | Numeric | tco2 | Numeric | tmp | Numeric | aou | Numeric | sal | Numeric |
|---|
The variables are defined as follows:
lon - is the longitude for which TCO2 was calculated;
lat - is the latitude for which TCO2 was calculated;
dep - is the depth for which TCO2 was calculated (m);
mld - is the maximum layer depth (m);
talk - is the total carbon dioxide (µmol/kg);
tmp - is the temperature (°C);
aou - is the apparent oxygen utilization (µmol/kg); and
sal - is the salinity.