Skip to main content
OCADSAccess DataNDP-062NDP-062 - tun1sta.inv (File 4)

tun1sta.inv (File 4)

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

Stated in tabular form, the contents include the following:

Variable Variable type Variable width Starting column Ending column
expo Character 11 1 11
sect Character 4 13 16
stat Numeric 3 20 22
cast Numeric 1 28 28
date Character 6 32 37
time Character 4 40 43
latdcm Numeric 7 47 53
londcm Numeric 8 57 64
depth Numeric 4 68 71

where

expo  -  is the expocode of the cruise;
sect  -  is the WOCE section number;
stat  -  is the station number (values range from 1 to 123);
date  -  is the sampling date (month/day/year);
>time  -  is the sampling time at the bottom (Greenwich mean time);
latdcm  -  is the latitude of the station (in decimal degrees, negative values indicate the Southern Hemisphere);
londcm  -  is the longitude of the station (in decimal degrees, negative values indicate the Western Hemisphere); and
depth  -  is the corrected sounding bottom depth of the station (meters).
Last modified: 2021-03-17T18:30:27Z