tun2sta.inv (File 4)

This file provides station inventory information for each of the 97 stations occupied during the R/V Thomas Washington TUNES-2 Expedition. Each line of the file contains an expocode, section number, station number, latitude, longitude, sampling date, sampling time, 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, depth REAL lat, lon CHARACTER expo*11, sect*8, date*8, time*4 read (1, 10, end=999) expo, sect, stat, lat, lon, date, 1 time, depth 10 format (A11, 3X, A8, 6X, I3, 2X, F7.3, 2X, F8.3, 2X, A8, 1 2X, A4, 2X, I4)

Stated in tabular form, the contents include the following:

VariableVariable
type
Variable
width
Starting
column
Ending
column
expoCharacter
11
1
11
sectCharacter
8
15
22
statNumeric
3
29
31
latNumeric
7
34
40
lonNumeric
8
43
50
dateCharacter
8
53
60
timeCharacter
4
63
66
depthNumeric
4
69
72

where

expo - is the expocode of the cruise;

sect - is the WOCE section number;

stat - is the station number (values range from 124 to 220);

lat - is the latitude of the station (in decimal degrees; negative values indicate the Southern Hemisphere);

lon - is the longitude of the station (in decimal degrees; negative values indicate the Western Hemisphere);

date - is the sampling date (month/day/year);

time - is the sampling time (GMT);

depth - is the sounding depth of the station (in meters).


akozyr 7/23/96