This file provides the coefficients a, b, c, and d used to calculate TCO2 from the T, apparent oxygen utilization (AOU), and S. Each line of the file contains a longitude, latitude, offset coefficient a (below MLD), T coefficient b (below MLD), AOU coefficient c (below 1000 m), and S coefficient d (below MLD). The file is sorted by longitude and latitude and can be read by using the following FORTRAN 77 code [contained in coef_tco2.for (File 3)]:
Stated in tabular form, the contents include the following:REAL lon, lat, coefa, coefb, coefc, coefd read (1, 10, end=999) lon, lat, coefa, coefb, coefc, coefd 10 format (F6.1, 1X, F6.1, 2X, F11.4, 1X, F11.5, 1X, F12.6, 1 1X, F11.5)
| Variable | Variable | Variable | Starting | Ending | lon | Numeric | lat | Numeric | coefa | Numeric | coefb | Numeric | coefc | Numeric | coefd | Numeric |
|---|
lon - is the longitude for which coefficients were calculated;
lat - is the latitude for which coefficients were calculated;
coefa - is the offset coefficient a (for depths below MLD);
coefb - is the T coefficient b (for depths below MLD);
coefc - is the AOU coefficient c (for depths below MLD; and
coefd - is the S coefficient d (for depths below MLD).