8.4 p16ap17a.sta (File 4), p17ep19s.sta (File 5), and p19c.sta (File 6)

These files provide station inventory information for each of the 422 stations occupied during the R/V Knorr expeditions along WOCE Sections P16A/P17A, P17E/P19S, and P19C Each record of the files contains an expocode, section number, station number, cast number, sampling date, sampling time, latitude, longitude, and sounding bottom depth. The files are sorted by station number and can be read by using the following FORTRAN 77 code [contained in stainv.for (File 2)]:

       INTEGER  stat, cast, depth
       REAL latdcm, londcm 
       CHARACTER expo*10, sect*9, date*6, time*4
          
       read (1, 10, end=999) expo, sect, stat, cast, date, time,
     1 latdcm, londcm, depth

 10    format (A10, 2X, A9, 3X, I3, 5X, I1, 3X, A10, 2X, A4, 3X,
     1 F7.3, 3X, F8.3, 3X, I4)       

Stated in tabular form, the contents include the following:


VariableVariable
type
Variable
width
Starting
column
Ending
column

expoCharacter10110
sectCharacter91321
statNumeric3 2527
castNumeric13333
dateCharacter63746
timeCharacter44952
latdcmNumeric75662
londcmNumeric86673
depthNumeric 47780

The variables are defined as follows:
expois the expocode of the cruise;
sectis the WOCE section number;
statis the station number;
castis the cast number;
dateis the sampling date (month/day/year);
timeis the sampling time (Greenwich mean time);
latis the latitude of the station (in decimal degrees; negative values indicate the Southern Hemisphere);
lonis the longitude of the station (in decimal degrees; negative values indicate the Western Hemisphere);
depthis the sounding depth of the station (in meters).