Skip to main content
OCADSAccess DataNDP-080NDP-080 - i*.dat (Files 13-21)

i*.dat (Files 13-21)

These files,i08si09s.dat, i09n.dat, i08ni05e.dat, i03.dat, i05wi04.dat, i07n.dat, i01.dat, i10.dat, and i02.dat, provide hydrographic, carbon dioxide, and chemical data for all stations occupied during the R/V Knorr cruises along WOCE Sections I8SI9S, I9N, I8NI5E, I3, I5WI4, I7N, I1, I10, and I2. Each line consists of station number, cast number, sample number, bottle number, CTD pressure, CTD temperature, CTD salinity, CTD oxygen, potential temperature, bottle salinity, bottle oxygen, silicate, nitrate, nitrite, phosphate, CFC-11, CFC-12, TCO2, TALK, 14C, 14C error, 13C, and data-quality flags. The files are sorted by station number and pressure and can be read by using the following FORTRAN 90 code [contained in IOstainv.for ( File 3)]:

 CHARACTER qualt*15, bot*6
           INTEGER sta, cast, samp
           REAL pre, ctdtmp, ctdsal, ctdoxy, theta, sal, oxy, silca
           REAL nitrat, nitrit, phspht, cfc11, cfc12, tcarb, alkali
           REAL delc14, c14er, delc13

           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, alkali, delc14, c14er, delc13,
         3 qualt

     10    format (4X, I4, 7X, I1, 6X, I2, 2X, A6, 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.1, 1X, F7.1, 1X, F7.1, 1X, F7.1, 1X, A15)

tated in tabular form, the contents include the following:

Variable Variable type Variable width Starting column Ending column
sta Numeric 4 5 8
cast Numeric 1 16 16
samp Numeric 2 23 24
bot Character 6 27 32
pre Numeric 7 34 40
ctdtmp Numeric 7 42 48
ctdsal Numeric 7 50 56
ctdoxy Numeric 7 58 64
theta Numeric 7 66 72
sal Numeric 9 74 82
oxy Numeric 7 84 90
silica Numeric 7 92 98
nitrat Numeric 7 100 106
nitrit Numeric 7 108 114
phspht Numeric 7 116 122
cfc11 Numeric 8 124 131
cfc12 Numeric 8 133 140
tcarb Numeric 7 142 148
alkali Numeric 7 150 156
delc14 Numeric 7 158 164
c14er Numeric 7 166 172
delc13 Numeric 7 174 180
qualt Character 15 182 196

The variables are defined as follows:

sta  -  station number
cast  -  cast number
samp  -  sample number
bot*  -  bottle number
pre  -  CTD pressure (dbar)
ctdtmp  -  CTD temperature (°C)
ctdsal*  -  CTD salinity [on the Practical Salinity Scale (PSS)]
tdoxy*  -  CTD oxygen (µmol/kg)
theta  -  potential temperature (°C)
sal*  -  bottle salinity (on the PSS)
oxy*  -  oxygen concentration (µmol/kg)
silca*  -  silicate concentration (µmol/kg)
nitrat*  -  nitrate concentration (µmol/kg)
nitrit*  -  nitrite concentration (µmol/kg)
phspht*  -  phosphate concentration (µmol/kg)
cfc11*  -  chlorofluorocarbon 11 (pmol/kg)
cfc12*  -  chlorofluorocarbon 12(pmol/kg)
tcarb*  -  total carbon dioxide concentration (µmol/kg)
alkali*  -  total alkalinity (µmol/kg)
delc14*  -  radiocarbon delta 14C (per mille)
c14er  -  error of delta 14C (percent)
delc13*  -  is the radiocarbon delta 13C (per mille);
qualt  -  15-digit character variable that contains data-quality flag codes for parameters underlined with asterisks (*******) in the file header

*Variables 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
Last modified: 2021-03-17T18:30:28Z