8.5 p16ap17a.dat (File 7), p17ep19s.dat (File 8), and p19c.dat (File 9)

These files provide hydrographic, carbon dioxide, and chemical data for the all stations occupied during the R/V Knorr expeditions along WOCE Sections P16A/P17A, P17E/P19S, and P19C. Each record contains a station number, cast number, sample number, bottle number, CTD pressure, CTD temperature, CTD salinity, CTD oxygen, potential temperature, bottle salinity, oxygen, silicate, nitrate, nitrite, phosphate, CFC-11, CFC-12, TCO2, pCO2, pCO2 temperature, and data-quality flags. The files are sorted by station number and pressure and can be read by using the following FORTRAN 77 code [contained in data.for (File 3)]:

       CHARACTER qualt*13
       INTEGER sta, cast, samp, bot 
       REAL pre, ctdtmp, ctdsal, ctdoxy, theta, sal, oxy, silca
       REAL nitrat, nitrit, phspht, cfc11, cfc12, tcarb, pco2 
       REAL pco2tmp

      read (1, 10, end=999) sta, cast, samp, bot, pre, ctdtmp,
     1 ctdsal, ctdoxy, theta, sal, oxy, silca, nitrat, nitrit,
     2 phspht, cfc11, cfc12, tcarb, pco2, pco2tmp, qualt

 10    format (5X, I3, 7X, I1, 6X, I2, 6X, I2, 1X, F7.1, 1X, F7.4,
     1 1X, F7.4, 1X, F7.1, 1X, F7.4, 1X, F9.4, 1X, F7.1, 1X, F7.2,
     2 1X, F7.2, 1X, F7.2, 1X, F7.2, 1X, F8.3, 1X, F8.3, 1X, F7.1,
     3 1X, F7.2, 1X, F7.2, 1X, A13)       

Stated in tabular form, the contents include the following:

VariableVariable
type
Variable
width
Starting
column
Ending
column

sta Numeric368
castNumeric11616
sampNumeric22324
bot Numeric23132
pre Numeric73440
ctdtmpNumeric74248
ctdsalNumeric75056
ctdoxyNumeric75864
thetaNumeric76672
salNumeric97482
oxy Numeric78490
silcaNumeric 79298
nitratNumeric7100106
nitritNumeric7108114
phsphtNumeric7116122
cfc11Numeric 8124131
cfc12 Numeric8133140
tcarbNumeric 7142148
pco2Numeric7150156
pco2tmpNumeric7158164
qualtCharacter14166178

The variables defined as follows:

sta

is the station number;
castis the cast number;
sampis the sample number;
botais the bottle number;
pre is the CTD pressure (in dbar);
ctdtmpis the CTD temperature (in °C);
ctdsalais the CTD salinity [on the Practical Salinity Scale (PSS)];
ctdoxyais the CTD oxygen concentration (in µmol/kg);
thetais the potential temperature (in °C);
salais the bottle salinity (on the PSS);
oxyais the oxygen concentration (in µmol/kg);
silcaais the silicate concentration (in µmol/kg);
nitratais the nitrate concentration (in µmol/kg);
nitritais the nitrite concentration (in µmol/kg);
phsphtais the phosphate concentration (in µmol/kg);
cfc11ais the trichlorofluoromethane-11 concentration (CCl3F) (in pmol/kg);
cfc12ais the dichlorodifluoromethane-12 concentration (CCl2F2) (in pmol/kg);
tcarbais the total carbon dioxide concentration (in µmol/kg);
pco2ais the partial pressure of CO2 (in µatm and measured at pco2tmp);
pco2tmpis the temperature of equilibration of the pCO2 samples in the equilibrator (in °C);
qualtis a 13-digit character variable that contains data-quality flag codes for parameters marked with an asterisk (*) in the output file.


aVariables that are underlined with asterisks in the data files to indicate they have a data-quality flag. Data-quality flags are defined as follows:

1 = sample for this measurement was drawn from water bottle, but results of analyses were not received;
2 = acceptable measurement;
3 = questionable measurement;
4 = bad measurement;
5 = not reported;
6 = mean of replicate measurements;
7 = manual chromatographic peak measurement;
8 = irregular digital chromatographic peak integration;
9 = sample was not drawn for this measurement from this bottle.