met153.dat (File 5)

This file provides hydrographic, carbon dioxide, and chemical data for the 111 stations occupied during R/V Meteor Cruise 15/3. Each line consists of a station number; cast number; sample number; bottle number; CTD pressure, temperature, salinity, and oxygen; potential temperature; bottle salinity; concentrations of oxygen, silicate, nitrate, nitrite, phosphate, total carbon dioxide, and total alkalinity; pCO2; pCO2 temperature; CFC-113; CCl4; CFC-12; CFC-11; 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 m153dat.for (File 3)]:

CHARACTER qualt*16 INTEGER sta, cast, samp, bot REAL pre, ctdtmp, ctdsal, ctdoxy, theta, sal, oxy, silca REAL nitrat, nitrit, phspht, tcarb, talk, pco2, pco2tmp REAL cfc113, ccl4, cfc12, cfc11 read (1, 10, end=999) sta, cast, samp, bot, pre, ctdtmp, 1 ctdsal, ctdoxy, theta, sal, oxy, silca, nitrat, nitrit, 2 phspht, tcarb, talk, pco2, pco2tmp, cfc113, ccl4, cfc12, 3 cfc11, qualt 10 format (5X, I3, 7X, I1, 6X, I2, 5X, I3, 2X, F6.1, 1X, F7.4, 1 3X, F9.4, 1X, F7.1, 1X, F7.4, 3X, F9.4, 1X, F7.1, 1X, F7.2, 2 1X, F7.2, 1X, F7.2, 1X, F7.2, 2X, F6.1, 1X, F7.1, 1X, F7.1, 3 1X, F7.2, 2X, F8.3, 2X, F8.3, 2X, F8.3, 2X, F8.3, 2X, A16)

Stated in tabular form, the contents include the following:

VariableVariable
type
Variable
width
Starting
column
Ending
column
staNumeric
3
6
8
castNumeric
1
16
16
sampNumeric
2
23
24
botNumeric
3
30
32
preNumeric
6
35
40
ctdtmpNumeric
7
42
48
ctdsalNumeric
9
52
60
ctdoxyNumeric
7
62
68
thetaNumeric
7
70
76
salNumeric
9
80
88
oxyNumeric
7
90
96
silcaNumeric
7
98
104
nitratNumeric
7
106
112
nitritNumeric
7
114
120
phsphtNumeric
7
122
128
tcarbNumeric
6
131
136
talkNumeric
7
146
152
pco2Numeric
7
146
152
pco2tmpNumeric
7
154
160
cfc113Numeric
8
163
170
ccl4Numeric
8
173
180
cfc12Numeric
8
183
190
cfc11Numeric
8
193
200
qualtCharacter
16
203
218

where

sta - is the station number;

cast - is the cast number;

samp - is the sample number;

bot* - is the bottle number;

pre - is the CTD pressure (dbar);

ctdtmp - is the CTD temperature (oC);

ctdsal* - is the CTD salinity [on the Practical Salinity Scale (PSS)];

ctdoxy* - is the CTD oxygen concentration (µ mol/kg);

theta - is the potential temperature (oC);

sal* - is the bottle salinity;

oxy* - is the oxygen concentration (µ mol/kg);

silcat* - is the silicate concentration (µ mol/kg);

nitrat* - is the nitrate concentration (µ mol/kg);

nitrit* - is the nitrite concentration (µ mol/kg);

phspht* - is the phosphate concentration (µ mol/kg);

tcarb* - is the total carbon dioxide concentration (µ mol/kg);

talk* - is the total alkalinity concentration (µ mol/kg);

pco2* - is the partial pressure of CO2(in µ atm and measured at 20oC; water-saturated air);

pco2tmp - is the temperature of equilibration of the pCO2 samples in equilibrator (in oC);

cfc113* - is the trichlorotrifluoroethane concentration (CCl2FCClF2) (in pmol/kg);

ccl4* - is the carbon tetrachloride concentration (in pmol/kg);

cfc12* - is the dichlorodifluoromethane-12 concentration (CCl3F (in pmol/kg);

cfc11* - is the trichlorofluoromethane-11 concentration (CCl2FCClF2) (in pmol/kg);

qualt - is a 16-digit character variable that contains data quality flag codes for parameters flagged by an asterisk (*) in the output file.

Quality flag definitions:

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.


akozyr 9/06/96