This file provides station inventory information for each of the 78 stations occupied during R/V Meteor Cruise 11/5. Each line contains a section number, station number, latitude, longitude, sampling date, and sounding depth. The file is sorted by station number and can be read by using the following FORTRAN 77 code [contained in stainv.for (File 2)]:
INTEGER STAT, MONTH, DAY, YEAR, SDE REAL LAT, LON CHARACTER SECTION*4 READ (5, 10, end=999) SECTION, STAT, LAT, LON, MONTH, 1 DAY, YEAR, SDE 10 FORMAT (A4, 2X, I3, 1X, F7.3, 2X, F7.3, 2X, I1, 1X, I2, 1 1X, I2, 2X, I4)
Stated in tabular form, the contents include the following:
| Variable | Variable | Variable | Starting | Ending | SECTION | Character | STAT | Numeric | LAT | Numeric | LON | Numeric | MONTH | Numeric | DAY | Numeric | YEAR | Numeric | SDE | Numeric |
|---|
where
SECTION - is the WOCE section number;
STAT - is the station number (values range from 102 to 179);
LAT - is the latitude of the station (in decimal degrees);
LON - is the longitude of the station (in decimal degrees);
MONTH - is the month the station was sampled;
DAY - is the day the station was sampled;
YEAR - is the year the station was sampled;
SDE - is the sounding depth of the station (in meters).