Skip to main content

m153sta.inv (File 4)

This file provides station inventory information for each of the 111 stations occupied during R/V Meteor Cruise 15/3. Each line 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 CHARACTER date*7, expo*8, sect*2, time*4 REAL latdcm, londcm read (1, 10, end=999) expo, sect, stat, cast, date, time, 1 latdcm, londcm, depth 10 format (2X, A8, 2X, A2, 7X, I3, 7X, I1, 2X, A7, 3X, A4, 4X, 1 F7.3, 4X, F7.3, 4X, I4)

Stated in tabular form, the contents include the following:

Variable Variable
type
Variable
width
Starting
column
Ending
column
expo Character 8 3 10 sect Character 2 13 14 stat Numeric 3 22 24 cast Numeric 1 32 32 date Character 7 35 41 time Character 4 45 48 latdcm Numeric 7 53 59 londcm Numeric 7 64 70 depth Numeric 4 75 78

where

expo - is the expocode of the cruise;

sect - is the WOCE section number (i.e., A9);

stat - is the station number (values range from 122 to 232);

cast - is the cast number;

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

time - is the sampling time (GMT);

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);

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


akozyr 9/06/96
Last modified: 2021-03-17T18:30:27Z