This file contains underway pCO2 measurements taken along the cruise track during the R/V Meteor Cruise 18/1. Each line of the file contains a sampling date; sampling time; latitude; longitude; and measurements of sea surface salinity, temperature, and pCO2. The file is sorted by date and time and can be read by using the following FORTRAN 77 code [contained in uwpco2dat.for (File 4)]:
Stated in tabular form, the contents include the following:INTEGER day, month, year CHARACTER time*5 REAL latdcm, londcm, salt, temp, pco2 OPEN (unit=1, file='uwpco2.dat') OPEN (unit=2, file='uwpco2.data') write (2, 5) read (1, 10, end=999) day, month, year, time, latdcm, 1 londcm, salt, temp, pco2 10 format (I2, 2X, I1, 2X, I4, 2X, A5, 3X, F6.3, 3X, F7.3, 3X, 1 F7.4, 2X, F5.2, 2X, F5.1)
| Variable | Variable | Variable | Starting | Ending | day | Numeric | month | Numeric | year | Numeric | time | Character | latdcm | Numeric | londcm | Numeric | salt | Numeric | temp | Numeric | pco2 | Numeric |
|---|
where
day - is the sampling day;
month - is the sampling month;
year - is the sampling 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);
salt - is the sea surface salinity;
temp - is the sea surface temperature (oC);
pco2 - is the sea surface pCO2 (µ atm).