This file provides hydrographic, carbon dioxide, and chemical data for the 112 stations occupied during R/V Meteor Cruise 22/5. Each line consists of a station number, cast number, bottle number, CTD pressure, CTD temperature, CTD salinity, potential temperature, bottle salinity, oxygen, silicate, phosphate, nitrate plus nitrite, CFC-11, CFC-12, total CO2, SOMMA number, total alkalinity, and data-quality flags. The file is sorted by station number and pressure and can be read by using the following FORTRAN 77 code [contained in a10dat.for (File 3)]:
Stated in tabular form, the contents include the following:CHARACTER qualt*11 INTEGER sta, cast, bot, pre, som REAL ctdtmp, ctdsal, theta, sal, oxy, silca REAL phspht, nitr, cfc11, cfc12, tcarb, talk read (1, 10, end=999) sta, cast, bot, pre, ctdtmp, 1 ctdsal, theta, sal, oxy, silca, phspht, nitr, 2 cfc11, cfc12, tcarb, som, talk, qualt 10 format (5X, I3, 7X, I1, 5X, I3, 4X, I4, 1X, F7.4, 1 1X, F7.4, 1X, F7.4, 1X, F9.4, 1X, F7.1, 1X, F7.2, 2 1X, F7.2, 1X, F7.2, 1X, F8.3, 1X, F8.3, 1X, F7.1, 3 5X, I2, 1X, F7.1, 2X, A11)
| Variable | Variable | Variable | Starting | Ending | sta | Numeric | cast | Numeric | bot | Numeric | pre | Numeric | ctdtmp | Numeric | ctdsal | Numeric | theta | Numeric | sal | Numeric | oxy | Numeric | silca | Numeric | phspht | Numeric | nitr | Numeric | cfc11 | Numeric | cfc12 | Numeric | tcarb | Numeric | som | Numeric | talk | Numeric | qualt | Character |
|---|
The variables defined as follows:
sta - is the station number;
cast - is the cast number;
bota - is the bottle number;
pre - is the CTD pressure (in dbar);
ctdtmp - is the CTD temperature (in °C);
ctdsala - is the CTD salinity [on the Practical Salinity Scale (PSS)];
theta - is the potential temperature (in °C);
sala - is the bottle salinity (on the PSS);
oxya - is the oxygen concentration (in µmol/kg);
silcaa - is the silicate concentration (in µmol/kg);
phsphta - is the phosphate concentration (in µmol/kg);
nitra - is the nitrate plus nitrite concentration (in µmol/kg);
cfc11a - is the trichlorofluoromethane-11 concentration (CCl3F) (in pmol/kg);
cfc12a - is the dichlorodifluoromethane-12 concentration (CCl2F2) (in pmol/kg);
tcarba - is the total carbon dioxide concentration (in µmol/kg);
som - is the SOMMA number;
talka - is the total alkalinity concentration (in µmol/kg);
qualt - is a 11-digit character variable that contains data-quality flag codes for parameters underlined with asterisks (*******) in the file header.
----------------------------------------------
aVariables that are underlined with asterisks in the data file's header 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 analysis was 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 not drawn for this measurement from this bottle.