Description of the WHP-Exchange Format#
Introduction#
This document will describe the WHP-Exchange formats used by the CCHDO for CTD and bottle. The WHP-exchange formats provide simplified exchange and improved readability of hydrographic data. WHP-exchange data files carry the essential information from CTD and water sample profiles. WHP-exchange is a rigorously-described comma-delimited (csv) format designed to ease data exchange and simplify data import.
Overview#
The WHP-exchange bottle and CTD data formats include these features:
UTF-8 Encoded
Spreadsheet-like
Comma-delimited values (csv)
No special meaning to blank/empty spaces
Station information in every line in the file (bottle) or in the top lines in each file (CTD)
Only one missing data value defined for all parameters
Positions in decimal degrees
Dates in ISO 8601 YYYYMMDD format
File Types and Names#
There are three types of WHP-exchange format files, each with a unique 8-character suffix:
Data Type |
Filename Suffix |
Description |
---|---|---|
CTD data |
_ct1.csv |
One CTD profile in WHP-exchange format |
CTD data |
_ct1.zip |
Zip archive containing one or more _ct1.csv WHP-exchange CTD files |
Bottle data |
_hy1.csv |
Data from one or more bottle profiles in WHP-exchange format |
Requirement Levels#
The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”, “SHOULD”, “SHOULD NOT”, “RECOMMENDED”, “MAY”, and “OPTIONAL” in this document are to be interpreted as described in RFC 2119.
About Text Encodings and UTF-8#
Text on Computers#
As strange as it may seem, there is no such thing in computing as ‘plain text’. Computers only understand binary, on or off, commonly represented by zeros and ones. For a series of zeros and ones to have meaning to humans, there needs to be an agreed upon standard for what any specific set of binary data represents. As an example, in 8-bit ASCII (ANSI X3.4-1986) the capital letter A is represented by the binary 01000001 (hex 41). 7-bit ASCII is limited to representing 127 characters, which is fine for most English speaking countries.
As the use of computers spread to non english speaking countries, it became necessary to extend the encodings to support other characters needed. However, most systems still only supported 8-bit bytes, with a maximum of 255 different characters it could represent. With more characters needing to be represented than space available, a proliferation of incompatible encoding standards occurred. There are at least 15 parts of ISO 8859, 6 JIS standards for Japanese, 3 for Chinese, 9 encodings specific to the Windows operating system, and 16 DOS code pages. Unicode was created to provide a unified way of representing all the characters which occur in most writing systems, including those of dead languages.
The unicode standard itself is not an encoding standard, but rather a list characters with a number assigned to each one, these numbers are what are called code points. For example, the capital letter A is the 65th letter in unicode, usually written in the hex 41. In the standard way of writing code points, this would be written as U+0041. You may notice that the unicode point for the capital letter A is the same as in ASCII, this feature was exploited to create the most common text encoding on the internet, UTF-8.
Character encodings were created to represent, in binary, all the code points allowed within unicode. One encoding in particular has become the dominant one for text on the internet [1], UTF-8. UTF-8 is a variable length encoding, meaning a character can take anywhere from 1 to 6 bytes to represent. In UTF-8 the first 127 characters of unicode are encoded with only byte. Since the first 127 code points in unicode are exactly the same as ASCII, the UTF-8 representation of any unicode character less than 128 is ASCII. This allows forward compatibility of ASCII with UTF-8, and if containing only code points below 128, a UTF-8 file to be backwards compatible with ASCII.
Unicode Representation in this Document#
Character in this document will be defined as unicode points in the format U+#### where the # symbols are hexadecimal numbers. Since exchange files are defined to be UTF-8 encoded, this unambiguously specifies the exact bits which must occur in a file.
Common Format Features#
Certain format specifications are shared between the bottle and CTD WHP-exchange files. Those common features are described in this section.
File Requirements#
Encoding#
WHP-exchange text files MUST be UTF-8 encoded.
Note
UTF-8 was chosen as the encoding for WHP-Exchange files because it is backwards compatible with ASCII. Valid ASCII files are also valid UTF-8 files. UTF-8 allows for the full range of unicode points to display non ASCII text.
Warning
Be careful if editing or creating files on Windows as the default text encoding is UTF-16. UTF-16 is not compatible with UTF-8 or ASCII.
Byte Order Marks#
The UTF-8 encoded files MUST NOT include a BYTE ORDER MARK (U+FEFF).
Note
Not including a byte order mark ensures backwards compatibility with ASCII when the file contains only code points less than U+007F.
Line Endings#
Lines in an exchange text file MUST end with a LINE FEED (U+000A) \n
.
Lines MUST NOT use any other form of line ending.
Changed in version 1.3: Disallow non “unix style” line endings.
File Format Indicator#
The first bytes of a WHP-exchange file MUST contain a file identifier and SHOULD have a creation stamp separated by a COMMA (U+002C) ,
.
Bottle File Indicator#
The first bytes of a WHP-exchange bottle file must be the following 6 byte sequence 42 4F 54 54 4C 45
.
This is equivalent to BOTTLE
when encoded in UTF-8.
CTD File Indicator#
The first bytes of a WHP-exchange CTD file must be the following 3 byte sequence 43 54 44
.
This is equivalent to CTD
when encoded in UTF-8.
Note
If while attempting to read a WHP-exchange file and the first line does not start with either byte sequence listed above an attempt to read the rest of the file will likely fail. When writing a WHP-exchange format reader, always check if this identification stamp is present and has a valid value.
Creation Stamp Convention#
The creation stamp SHOULD contain the following information in the order presented, using the stamp 20140716CCHSIOSCD
as an example:
20140716CCHSIOSCD: A date stamp in the from of YYYYMMDD (ISO 8601)
20140716CCHSIOSCD: The division (or group) of the institution that wrote the file, typically three characters. The CCHDO uses CCH as the division.
20140716CCHSIOSCD: The institution that the group is associated with, typically three characters. The CCHDO is located at the Scripps Institution of Oceanography, thus SIO is used.
20140716CCHSIOSCD: The initials of the person who wrote the file, typically three characters. Use only code points U+0041 to U+005A and for the initials. In this example, SCD.
Warning
Do not rely on the creation stamp to be the same length in every WHP-exchange file. While all the same elements SHOULD be present, their lengths may vary.
Examples#
A bottle file identifier including a creation stamp might look like:
BOTTLE,20140716CCHSIOSCD
A CTD file identifier including a creation stamp might look like:
CTD,20140716CCHSIOSCD
Changed in version 1.3: Made explicit the exact bytes which should appear at the start of a file. Demote the file creation stamp to a strong reccomendation.
Optional Comment Lines#
After the File Identification Stamp any number of comment line, including none may appear.
Comment lines start with a NUMBER SIGN (U+0023) #
.
Comment lines typically contain information about the file history and will often contain data citation information.
An example:
# This is one line of comments
# An additional line of comments
An example of the beginning of a file, including the File Identification Stamp:
BOTTLE,20140716CCHSIOSCD
# This is a comment line
# BOTTLE,20130215CCHSIOSCD
Note
Notice that an older File Identification Stamp is in a comment line. This is a convention often used by the CCHDO to record when changes were made to files
Warning
Comments may contain UTF-8 encoded code points above U+007F, especially in proper names that may be present with data citation information. If writing your own WHP-exchange reader, ensure that it can handle code points above U+007F or have it skip comment lines without trying to read them.
Parameter and Unit Lines#
Warning
There are additional headers specific to CTD WHP-exchange files. See the Additional CTD Headers section for details on these additional headers.
After any format specific headers, the parameter and unit lines are next. The parameter names are first, units are second.
Parameter names are COMMA (U+002C) ,
separated values that define the columns the exchange file will contain.
The names must be unique, capitalized, contain no empty fields, and not end with a trailing comma.
The parameter names must contain only code points in the range U+0021 to U+007E except a COMMA (U+002C) ,
.
A trailing comma, or a comma that occurs at the end of the line with nothing else after it, MUST NOT be included on the parameter line.
Certain parameter names, or parameter combinations, are required to be present.
See the respective sections on Required Bottle Parameters and CTD required headers for information specific to each format.
The unit line contains information for the units of each parameter listed in the parameter line.
The unit line, like the parameters, are comma separated values.
Like the parameter names, units must contain only code points in the range U+0021 to U+007E except a COMMA (U+002C) ,
.
A trailing comma MUST NOT be included in the unit line.
Units may contain empty fields if the parameter has no units.
Units for a parameter must be in the same column as that parameter, essentially, the same number of commas occur before the parameter name and its unit.
Warning
Parameter names and units MUST NOT contain commas as part of the name or unit. Commas are reserved for separating the, names, units, and data into columns.
The parameter and unit lines of a CTD file might look like this:
CTDPRS,CTDPRS_FLAG_W,CTDTMP,CTDSAL,CTDOXY
DBAR,,ITS-90,PSS-78,UMOL/KG
Note the presence of quality flag column (suffixed with _FLAG_W
) which has the corresponding units of nothing denoted by two commas next to each other.
For more information on quality flags, see the Quality Codes section.
White space MUST have no meaning in the exchange format so it may be included for purely aesthetic reasons.
The parameter and units could very easily have looked like:
CTDPRS, CTDPRS_FLAG_W, CTDTMP, CTDSAL, CTDOXY
DBAR, , ITS-90, PSS-78, UMOL/KG
Note
Some technical details for formatting the whitespace.
While not strictly required, parameter, units, and data lines may contain whitespace matching the length of the print format of the parameter. This is a convention followed by the CCHDO to ease reading of files by humans. Quality flag columns usually have a 1 character width which will often cause the parameter/units and data to not be aligned into pretty columns.
Data Lines#
The data lines occur directly after the unit line.
Each line of data contains COMMA (U+002C) ,
separated values of related data.
Each data point of the data line may contain any combination of characters from U+0020 to U+007F except a COMMA (U+002C) ,
.
Like the Parameter and Unit Lines, a trailing comma MUST NOT be included at the end of each line.
Data points for each parameter of the Parameter and Unit Lines must be in the same column as that parameter, i.e. the same number of commas occur before the parameter label and the datum.
Numeric data which occurs on the data lines MUST only contain numbers, spaces, an optional decimal marker, and an optional negative sign.
All whitespace within data lines has no semantic meaning.
Integers may be represented as bare numerals with no decimal marker.
All real numeric data (i.e. data that are real numbers) MUST be decimal and MUST represent their decimal mark using a FULL STOP (U+002E) .
.
For both negative real numbers and integers, prepend a HYPHEN-MINUS (U+002D) -
to the numeric portion, positive real numbers MUST NOT be prefixed by a PLUS SIGN (U+002B) +
.
The validity of each datum is determined by the parameter column in which it occurs.
For example, the EXPOCODE column may contain any combination of letter, numbers, or symbols (except a comma).
A CTDPRS column may only contain real decimal numbers (U+0030 to U+0039) using a FULL STOP (U+002E) .
as the decimal mark.
Note
Parameters may have a different precision depending on how the measurement was made. The CCHDO maintains a list of parameter names which includes precisions for historic reasons. Previous versions of the Exchange format specification stated the CCHDO would pad “meaningless” zeros to the end of any data without enough precision. Newer software allows the CCHDO to keep the precision as reported, both less and more precise. For these and other reasons, a mix of precisions may occur in a column of data.
Always report the precision as measured.
Warning
The exchange format currently has no support for quoted strings within the parameter, unit, and data lines. This means it is not possible for any meaningful whitespace to be included.
After all data lines, the end of the data is indicated by a line containing only END_DATA
.
Here is a short example of what exchange data might look like:
2.0,2, 19.1840, 34.6935, 220.8
4.0,2, 19.1992, 34.6924, 220.7
6.0,2, 19.2002, 34.6922, 220.5
8.0,2, 19.2022, 34.6920, 220.5
END_DATA
Missing Data Values#
Missing data may occur in any position of a column of data, including all positions.
When data are missing from a column, a fill value must be used to indicate “no data”.
The fill value in exchange files is HYPHEN-MINUS (U+002D) -
followed by three DIGIT NINE (U+0039) 9
, i.e. -999
.
No other characters other than whitespace should occur within the missing data position.
Missing data values MAY still have Quality Codes associated which can give information as to why the data are missing.
Here is an example of exchange data with missing values:
2.0,2, 19.1840, 34.6935, 220.8
4.0,2, -999, 34.6924, 220.7
6.0,2, 19.2002, 34.6922, -999
8.0,2, 19.2022, 34.6920, 220.5
END_DATA
Note
Previous versions of the exchange format specified that the fill value should be in the precision of the rest of the column.
For example, if a salinity was missing from a column, it would have the fill value of -999.0000
.
This has changed for several reasons:
The precision of the data within a column is not fixed.
A few parameters have valid range which includes -999 as a numeric value.
When encountering older exchange files, the fill value might contain the extra zeros after the decimal point. In the majority of cases, these are fill values and not numeric values.
Post Data Content#
After the END_DATA
line, any additional content may be included without format restriction.
Additional content after END_DATA
MUST continue to be UTF-8 encoded.
Examples#
Full examples of data in exchange format are presented in their specific sections:
Bottle Specific#
Exchange Bottle files follow all the common format specifications for their structure.
The File Format Indicator of an exchange bottle file starts with BOTTLE
.
Each data line in an exchange bottle file represents a single bottle closure.
When ctd parameters are encountered within exchange bottle files (e.g. CTDPRS) they represent the corrected values being read by the CTD at the time of bottle closure, usually averaged over some interval.
In bottle files, specific parameters are REQUIRED to be present and have non fill values.
Required Bottle Parameters#
The following parameters are REQUIRED to be present in exchange bottle files where the parameter name occurs within the Parameter and Unit Lines and their values be present in the Data Lines.
Changed in version 1.3: Removed BTLNBR as being one of two options for required columns.
Unique Line Identification#
Since each data line of an exchange bottle file represents a single bottle closure, enough information must be present on each line to uniquely identify closure event. This is to allow the integration of all the measurements of samples taken from that bottle at a later time. The identification is done by requiring a combination of values from specific parameters to be unique throughout the file.
The following combination of parameters must have unique values:
Changed in version 1.3: Removed BTLNBR as a being a valid identifier for samples.
Unique Line Identification Examples#
In these examples, the long parameter, unit, and data lines truncated by [...]
.
The following example exchange bottle data is all from the same cruise
indicated by the expocode: 33RO20131223
, the same station: 1
, the same cast 2
, but the bottle number and sample numbers
differ (24
and 23
).
1 BOTTLE,20150327CCHSIORJL
2 # From submitted file a16s_2013_final_discrete_o2.csv:
3 # Merged parameters: OXYGEN_FLAG_W
4 EXPOCODE,STNNBR,CASTNO,SAMPNO,BTLNBR[...]
5 ,,,,[...]
6 33RO20131223, 1, 2, 24, 24[...]
7 33RO20131223, 1, 2, 23, 23[...]
8 END_DATA
The following example shows an example of duplicated unique identification parameter values. More than one line contains the exact same values for EXPOCODE, STNNBR, CASTNO, and SAMPNO.
1 BOTTLE,20150327CCHSIORJL
2 # From submitted file a16s_2013_final_discrete_o2.csv:
3 # Merged parameters: OXYGEN_FLAG_W
4 EXPOCODE,STNNBR,CASTNO,SAMPNO,BTLNBR[...]
5 ,,,,[...]
6 33RO20131223, 1, 2, 24, 24[...]
7 33RO20131223, 1, 2, 24, 23[...]
8 END_DATA
Example Bottle Data#
1BOTTLE,20150327CCHSIORJL
2# From submitted file a16s_2013_final_discrete_o2.csv:
3# Merged parameters: OXYGEN_FLAG_W
4EXPOCODE,SECT_ID,STNNBR,CASTNO,SAMPNO,BTLNBR,BTLNBR_FLAG_W,DATE,TIME,LATITUDE,LONGITUDE,DEPTH,CTDPRS,CTDTMP,CTDSAL,CTDSAL_FLAG_W,SALNTY,SALNTY_FLAG_W,CTDOXY,CTDOXY_FLAG_W,OXYGEN,OXYGEN_FLAG_W
5,,,,,,,,,,,METERS,DBAR,ITS-90,PSS-78,,PSS-78,,UMOL/KG,,UMOL/KG,
633RO20131223, A16S, 1, 2, 24, 24,2,20131226, 0706, -6.0016, -24.9998, 5809, 3.9, 26.2239, 36.3097,2, 36.3082,2, 199.1,2, 201.2,2
733RO20131223, A16S, 1, 2, 23, 23,2,20131226, 0704, -6.0016, -24.9998, 5809, 22.5, 26.2331, 36.3090,2, 36.3171,2, 199.4,2, 201.3,2
833RO20131223, A16S, 1, 2, 22, 22,2,20131226, 0702, -6.0016, -24.9998, 5809, 47.4, 26.2335, 36.3078,2, 36.3080,2, 200,2, 201.9,2
933RO20131223, A16S, 1, 2, 21, 21,2,20131226, 0700, -6.0016, -24.9998, 5809, 72.1, 26.2112, 36.3044,2, 36.3055,2, 200.6,2, 201,2
1033RO20131223, A16S, 1, 2, 20, 20,2,20131226, 0658, -6.0016, -24.9998, 5809, 97.5, 24.2160, 36.1165,2, 36.1258,2, 193.2,2, 190.1,2
11END_DATA
The basic strucutre is:
Line 1: File Format Indicator starting with
BOTTLE
Line 2, 3: Optional Comment Lines
Lines 3, 4: Parameter and Unit Lines
Lines 6-11: Data Lines.
CTD Specific#
Exchange CTD files follow all the common format specifications with the addition of some header information. They MUST only contain one profile per file.
Additional CTD Headers#
Rather than encode information which would remain constant throughout the cast with the Data Lines, Exchange CTD files store this information in headers that appear after the Optional Comment Lines, but before the Parameter and Unit Lines. These headers follow the basic form:
PARAM = VALUE
Where the PARAM
is some parameter name (e.g. DEPTH
) and the VALUE
is the value for that parameter (e.g. 4523
).
The PARAM
, with the exception of NUMBER_HEADERS, MAY be any parameter in the Parameters section.
The format of VALUE
must conform to the data type listed for the parameter in the Parameters section.
The PARAM
and VALUE
are separated by a EQUALS SIGN (U+003D) =
, there is no meaning to any whitespace.
Each param-value pair ends end with a line-ending character.
There is no limit to how many headers may be present, as long the NUMBER_HEADERS value is set correctly.
Note
Any parameter which has a constant value for the entire cast MAY appear in the CTD Headers if the parameter has the “profile” scope in the parameters database.
Here is an example of a complete set of CTD headers (note that we have included line numbers, these are not part of the header):
1NUMBER_HEADERS = 10
2EXPOCODE = 318M20130321
3SECT_ID = P02W
4STNNBR = 1
5CASTNO = 2
6DATE = 20130322
7TIME = 2205
8LATITUDE = 32.5068
9LONGITUDE = 133.0297
10DEPTH = 166
Notice three things: the special NUMBER_HEADERS
parameter, the parameter names are all caps, and none of the parameters have units.
The units for each parameter are defined by convention rather than explicitly stated in each file, see the CTD required headers for information on which headers are required.
CTD required headers#
The following CTD headers are REQUIRED, see the Parameters section for the description of each, except for the NUMBER_HEADERS which is described below:
Note
TIME is not a required parameter, this is not an omission from the list above.
Warning
There is no support for including units in the CTD headers it is not recommended that any parameters which could have multiple units be included in the CTD headers.
Usually the optional DEPTH parameter is the only one with units commonly found in CTD headers, it MUST be in meters when included in the CTD headers.
NUMBER_HEADERS#
The NUMBER_HEADERS
parameter is an integer describing how many lines the headers will be before the parameter and unit lines.
The value of NUMBER_HEADERS
includes itself it is REQUIRED and MUST be the first line after any Optional Comment Lines.
Warning
The most common mistake with Exchange CTD Headers is not including the NUMBER_HEADERS
line in the calculation of the number of lines the headers occupy.
It would be incorrect in the above example to have NUMBER_HEADERS = 9
.
CTD Optional Headers#
The following CTD headers are optional, but encountered frequently within ctd exchange files:
Preferred Header Order#
The only header which must come first is NUMBER_HEADERS
.
Other header parameters may come in any order, however, there is a preferred order.
The preferred order after NUMBER_HEADERS
is:
EXPOCODE
SECT_ID
STNNBR
CASTNO
DATE
TIME
LATITUDE
LONGITUDE
DEPTH
User Headers#
Previous versions of this document allowed any number of extra “user defined” headers to appear including undocumented ones. This was found to cause problems for implementations which only expected certain specific headers to be present. Use the comments field for this extra information.
Example CTD Data#
Here is an example of a complete exchange CTD file (though a very shallow profile):
1CTD,20130709ODF
2# REPORTED CAST DEPTH IS CTD_DEPTH + DISTANCE_ABOVE_BOTTOM AT MAX PRESSURE
3NUMBER_HEADERS = 10
4EXPOCODE = 318M20130321
5SECT_ID = P02W
6STNNBR = 1
7CASTNO = 2
8DATE = 20130322
9TIME = 2205
10LATITUDE = 32.5068
11LONGITUDE = 133.0297
12DEPTH = 166
13CTDPRS,CTDPRS_FLAG_W,CTDTMP,CTDTMP_FLAG_W,CTDSAL,CTDSAL_FLAG_W,CTDOXY,CTDOXY_FLAG_W
14DBAR,,ITS-90,,PSS-78,,UMOL/KG,
15 2.0,2, 19.1840,2, 34.6935,2, 220.8,2
16 4.0,2, 19.1992,2, 34.6924,2, 220.7,2
17 6.0,2, 19.2002,2, 34.6922,2, 220.5,2
18 8.0,2, 19.2022,2, 34.6919,2, 220.5,2
19 10.0,2, 19.2033,2, 34.6918,2, 220.6,2
20 12.0,2, 19.2039,2, 34.6919,2, 220.8,2
21 14.0,2, 19.2033,2, 34.6919,2, 220.9,2
22 16.0,2, 19.2029,2, 34.6916,2, 220.6,2
23END_DATA
The structure is:
Line 1: File Format Indicator
Line 2: Optional Comment Lines
Lines 3-12: Additional CTD Headers
Lines 13, 14: Parameter and Unit Lines
Lines 15-23: Data Lines.
Structure of ZIP CTD Archives#
Since exchange CTD files only contain one profile, it is convent to package them into entire an archive containing an entire cruise. The archive format exchange uses is zip, specifically PKZIP 2.0. The zip archive allows for a large variety of structure so it is necessary to define the structure here.
Exchange CTD zip files MUST contain a flattened structure, that is, only files with no directory paths.
The files within the zip SHOULD be in the same order in which the stations were done.
Usually this means the filenames contain numerical information regarding the station order.
All the files within the zip MUST have the _ct1.csv
file extension.
Here is an example a correct ctd exchange zip archive (the output of unzip -l
):
Archive: 33RO20131223_ct1.zip
Length Date Time Name
-------- ---- ---- ----
401802 04-10-14 17:27 33RO20131223_00001_00002_ct1.csv
388950 04-10-14 17:27 33RO20131223_00002_00001_ct1.csv
385278 04-10-14 17:27 33RO20131223_00003_00002_ct1.csv
400573 04-10-14 17:27 33RO20131223_00004_00001_ct1.csv
395069 04-10-14 17:27 33RO20131223_00005_00002_ct1.csv
-------- -------
1971672 5 files
Notice the lack of directory paths in the archive names, it is simply filenames.
The following is an example of an incorrectly packaged archive, which has archive names containing directory structure (notice the /
in the names):
Archive: 33RO20131223_ct1.zip
Length Date Time Name
-------- ---- ---- ----
401802 04-10-14 17:27 33RO20131223_ct1/33RO20131223_00001_00002_ct1.csv
388950 04-10-14 17:27 33RO20131223_ct1/33RO20131223_00002_00001_ct1.csv
385278 04-10-14 17:27 33RO20131223_ct1/33RO20131223_00003_00002_ct1.csv
400573 04-10-14 17:27 33RO20131223_ct1/33RO20131223_00004_00001_ct1.csv
395069 04-10-14 17:27 33RO20131223_ct1/33RO20131223_00005_00002_ct1.csv
-------- -------
1971672 5 files
Note
Currently, the behavior when other files or directories are present is undefined. The recommended behavior when encountering directories or other (non _ct1.csv) files is to ignore the extra files while warning the user of their presence.
Quality Codes#
Most parameters may also have an associated column of numeric quality flags. Quality flag columns appear as a normal parameter in the Parameter and Unit Lines, they MUST NOT have any associated units. The quality flag parameter name are constructed and require parsing to determine which parameter they need to be associated with.
The basic formula for constructing a quality flag parameter name is:
<PARAMETER_NAME>_FLAG_W
where <PARAMETER_NAME>
is the parameter for which the quality flags are for.
For example, the quality column for the parameter CTDOXY would be CTDOXY_FLAG_W
.
The meaning of the flags is determined by the type of measurement it is. Bottles have Bottle Quality Codes, measurements from CTD based instruments use the CTD Quality Codes, and discrete measurements from bottle use the Water Quality Codes. The quality codes to use for any specific parameter is also listed with each parameter in the parameters section.
All quality flag codes are single digit integers.
The following descriptions of each quality code is taken from the WOCE manual.
WOCE Bottle Quality Codes#
- 1:
Bottle information unavailable.
- 2:
No problems noted.
- 3:
Leaking.
- 4:
Did not trip correctly.
- 5:
Not reported.
- (6):
(Significant discrepancy in measured values between Gerard and Niskin bottles.)
- (7):
(Unknown problem.)
- (8):
(Pair did not trip correctly. Note that the Niskin bottle can trip at an unplanned depth while the Gerard trips correctly and vice versa.)
- 9:
Samples not drawn from this bottle.
WOCE Water Sample Quality Codes#
- 1:
Sample for this measurement was drawn from water bottle but analysis not received.
- 2:
Acceptable measurement.
- 3:
Questionable measurement.
- 4:
Bad measurement.
- 5:
Not reported.
- 6:
Mean of replicate measurements (Number of replicates should be specified in the .DOC file and the replicate data tabulated there).
- 7:
Manual chromatographic peak measurement.
- 8:
Irregular digital chromatographic peak integration.
- 9:
Sample not drawn for this measurement from this bottle.
Note
Note that if water is drawn for any measurement from a water bottle, the quality code for that parameter should be set equal to 1 initially to help ensure that all water samples are accounted for.
WOCE CTD Quality Codes#
- 1:
Not calibrated.
- 2:
Acceptable measurement.
- 3:
Questionable measurement.
- 4:
Bad measurement.
- 5:
Not reported.
- 6:
Interpolated over a pressure interval larger than 2 dbar.
- 7:
Despiked.
- (8):
Not used for CTD data.
- 9:
Not sampled.
Parameters#
About Parameters#
The CCHDO works frequently with many parameters common in hydrography. Provided here is a description of many common parameters encountered in exchange files.
Warning
This list may not contain every parameter which may be encountered in an exchange file. CCHDO is working on providing a machine readable list of ALL parameters which may be encountered in all files. This list will include parameters which CCHDO lacks a description for (known unknown parameters).
Until that time, parameters may appear in exchange formats from the CCHDO which are not documented here. No undocumented parameter or field will cause data integrity or usefulness issues (i.e. all undocumented parameters may be safely ignored).
Definitions#
Provided with each parameter is a set of information in a table, the information included in that table should be interpreted as follows:
- Units:
These are the common units encountered for this parameter as it will appear in the exchange document itself. The special units of “None” means the field will be either blank or contain only whitespace.
- Data Type:
Specifies the allowed type of data in the data records for this parameter. There are three types of data, string (str), integers (int), and decimal. String data types may be any printing character except a comma
,
which is the field seperator. Integer data types may only contain numbers without a decimal point, quality flags are usually integers. Decimal data types may be any real number (including an integer) and may include decimal point, the precision is not specified.- Quality Flags:
Specifies which set of quality flag definitions should be used to interpret a quality flag column for this parameter (if present). Current quality flags are: bottle, water, ctd. See the Quality Codes section for more information
- Error Column Label:
A parameter might contain an error or uncertanty value associated with it. The column which contains the error/uncertanty values for this parameter will have the name listed in this field.
- CF/netCDF Attributes:
When this parameter appears in a CF netCDF file, the units and standard name are determined by the units of the WHP parameter. Not all parameter/unit pairs have CF standard names yet. Some WHP units are not allowed in the units attribute of valid CF netCDF files, of particular note are the temperature units of ITS-90 and IPTS-68 which are both mapped to degC in CF files. These “units” will instead appear in a
reference_scale
attribute of the variable rather than in theunits
attribute.
Unlisted Parameters#
Otherwise valid exchange files which contain parameters, units, or parameter/unit pairs that are not listed in the Parameters list SHALL NOT cause the file to be invalid so long as the rest of the specification is adhered to.
Pass Through#
Authors of software which read and write exchange files SHOULD pass though unlisted parameters, units, parameter/unit pairs, and the associated data columns.
Note
This section is intended for software which is used in data management, it does not impose a requirement on authors only wishing to do analysis.
Parameters#
This section was generated automatically from a
machine readable list of parameters
,
there is also a
validation schema
for the
parameters json.
EXPOCODE#
- Units:
None
- Data Type:
string
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
expocode
None
None
None
The expedition code, assigned by the CCHDO or generated by the user. Used as the unique identifier for the cruise. Usual generation formula is ICES 4 character platform code then the cruise departure date in YYYYMMDD format. The underscore _
character may also be present.
SECT_ID#
- Units:
None
- Data Type:
string
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
section_id
None
None
None
If a repeat of a WOCE section, this is the WHP section identifier. Examples include: A12
, A13.5
, P02
.
Note
There may be inconsistency in the how line numbers are represented. For example, P02
might be present as P2
, these represent the same SECT_ID. Two digit zero padded line numbers are the canonical representation, please inform the CCHDO if non zero padded line numbers are encountered.
LINE#
- Units:
None
- Data Type:
string
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
line_id
None
None
None
A transect line identifier, examples include CalCOFI Lines or an id assigned to the lines of a cruise doing grid type work
Warning
Use the SECT_ID parameter for WOCE/GO-SHIP section ids
STNNBR#
- Units:
None
- Data Type:
string
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
station
None
None
None
The originator’s station identifier. Allowed characters are U+0030 to U+0039, U+0041 to U+005A, U+0061 to U+007A, and U+005F (0-9
, a-z
, A-Z
, and _
)
Note
Numeric-only station identifiers are preferred by many data users, but provision for non numeric station identifiers is retained to maintain compatibility with WOCE records.
CASTNO#
- Units:
None
- Data Type:
integer
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
cast
None
None
None
The originator’s cast number.
Note
Where cast number is unknown a default value of 1 MAY be inserted by data processors.
BIOS_CASTID#
- Units:
None
- Data Type:
integer
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
bios_castid
None
None
None
BIOS cast number. Used by the Bermuda Institute of Ocean Sciences in the BATS and Hydrostation S timeseries.
SAMPNO#
- Units:
None
- Data Type:
string
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
sample
None
None
None
The sample number. Often it is the rosette position, however, groups may use their own sampling identification scheme. Allowed characters are U+0030 to U+0039, U+0041 to U+005A, U+0061 to U+007A, and U+005F (0-9
, a-z
, A-Z
, and _
)
Warning
The value may not be numeric, ensure that any software reading the file can handle UTF-8 data of the specified allowed code points.
GEOTR_EVENT#
- Units:
None
- Data Type:
integer
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
geotraces_event
None
None
None
The GEOTRACES Event number. Along with the GEOTRACES sample number, it is used by the GEOTRACES community for sample identification.
GEOTR_SAMPNO#
- Units:
None
- Data Type:
integer
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
geotraces_sample
None
None
None
The GEOTRACES Sample number. Along with the GEOTRACES Event number, it is used by the GEOTRACES community for sample identification.
BIONBR#
- Units:
None
- Data Type:
string
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
bionbr
None
None
None
Sample identification number used by the Bedford Institute of Oceanography (BIO)
EVENT_NUMBER#
- Units:
None
- Data Type:
decimal
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
event_number
None
None
None
Non program specific event number. Some cruises or programs keep track of sequential events that occur on a cruise or across multiple cruises of the same program. There exists program specific event number names of GEOTR_EVENT, BIONBR, and BIOS_CASTID that should be used if they are more appropriate.
BTLNBR#
- Units:
None
- Data Type:
string
- BTLNBR_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
bottle_number
None
None
None
The bottle identification number. This is intended to be a permanent, unique serial number fixed to the sampling device. It may also be the an identifier fixed for the duration of a single expedition. Allowed characters are U+0030 to U+0039, U+0041 to U+005A, U+0061 to U+007A, and U+005F (0-9
, a-z
, A-Z
, and _
)
Note
The bottle number MAY have quality flags.
Warning
Despite the name, the value IS NOT numeric, ensure that any software reading the file can handle UTF-8 data of the specified allowed code points. The CF/netCDF files force the data type to be char, but for historic reasons, the variable name is maintained as bottle_number.
DATE#
- Units:
None
- Data Type:
string
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
date
None
None
None
The UTC date in zero padded YYYYMMDD format. The date reported is usually cast bottom for Bottle files and cast start for CTD files. Valid range for YYYY: 0001-9999. Valid range for MM: 01-12. Valid range for DD: 01-31 (depends on month and year). The format of dates corresponds to the C-strftime format of %Y%m%d
.
The date should be read as a string, but be able to be cast unambiguously to an integer. To convert from integer representation, left pad zeros to match the date format description. For example, the integer 8020202
is the date 08020202
or Feb 2nd, 802. This is a very unlikely situation.
TIME#
- Units:
None
- Data Type:
string
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
time
None
None
None
The UTC time in zero padded hhmm format. A single time should be reported for each cast, usually the time at cast bottom (deepest) is used. The order of preference for the reported time is: cast bottom, cast start, cast end (i.e if cast bottom is not available, the cast start time should be used).
Valid range for hh: 00-24 Valid range for mm: 00-59 The format of times corresponds to the C-strftime format of %H%M
.
The time should be read as a string, but be able to be cast unambiguously into an integer. To convert from an integer, left pad zeros to match the time format description.
Note
Times represented as integers will be present in whp COARDS netcdf files. Times in netcdf files will be anywhere from 1 to 4 digits. E.g. a time of 6 as in integer represents 6 minutes after midnight or 0006
Midnight is a special case in that it has two valid representations: 0000
and 2400
. The date 20140202
at time 0000
is the same instant as the date 20140201
at time 2400
. This corresponds to times allowed by ISO 8601.
Use BTL_TIME to report the time of individual bottle closures.
CF netCDF files will use the standard Time Coordinate as specified in the conventions
Warning
Time is not a required parameter! If time is not present, then the temporal resolution of the data is reduced to a 24 hour period. It is the responsibility of the user of the data to omit files/casts which do not meet their temporal resolution requirements.
LATITUDE#
- Units:
None
- Data Type:
decimal
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
latitude
None
None
latitude
The latitude as a signed decimal number. By convention, is positive in the northern hemisphere and negative in the southern hemisphere. Positive values do not include a +
character (U+002B), negative values are prefixed with a -
character (U+002D).
Note
Only one latitude SHOULD be reported for a cast, typically this is the ship position when the cast is at the bottom (deepest), but this is not guaranteed.
Use BTL_LAT to include positions of individual bottle closures.
Warning
Since this parameter has no units, the positive in the northern hemisphere and negative in the southern hemisphere MUST be strictly adhered to.
The geographic coordinate system is not currently reported.
LONGITUDE#
- Units:
None
- Data Type:
decimal
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
longitude
None
None
longitude
The longitude as a signed decimal number. By convention, is positive in the eastern hemisphere and negative in the western hemisphere. Positive values do not include a +
character (U+002B), negative values are prefixed with a -
character (U+002D).
Note
Only one longitude SHOULD be reported for a cast, typically this is the ship position when the cast is at the bottom (deepest), but this is not guaranteed.
Use BTL_LON to include positions of individual bottle closures.
The longitudes of -180 and 180 describe the same meridian.
Warning
Since this parameter has no units, the positive in the eastern hemisphere and negative in the western hemisphere convention MUST be strictly adhered to.
The geographic coordinate system is not currently reported.
DEPTH#
- Units:
METERS
- Data Type:
decimal
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
btm_depth
METERS
meters
sea_floor_depth_below_sea_surface
The reported depth to the bottom. Corrected depths are preferred to uncorrected depths.
Note
Documentation should be provided describing how the depth was calculated/corrected, typically in the comment fields.
Warning
This is NOT the depth of bottle closures.
CTDPRS#
- Units:
DBAR
- Data Type:
decimal
- CTDPRS_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
pressure
DBAR
dbar
sea_water_pressure
The corrected pressure as measured by the CTD.
Note
Typically does not have quality flags.
CTDRAW#
- Units:
DBAR
- Data Type:
decimal
- CTDRAW_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
ctd_pressure_raw
DBAR
dbar
sea_water_pressure
The uncorrected pressure as measured by the CTD. Uncorrected means that no processing has been done (e.g. deck pressure offsets) other than manufacturer calibrations applied.
Note
Typically does not have quality flags.
CTDTMP#
- Units:
ITS-90
IPTS-68
DEG C
- Data Type:
decimal
- CTDTMP_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
ctd_temperature
ITS-90
degC
sea_water_temperature
ctd_temperature_68
IPTS-68
degC
sea_water_temperature
ctd_temperature_unk
DEG C
degC
sea_water_temperature
The corrected temperature as measured by the CTD.
Note
Typically does not have quality flags.
CTDSAL#
- Units:
PSS-78
- Data Type:
decimal
- CTDSAL_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
ctd_salinity
PSS-78
1
sea_water_practical_salinity
The corrected practical salinity as measured (calculated) by the CTD.
CTDSA#
- Units:
G/KG
- Data Type:
decimal
- CTDSA_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
ctd_absolute_salinity
G/KG
g/kg
sea_water_absolute_salinity
Absolute salinity calculated using TEOS-10
Warning
This is provided as a convienence, the TEOS-10 manual strongly recomends against including this in observational data.
CTDCT#
- Units:
ITS-90
- Data Type:
decimal
- CTDCT_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
ctd_conservative_temperature
ITS-90
degC
sea_water_conservative_temperature
Conservative temperature calcualted using TEOS-10
Warning
This is provided as a convienence, the TEOS-10 manual strongly recomends against including this in observational data.
SALNTY#
- Units:
PSS-78
- Data Type:
decimal
- SALNTY_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
bottle_salinity
PSS-78
1
sea_water_practical_salinity
The practical salinity measured from a bottle sample.
DNSSAL#
- Units:
G/KG
- Data Type:
decimal
- DNSSAL_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
density_salinity
G/KG
g/kg
sea_water_absolute_salinity
Absolute salinity calculated from direct density measurements, also called absolute salinity.
RIANOMALY#
- Units:
ND
- Data Type:
decimal
- RIANOMALY_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
refractive_index_anomaly
ND
1
None
Refractive indxe anomanly from pure water. Typically reported at the sodium D lines of 589.6 nm and 589.0nm
DNSSAL2#
- Units:
G/KG
- Data Type:
decimal
- DNSSAL2_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
density_salinity2
G/KG
g/kg
sea_water_absolute_salinity
Replicate measuremnet of DNSSAL, used in TEOS-10 verification work
SALNTY_DNSSAL#
- Units:
PSS-78
- Data Type:
decimal
- SALNTY_DNSSAL_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
density_salinity_practical_salinity
PSS-78
1
sea_water_practical_salinity
A practical salinity measurement in the lab of the same water sample as DNSSAL, used in TEOS-10 verification work
SALNTY_DNSSAL2#
- Units:
PSS-78
- Data Type:
decimal
- SALNTY_DNSSAL2_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
density_salinity_practical_salinity2
PSS-78
1
sea_water_practical_salinity
Replicate of SALNTY_DNSSAL
CTDSVLSAL#
- Units:
G/KG
- Data Type:
decimal
- CTDSVLSAL_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
ctd_sound_velocity_salinity
G/KG
g/kg
sea_water_absolute_salinity
Absolute salinity calculated from sound velocity and temperature, also called absolute salinity.
CTDOXY#
- Units:
UMOL/KG
ML/L
UMOL/L
- Data Type:
decimal
- CTDOXY_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
ctd_oxygen
UMOL/KG
umol/kg
moles_of_oxygen_per_unit_mass_in_sea_water
ctd_oxygen_ml_l
ML/L
ml/l
volume_fraction_of_oxygen_in_sea_water
ctd_oxygen_umol_l
UMOL/L
umol l-1
mole_concentration_of_dissolved_molecular_oxygen_in_sea_water
The corrected oxygen measured by the CTD.
CTDOPTOXY#
- Units:
VOLTS
UMOL/KG
- Data Type:
decimal
- CTDOPTOXY_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
ctd_optode_oxygen_raw
VOLTS
volts
None
ctd_optode_oxygen
UMOL/KG
umol/kg
None
In situ oxygen from an oxygen optode
Note
This parameter was common when optodes were newer. Today this is often just reported as CTDOXY.
OXYGEN#
- Units:
UMOL/KG
ML/L
- Data Type:
decimal
- OXYGEN_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
oxygen
UMOL/KG
umol/kg
moles_of_oxygen_per_unit_mass_in_sea_water
oxygen_ml_l
ML/L
ml/l
volume_fraction_of_oxygen_in_sea_water
The dissolved oxygen measured in a discrete sample, typically using the Winkler test for dissolved oxygen.
SILCAT#
- Units:
UMOL/KG
UMOL/L
- Data Type:
decimal
- SILCAT_FLAG_W Definitions:
- Error Column Label:
SILUNC
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
silicate
UMOL/KG
umol/kg
moles_of_silicate_per_unit_mass_in_sea_water
silicate_l
UMOL/L
umol l-1
mole_concentration_of_silicate_in_sea_water
The concentration of dissolved silicate in sea water.
NH4#
- Units:
UMOL/KG
- Data Type:
decimal
- NH4_FLAG_W Definitions:
- Error Column Label:
NH4UNC
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
ammonium
UMOL/KG
umol/kg
None
The concentration of dissolved ammonium in sea water.
NITRAT#
- Units:
UMOL/KG
UMOL/L
- Data Type:
decimal
- NITRAT_FLAG_W Definitions:
- Error Column Label:
NRAUNC
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
nitrate
UMOL/KG
umol/kg
moles_of_nitrate_per_unit_mass_in_sea_water
nitrate_l
UMOL/L
umol l-1
mole_concentration_of_nitrate_in_sea_water
The concentration of dissolved nitrate in sea water. The chemical formula for the nitrate anion is NO3-.
CTDNITRATE#
- Units:
UMOL/KG
- Data Type:
decimal
- CTDNITRATE_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
ctd_nitrate
UMOL/KG
umol/kg
moles_of_nitrate_per_unit_mass_in_sea_water
The concentration of dissolved nitrate in sea water measured by an in situ sensor. The chemical formula for the nitrate anion is NO3-.
CTDORP#
- Units:
MILLIVOLTS
- Data Type:
decimal
- CTDORP_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
ctd_redox_potential
MILLIVOLTS
millivolts
None
Oxidation-reduction (or redox) potential sensor. Measures the tendency of various chemical species to gain or lose electrons. In the ocean, it is useful for detecting hydrothermal plumes. Usually the absolute value of ORP measured by one of these is not useful but the change in potential over the profile is.
Warning
The actual scientific units for this parameter is a voltage, usually reported in millivolts.
NITRIT#
- Units:
UMOL/KG
UMOL/L
- Data Type:
decimal
- NITRIT_FLAG_W Definitions:
- Error Column Label:
NRIUNC
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
nitrite
UMOL/KG
umol/kg
moles_of_nitrite_per_unit_mass_in_sea_water
nitrite_l
UMOL/L
umol l-1
mole_concentration_of_nitrite_in_sea_water
The concentration of dissolved nitrite in sea water. The chemical formula for the nitrite anion is NO2-.
PHSPHT#
- Units:
UMOL/KG
UMOL/L
- Data Type:
decimal
- PHSPHT_FLAG_W Definitions:
- Error Column Label:
PHPUNC
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
phosphate
UMOL/KG
umol/kg
moles_of_phosphate_per_unit_mass_in_sea_water
phosphate_l
UMOL/L
umol l-1
mole_concentration_of_phosphate_in_sea_water
The concentration of dissolved phosphate in sea water. The chemical formula for the phosphate anion is PO4.
NO2+NO3#
- Units:
UMOL/KG
UMOL/L
- Data Type:
decimal
- NO2+NO3_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
nitrite_nitrate
UMOL/KG
umol/kg
moles_of_nitrate_and_nitrite_per_unit_mass_in_sea_water
nitrite_nitrate_l
UMOL/L
umol l-1
mole_concentration_of_nitrate_and_nitrite_in_sea_water
The concentration of dissolved nitrate plus nitrite in sea water. The chemical formula for the nitrite anion is NO2-.
Note
Most modern techniques for determining dissolved nitrate return a value of nitrate (NO3) plus nitrite (NO2). A separate determination is then done for nitrite and the result subtracted by the data originator to obtain nitrate. If no separate nitrite determination was carried out - or in rare cases the nitrite number was not subtracted - data providers should list the result as NO2+NO3. Because nitrite values are in most regions small compared to nitrate, most data users will not adversely affect their results by relabeling NO2+NO3 as NITRAT.
CFC-11#
- Units:
PMOL/KG
PMOL/L
- Data Type:
decimal
- CFC-11_FLAG_W Definitions:
- Error Column Label:
CF11ER
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
cfc_11
PMOL/KG
pmol/kg
moles_of_cfc11_per_unit_mass_in_sea_water
cfc_11_l
PMOL/L
pmol/l
None
The concentration of dissolved CFC11 in sea water. The chemical formula of CFC11 is CFCl3. The IUPAC name for CFC11 is trichloro(fluoro)methane.
CFC-12#
- Units:
PMOL/KG
PMOL/L
- Data Type:
decimal
- CFC-12_FLAG_W Definitions:
- Error Column Label:
CF12ER
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
cfc_12
PMOL/KG
pmol/kg
None
cfc_12_l
PMOL/L
pmol/l
None
The concentration of dissolved CFC12 in sea water. The chemical formula for CFC12 is CF2Cl2. The IUPAC name for CFC12 is dichloro(difluoro)methane.
CFC113#
- Units:
PMOL/KG
PMOL/L
- Data Type:
decimal
- CFC113_FLAG_W Definitions:
- Error Column Label:
CF113ER
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
cfc_113
PMOL/KG
pmol/kg
None
cfc_113_l
PMOL/L
pmol/l
None
The concentration of dissolved CFC113 in sea water. The chemical formula of CFC113 is CCl2FCClF2. The IUPAC name for CFC113 is 1,1,2-trichloro-1,2,2-trifluoroethane.
HCFC-141b#
- Units:
PMOL/KG
- Data Type:
decimal
- HCFC-141b_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
dichlorofluoroethane
PMOL/KG
pmol/kg
None
The concentration of dissolved HCFC-141b in sea water. The chemical formula of HCFC-141b is C2H3Cl2F. The IUPAC name for HCFC-141b is 1,1-Dichloro-1-fluoroethane.
HCFC-142b#
- Units:
PMOL/KG
- Data Type:
decimal
- HCFC-142b_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
chlorodifluoroethane
PMOL/KG
pmol/kg
None
The concentration of dissolved HCFC-142b in sea water. The chemical formula of HCFC-142b is CH3CClF2. The IUPAC name for HCFC-142b is 1-Chloro-1,1-difluoroethane.
HCFC-22#
- Units:
PMOL/KG
- Data Type:
decimal
- HCFC-22_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
chlorodifluoromethane
PMOL/KG
pmol/kg
None
The concentration of dissolved HCFC-22 in sea water. The chemical formula of HCFC-22 is CHClF2. The IUPAC name for HCFC-22 is Chloro(difluoro)methane.
HFC-134A#
- Units:
PMOL/KG
- Data Type:
decimal
- HFC-134A_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
hfc_134a
PMOL/KG
pmol/kg
None
The concentration of dissolved HFC-134A in sea water. The chemical formula of HFC-134A is CF3CH2F. The IUPAC name for HFC-134A is 1,1,1,2-Tetrafluoroethane.
HFC-125#
- Units:
PMOL/KG
- Data Type:
decimal
- HFC-125_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
pentafluoroethane
PMOL/KG
pmol/kg
None
The concentration of dissolved HFC-125 in sea water. The chemical formula of HFC-125 is CF3CHF2. The IUPAC name for HFC-125 is pentafluoroethane.
SF6#
- Units:
FMOL/KG
FMOL/L
- Data Type:
decimal
- SF6_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
sulfur_hexifluoride
FMOL/KG
fmol/kg
None
sulfur_hexifluoride_l
FMOL/L
fmol/l
None
The concentration of SF6 (Sulfur hexafluoride) in sea water.
TCARBN#
- Units:
UMOL/KG
- Data Type:
decimal
- TCARBN_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
total_carbon
UMOL/KG
umol/kg
moles_of_dissolved_inorganic_carbon_per_unit_mass_in_sea_water
Total dissovled inorganic carbon
CARBONATE#
- Units:
UMOL/KG
- Data Type:
decimal
- CARBONATE_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
carbonate
UMOL/KG
umol/kg
None
Dissolved carbonate ion in seawater, the chemical formula for the carbonate ion is CO32-
ALKALI#
- Units:
UMOL/KG
- Data Type:
decimal
- ALKALI_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
total_alkalinity
UMOL/KG
umol/kg
None
The total alkalinity equivalent concentration (including carbonate, nitrogen, silicate, and borate components).
FCO2#
- Units:
UATM
- Data Type:
decimal
- FCO2_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
fco2
UATM
uatm
fugacity_of_carbon_dioxide_in_sea_water
The fugacity is the measured pressure (or partial pressure) of a real gas corrected for the intermolecular forces of that gas, which allows that corrected quantity to be treated like the pressure of an ideal gas in the ideal gas equation PV = nRT. The partial pressure of a dissolved gas in sea water is the partial pressure in air with which it would be in equilibrium. The partial pressure of a gaseous constituent of air is the pressure that it would exert if all other gaseous constituents were removed, assuming the volume, the temperature, and its number of moles remain unchanged. The chemical formula for carbon dioxide is CO2.
FCO2IN#
- Units:
UATM
- Data Type:
decimal
- FCO2IN_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
fco2_in_situ
UATM
uatm
fugacity_of_carbon_dioxide_in_sea_water
In situ fugacity of CO2 gas
Note
Usually calcualted
FCO2TMP#
- Units:
DEG C
- Data Type:
decimal
- FCO2TMP_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
fco2_temperature
DEG C
degC
temperature_of_analysis_of_sea_water
The reporting temperature for FCO2, either a measurement of the equilibrator temperature or adjusted to a standard temperature
PCO2#
- Units:
UATM
- Data Type:
decimal
- PCO2_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
partial_pressure_of_co2
UATM
uatm
partial_pressure_of_carbon_dioxide_in_sea_water
The partial pressure of a dissolved gas in sea water is the partial pressure in air with which it would be in equilibrium. The partial pressure of a gaseous constituent of air is the pressure that it would exert if all other gaseous constituents were removed, assuming the volume, the temperature, and its number of moles remain unchanged. The chemical formula for carbon dioxide is CO2.
XCO2#
- Units:
PPM
- Data Type:
decimal
- XCO2_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
co2_mole_fraction
PPM
1e-6
None
The mole fraction of CO2 in air, wet or dry is unknown.
Warning
This parameter was added because we found several cruises with “PCO2” reported as ppm. The only notes that could we could find where questioning if the values were “wet” or “dry”, which is wondering if pH2O was taken into account. XCO2 as a name was taken from the definition of CO2 expressed as PPM in CO2SYS V25.
Use caution if you are trying to compare this parameter to other (p/f/x)CO2 data
PCO2TMP#
- Units:
DEG C
- Data Type:
decimal
- PCO2TMP_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
partial_co2_temperature
DEG C
degC
temperature_of_analysis_of_sea_water
The reporting temperature for PCO2, either a measurement of the equilibrator temperature or adjusted to a standard temperature
PH_TOT#
- Units:
None
- Data Type:
decimal
- PH_TOT_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
ph_total_h_scale
None
None
sea_water_ph_reported_on_total_scale
The measure of acidity of seawater, defined as the negative logarithm of the concentration of dissolved hydrogen ions plus bisulfate ions in a sea water medium; when measured the scale is defined according to a series of buffers prepared in artificial seawater containing bisulfate. The quantity may be written as pH(total) = -log([H+](free) + [HSO4-]).
PH#
- Units:
None
- Data Type:
decimal
- PH_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
ph_unknown_scale
None
None
None
The measure of acidity of seawater reported on an unknown scale
Warning
The reporting scale is not known. Use caution when comparing this pH to any other pH
PH_NBS#
- Units:
None
- Data Type:
decimal
- PH_NBS_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
ph_nbs
None
None
None
The measure of acidity of seawater on the NBS standard pH scale
PH_SWS#
- Units:
None
- Data Type:
decimal
- PH_SWS_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
ph_sws
None
None
None
pH reported on the sea water scale
PH_TMP#
- Units:
DEG C
- Data Type:
decimal
- PH_TMP_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
ph_temperature
DEG C
degC
temperature_of_analysis_of_sea_water
Temperature of the pH measurement
DOC#
- Units:
UMOL/KG
- Data Type:
decimal
- DOC_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
dissolved_organic_carbon
UMOL/KG
umol/kg
None
Dissolved organic carbon
FDOM#
- Units:
RFU
- Data Type:
decimal
- FDOM_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
fdom
RFU
1
None
In lab measured Fluorescent dissolved organic matter
DOC_NASA#
- Units:
UMOL/L
- Data Type:
decimal
- DOC_NASA_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
dissolved_organic_carbon_nasa
UMOL/L
umol l-1
None
Disolved organic carbon as measured by the NASA group and not the normal GO-SHIP one
TRITUM#
- Units:
TU
KBQ/M^3
- Data Type:
decimal
- TRITUM_FLAG_W Definitions:
- Error Column Label:
TRITER
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
tritium
TU
1e-18
None
tritium_activity
KBQ/M^3
kBq m-3
None
Fraction of tritium in the water itself
Note
1 TU is 1 tritium atom per 1018 hydrogen atoms
HELIUM#
- Units:
NMOL/KG
NMOL/L
- Data Type:
decimal
- HELIUM_FLAG_W Definitions:
- Error Column Label:
HELIER
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
helium
NMOL/KG
nmol/kg
None
helium_l
NMOL/L
nmol/l
None
Dissolved elemental helium gas
DELHE3#
- Units:
PERCNT
- Data Type:
decimal
- DELHE3_FLAG_W Definitions:
- Error Column Label:
DELHER
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
delta_helium_3
PERCNT
percent
None
Enrichment of 3He in dissolved helium gas
REFTMP#
- Units:
ITS-90
DEG C
- Data Type:
decimal
- REFTMP_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
ref_temperature
ITS-90
degC
sea_water_temperature
ref_temperature_c
DEG C
degC
sea_water_temperature
Sea water temperature as measured by a reference thermometer, such as an SBE35. These typically only measure when a bottle is triggered and are part of the discrete data stream rather than the CTD one.
REVPRS#
- Units:
DBAR
- Data Type:
decimal
- REVPRS_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
rev_pressure
DBAR
dbar
sea_water_pressure
Sea water pressure as determined via a pair of reversing thermometers.
REVTMP#
- Units:
ITS-90
IPTS-68
DEG C
- Data Type:
decimal
- REVTMP_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
rev_temperature_90
ITS-90
degC
sea_water_temperature
rev_temperature
IPTS-68
degC
sea_water_temperature
rev_temperature_c
DEG C
degC
sea_water_temperature
Sea water temperature as determined via a reversing thermometer.
DELC13#
- Units:
/MILLE
- Data Type:
decimal
- DELC13_FLAG_W Definitions:
- Error Column Label:
C13ERR
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
del_carbon_13_dic
/MILLE
1e-3
None
Enrichment of 13C vs 12C in dissolved inorganic carbon (DIC or TCARBN) compared to a reference standard usually VPDB. This is usually written as lower case delta δ13C.
DELC14#
- Units:
/MILLE
- Data Type:
decimal
- DELC14_FLAG_W Definitions:
- Error Column Label:
C14ERR
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
del_carbon_14_dic
/MILLE
1e-3
None
Enrichment of 14C vs 12C in dissolved inorganic carbon (DIC or TCARBN) compared to a reference standard usually VPDB. This ratio has been corrected for isotopic fractionation and is usually written as upper case delta Δ14C.
DON#
- Units:
UMOL/KG
- Data Type:
decimal
- DON_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
dissolved_organic_nitrogen
UMOL/KG
umol/kg
None
Dissolved organic nitrogen in sea water. ‘Dissolved organic nitrogen’ describes the nitrogen held in carbon compounds in solution. These are mostly generated by plankton excretion and decay.
TOC#
- Units:
UMOL/KG
UMOL/L
- Data Type:
decimal
- TOC_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
total_organic_carbon
UMOL/KG
umol/kg
None
total_organic_carbon_l
UMOL/L
umol l-1
None
Total organic carbon, includes particulate and dissolved
POC#
- Units:
UG/KG
UG/L
- Data Type:
decimal
- POC_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
particulate_organic_carbon
UG/KG
ug/kg
None
particulate_organic_carbon_l
UG/L
ug/l
None
Particulate organic carbon
D13C_POC#
- Units:
/MILLE
- Data Type:
decimal
- D13C_POC_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
d13c_poc
/MILLE
1e-3
None
Enrichment of 13C vs 12C in particulate organic carbon (POC) compared to a reference standard usually VPDB. This is usually written as lower case delta δ13C.
PON#
- Units:
UG/KG
UG/L
UMOL/L
- Data Type:
decimal
- PON_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
particulate_organic_nitrogen
UG/KG
ug/kg
None
particulate_organic_nitrogen_l
UG/L
ug/l
None
particulate_organic_nitrogen_mol
UMOL/L
umol l-1
None
Particulate organic nitrogen
POP#
- Units:
UG/L
UMOL/L
- Data Type:
decimal
- POP_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
particulate_organic_phosphorus_l
UG/L
ug/l
None
particulate_organic_phosphorus
UMOL/L
umol l-1
None
Particulate organic phosphorus
PCOD#
- Units:
UG/L
- Data Type:
decimal
- PCOD_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
particulate_chemical_oxygen_demand_l
UG/L
ug/l
None
Patriculate chemical oxygen demand
DOP#
- Units:
UMOL/KG
- Data Type:
decimal
- DOP_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
dissolved_organic_phosphorus
UMOL/KG
umol/kg
None
Dissolved organic phosphorus
TDP#
- Units:
UMOL/L
UMOL/KG
- Data Type:
decimal
- TDP_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
total_dissolved_phosphorus_l
UMOL/L
umol l-1
None
total_dissolved_phosphorus
UMOL/KG
umol/kg
None
Total dissolved phosphorus, includes organic and inorganic
DATP#
- Units:
PMOL/L
- Data Type:
decimal
- DATP_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
dissolved_atp
PMOL/L
pmol/l
None
Dissovled adenosine triphosphate
PATP#
- Units:
PMOL/L
- Data Type:
decimal
- PATP_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
particulate_atp
PMOL/L
pmol/l
None
particulate adenosine triphosphate
TDN#
- Units:
UMOL/KG
- Data Type:
decimal
- TDN_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
total_dissolved_nitrogen
UMOL/KG
umol/kg
None
Total dissolved nitrogen, includes organic and inorganic
TON#
- Units:
UMOL/KG
UMOL/L
- Data Type:
decimal
- TON_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
total_organic_nitrogen
UMOL/KG
umol/kg
None
total_organic_nitrogen_l
UMOL/L
umol l-1
None
Total organic nitrogen, includes particulate and dissolved
NEON#
- Units:
NMOL/KG
NMOL/L
- Data Type:
decimal
- NEON_FLAG_W Definitions:
- Error Column Label:
NEONER
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
neon
NMOL/KG
nmol/kg
None
neon_l
NMOL/L
nmol/l
None
Dissolved elemental neon gas
DELO18#
- Units:
/MILLE
- Data Type:
decimal
- DELO18_FLAG_W Definitions:
- Error Column Label:
O18ERR
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
del_oxygen_18
/MILLE
1e-3
None
Enrichment of the 18O/16O isotopic ratio of the sea water itself compared to VSMOW (Vienna Standard Mean Ocean Water).
DELO17#
- Units:
/MILLE
- Data Type:
decimal
- DELO17_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
del_oxygen_17
/MILLE
1e-3
None
Enrichment of the 17O/16O isotopic ratio of the sea water itself compared to VSMOW (Vienna Standard Mean Ocean Water).
DELD#
- Units:
/MILLE
- Data Type:
decimal
- DELD_FLAG_W Definitions:
- Error Column Label:
DELDERR
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
del_deuterium
/MILLE
1e-3
None
Enrichment of deuterium of the sea water itself compared to VSMOW
DELSI30#
- Units:
/MILLE
- Data Type:
decimal
- DELSI30_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
delsi30
/MILLE
1e-3
None
Enrichment of the 30Si/28Si isotopic ratio in silica relative to NBS28
DELN15#
- Units:
/MILLE
- Data Type:
decimal
- DELN15_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
del_nitrogen_15
/MILLE
1e-3
None
Enrichment of the N15/N14 isotopic ratio when compared to the atmosphere
CCL4#
- Units:
PMOL/KG
PMOL/L
- Data Type:
decimal
- CCL4_FLAG_W Definitions:
- Error Column Label:
CCL4ER
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
carbon_tetrachloride
PMOL/KG
pmol/kg
None
carbon_tetrachloride_l
PMOL/L
pmol/l
None
Dissolved carbon tetrachloride
NI#
- Units:
UMOL/L
- Data Type:
decimal
- NI_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
nickel
UMOL/L
umol l-1
None
Dissolved elemental nickle
ALUMIN#
- Units:
NMOL/L
- Data Type:
decimal
- ALUMIN_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
dissolved_aluminum
NMOL/L
nmol/l
None
Dissolved elemental aluminium
BARIUM#
- Units:
NMOL/KG
NMOL/L
- Data Type:
decimal
- BARIUM_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
barium
NMOL/KG
nmol/kg
None
barium_l
NMOL/L
nmol/l
None
Dissolved elemental barium
CU#
- Units:
UMOL/L
- Data Type:
decimal
- CU_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
copper
UMOL/L
umol l-1
None
Dissolved elemental copper
FE#
- Units:
NMOL/L
- Data Type:
decimal
- FE_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
iron
NMOL/L
nmol/l
mole_concentration_of_dissolved_iron_in_sea_water
Dissolved elemental iron
MN#
- Units:
NMOL/L
- Data Type:
decimal
- MN_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
manganese
NMOL/L
nmol/l
None
Dissolved elemental manganese
CTDFLUOR#
- Units:
MG/M^3
VOLTS
None
- Data Type:
decimal
- CTDFLUOR_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
ctd_fluor
MG/M^3
mg/m^3
mass_concentration_of_chlorophyll_in_sea_water
ctd_fluor_raw
VOLTS
volts
None
ctd_fluor_arbitrary
None
None
None
In situ chlorophyll measured by a fluorometer
PAR#
- Units:
UMOL/M^2/SEC
VOLTS
- Data Type:
decimal
- PAR_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
par
UMOL/M^2/SEC
umol m-2 s-1
downwelling_photosynthetic_photon_flux_in_sea_water
par_raw
VOLTS
volts
None
Photosynthetically active radiation. The downwelling photon flux of photons with a wavelength between 400nm and 700nm.
CDOM300#
- Units:
/METER
- Data Type:
decimal
- CDOM300_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
cdom300
/METER
m^-1
volume_beam_attenuation_coefficient_of_radiative_flux_in_sea_water
Attenuation coefficient of the sample at 300nm
CDOM325#
- Units:
/METER
- Data Type:
decimal
- CDOM325_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
cdom325
/METER
m^-1
volume_beam_attenuation_coefficient_of_radiative_flux_in_sea_water
Attenuation coefficient of the sample at 325nm
CDOM340#
- Units:
/METER
- Data Type:
decimal
- CDOM340_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
cdom340
/METER
m^-1
volume_beam_attenuation_coefficient_of_radiative_flux_in_sea_water
Attenuation coefficient of the sample at 340nm
CDOM370#
- Units:
/METER
- Data Type:
decimal
- CDOM370_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
cdom370
/METER
m^-1
volume_beam_attenuation_coefficient_of_radiative_flux_in_sea_water
Attenuation coefficient of the sample at 370nm
CDOM380#
- Units:
/METER
- Data Type:
decimal
- CDOM380_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
cdom380
/METER
m^-1
volume_beam_attenuation_coefficient_of_radiative_flux_in_sea_water
Attenuation coefficient of the sample at 380nm
CDOM412#
- Units:
/METER
- Data Type:
decimal
- CDOM412_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
cdom412
/METER
m^-1
volume_beam_attenuation_coefficient_of_radiative_flux_in_sea_water
Attenuation coefficient of the sample at 412nm
CDOM443#
- Units:
/METER
- Data Type:
decimal
- CDOM443_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
cdom443
/METER
m^-1
volume_beam_attenuation_coefficient_of_radiative_flux_in_sea_water
Attenuation coefficient of the sample at 442nm
CDOM490#
- Units:
/METER
- Data Type:
decimal
- CDOM490_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
cdom490
/METER
m^-1
volume_beam_attenuation_coefficient_of_radiative_flux_in_sea_water
Attenuation coefficient of the sample at 490nm
CDOM555#
- Units:
/METER
- Data Type:
decimal
- CDOM555_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
cdom555
/METER
m^-1
volume_beam_attenuation_coefficient_of_radiative_flux_in_sea_water
Attenuation coefficient of the sample at 555nm
SPAR#
- Units:
VOLTS
- Data Type:
decimal
- SPAR_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
spar_raw
VOLTS
volts
None
Surfance reference for PAR, usually mounted on the top of the ship with a shield to block upwelling light. The downwelling photon flux of photons with a wavelength between 400nm and 700nm.
CDOM2C#
- Units:
None
- Data Type:
decimal
- CDOM2C_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
cdom2c
None
None
None
CDOM2 (carbohydrate and neutral sugar) charicterization
Note
So far CCHDO doesn’t have any data or references on how these data are report, they might go to NASA SeaBASS
CDOM3C#
- Units:
None
- Data Type:
decimal
- CDOM3C_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
cdom3c
None
None
None
CDOM3 (photolysis) charicterization
Note
So far CCHDO doesn’t have any data or references on how these data are report, they might go to NASA SeaBASS
CDOMSL#
- Units:
1/NM
- Data Type:
decimal
- CDOMSL_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
cdomsl
1/NM
1/nm
None
Log spectral slope of absorption spectrum (320-400 nm) computed by linear regression of log-transformed data
CDOMSN#
- Units:
1/NM
- Data Type:
decimal
- CDOMSN_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
cdomsn
1/NM
1/nm
None
Log spectral slope if absorption spectrum (320-400 nm) computed by non-linear curve fit
I-129#
- Units:
BQ/M^3
E7/KG
- Data Type:
decimal
- I-129_FLAG_W Definitions:
- Error Column Label:
I129ER
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
iodine_129
BQ/M^3
Bq m-3
None
iodine_129_conc
E7/KG
1e7 kg-1
None
Dissolved 129I in sea water, may be reported as an activity (Bq) or as an ammount of substance (n) but not usually in mols.
PLUTO#
- Units:
MBQ/M^3
- Data Type:
decimal
- PLUTO_FLAG_W Definitions:
- Error Column Label:
PLUTOER
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
plutonium
MBQ/M^3
mBq m-3
None
Plutonium decay rate from all isotopes
RA-226#
- Units:
DM/.1MG
- Data Type:
decimal
- RA-226_FLAG_W Definitions:
- Error Column Label:
RA-226E
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
radium_226
DM/.1MG
0.000166 Bq/kg
None
Specific activity of 226Ra
Note
units are disintegrations per minute per 100kg
RA-228#
- Units:
DM/.1MG
- Data Type:
decimal
- RA-228_FLAG_W Definitions:
- Error Column Label:
RA-228E
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
radium_228
DM/.1MG
0.000166 Bq/kg
None
Specific activity of 228Ra
Note
units are disintegrations per minute per 100kg
CTDXMISS#
- Units:
%TRANS
VOLTS
- Data Type:
decimal
- CTDXMISS_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
ctd_transmissometer
%TRANS
1e-2
None
ctd_transmissometer_raw
VOLTS
volts
None
Transmissivity of light in sea water, has path length and wavelength dependencies
Note
Standard rosette mounted transmissometers have a path length of 25cm and operate in the “red” wavelengths of around 640 to 660nm. These wavelengths provide a good estimate of the attenuation due to particles.
CTDBEAMCP#
- Units:
/METER
- Data Type:
decimal
- CTDBEAMCP_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
ctd_beamcp
/METER
m^-1
volume_beam_attenuation_coefficient_of_radiative_flux_in_sea_water_corrected_for_pure_water_attenuance
Radiative flux is the sum of shortwave and longwave radiative fluxes. In accordance with common usage in geophysical disciplines, “flux” implies per unit area, called “flux density” in physics. The volume scattering/absorption/attenuation coefficient is the fractional change of radiative flux per unit path length due to the stated process. Coefficients with canonical units of m2 s-1 i.e. multiplied by density have standard names with specific_ instead of volume_. The scattering/absorption/attenuation coefficient is assumed to be an integral over all wavelengths, unless a coordinate of radiation_wavelength is included to specify the wavelength. Attenuation is the sum of absorption and scattering. Attenuation is sometimes called “extinction”. Beam attenuation refers to the decrease of radiative flux along the direction of the incident path. It is distinguished from attenuation of the downwelling component of radiative flux from any incident direction, also called “diffuse” attenuation. Corrected for pure water attendance means the attenuation coefficient has been adjusted/calibrated to remove the influence of absorption/scattering from the water itself.
CTDBETA700#
- Units:
VOLTS
M^-1/SR
- Data Type:
decimal
- CTDBETA700_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
ctd_beta700_raw
VOLTS
volts
None
ctd_beta700
M^-1/SR
m-1 sr-1
volume_scattering_function_of_radiative_flux_in_sea_water
Volume scattering function at 700nm with a centroid angle of 142 degrees.
Boss, E.B. and N. Haëntjens, 2016. Primer regarding measurements of chlorophyll fluorescence and the backscattering coefficient with WETLabs FLBB on profiling floats. SOCCOM Tech. Rep. 2016-1. https://soccom.princeton.edu/sites/default/files/files/SOCCOM_2016-1_Bio-optics-primer.pdf
Warning
This paramter is the bacscattering function (Beta) it is NOT the backscattering coefficient due to particles commonly called Bbp
BEAMAP#
- Units:
/METER
- Data Type:
decimal
- BEAMAP_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
beamap
/METER
m^-1
volume_absorption_coefficient_of_radiative_flux_in_sea_water
Volume beam absorption in sea water
CTDBBP700#
- Units:
/METER
- Data Type:
decimal
- CTDBBP700_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
ctd_bbp700
/METER
m^-1
None
Volume scattering coefficient due to particles at 700nm.
Boss, E.B. and N. Haëntjens, 2016. Primer regarding measurements of chlorophyll fluorescence and the backscattering coefficient with WETLabs FLBB on profiling floats. SOCCOM Tech. Rep. 2016-1. http://soccom.princeton.edu/sites/default/files/files/SOCCOM_2016-1_Bio-opticsprimer.pdf.
Warning
This paramter is the bacscattering coefficient due to particles (Bbp) it is NOT the backscattering function called Beta
CTDBETA650_124#
- Units:
M^-1/SR
- Data Type:
decimal
- CTDBETA650_124_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
ctd_beta650_124
M^-1/SR
m-1 sr-1
volume_scattering_function_of_radiative_flux_in_sea_water
Volume scattering function at 650nm with a centroid angle of 124 degrees.
Boss, E.B. and N. Haëntjens, 2016. Primer regarding measurements of chlorophyll fluorescence and the backscattering coefficient with WETLabs FLBB on profiling floats. SOCCOM Tech. Rep. 2016-1. https://soccom.princeton.edu/sites/default/files/files/SOCCOM_2016-1_Bio-optics-primer.pdf
Note
This may be incorrectly reported as having an angle of 117 degrees.
Warning
This parameter is the backscattering function (Beta) it is NOT the backscattering coefficient due to particles commonly called Bbp
CTDTURB#
- Units:
FTU
NTU
VOLTS
- Data Type:
decimal
- CTDTURB_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
ctd_turbidity_ftu
FTU
1
None
ctd_turbidity_ntu
NTU
1
sea_water_turbidity
ctd_turbidity_raw
VOLTS
volts
None
Turbidity describes the light scattered back (or passed though depending on units) depending on particle loading in the water. It is a dimensionless quantity.
CTDCDOM#
- Units:
QSU
VOLTS
- Data Type:
decimal
- CTDCDOM_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
ctd_cdom
QSU
1
concentration_of_colored_dissolved_organic_matter_in_sea_water_expressed_as_equivalent_mass_fraction_of_quinine_sulfate_dihydrate
ctd_cdom_raw
VOLTS
volts
None
In situ CDOM measured via a uv fluorometer
AR-39#
- Units:
PCTMOD
- Data Type:
decimal
- AR-39_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
argon_39
PCTMOD
1e-2
None
39Ar enrichment/depletion compared to modern atmospheric ratios
Note
The units mean ‘% modern’
CS-137#
- Units:
DM/.1MG
BQ/M^3
MBQ/KG
- Data Type:
decimal
- CS-137_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
cesium_137
DM/.1MG
0.000166 Bq/kg
None
cesium_137_bq
BQ/M^3
Bq m-3
None
cesium_137_bq_kg
MBQ/KG
mBq kg-1
None
Activity of 137Cs in seawater
Note
units are disintegrations per minute per 100kg
CS-134#
- Units:
BQ/M^3
MBQ/KG
- Data Type:
decimal
- CS-134_FLAG_W Definitions:
- Error Column Label:
CS134ER
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
cesium_134_bq
BQ/M^3
Bq m-3
None
cesium_134_bq_kg
MBQ/KG
mBq kg-1
None
Activity of 134Cs in seawater
KR-85#
- Units:
DM/MG
- Data Type:
decimal
- KR-85_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
krypton_85
DM/MG
0.0000166 Bq/kg
None
Specific activity of 85Kr
Note
units are disintegrations per minute per 1000kg
SR-90#
- Units:
DM/.1MG
- Data Type:
decimal
- SR-90_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
strontium_90
DM/.1MG
0.000166 Bq/kg
None
Specific activity of 90Sr
Note
units are disintegrations per minute per 100kg
N2O#
- Units:
NMOL/KG
NMOL/L
- Data Type:
decimal
- N2O_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
nitrous_oxide
NMOL/KG
nmol/kg
None
nitrous_oxide_l
NMOL/L
nmol/l
None
Dissolved nitrous oxide gas in sea water
RA-8/6#
- Units:
None
- Data Type:
decimal
- RA-8/6_FLAG_W Definitions:
- Error Column Label:
RA-8/6E
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
radium_228_226
None
None
None
Radtio of the activities of 228Ra to 226Ra
QUALT1#
- Units:
None
- Data Type:
string
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
quality_word_one
None
None
None
Quality code 1, this is not used in exchange files. In WOCE SEA and CTD files it represents the quality code assigned by the investigator responsible for the measurement. The quality code from QUALT1 is used as the FLAG_W in exchange files if QUALT2 is not available
QUALT2#
- Units:
None
- Data Type:
string
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
quality_word_two
None
None
None
Quality code 2, this is not used in exchange files. In WOCE SEA and CTD files it represents the quality code assigned by an independent data quality evaluator (DQE). When available this is the code used in exchange file FLAG_W columns.
MCHFRM#
- Units:
PMOL/KG
- Data Type:
decimal
- MCHFRM_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
methyl_chloroform
PMOL/KG
pmol/kg
None
The concentration of dissolved methyl chloroform in sea water. The IUPAC name for methyl chloroform is 1,1,1-Trichloroethane.
IODATE#
- Units:
NMOL/KG
NMOL/L
- Data Type:
decimal
- IODATE_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
iodate
NMOL/KG
nmol/kg
None
iodate_l
NMOL/L
nmol/l
None
Dissolved iodate IO3
IODIDE#
- Units:
NMOL/KG
- Data Type:
decimal
- IODIDE_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
iodide
NMOL/KG
nmol/kg
None
Dissolved elemental iodine
CHLORA#
- Units:
UG/KG
UG/L
- Data Type:
decimal
- CHLORA_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
chlorophyll_a_ug_kg
UG/KG
ug/kg
mass_fraction_of_chlorophyll_a_in_sea_water
chlorophyll_a
UG/L
ug/l
mass_concentration_of_chlorophyll_a_in_sea_water
chlorophyll-a. Chlorophylls are the green pigments found in most plants, algae and cyanobacteria; their presence is essential for photosynthesis to take place. There are several different forms of chlorophyll that occur naturally. All contain a chlorin ring (chemical formula C20H16N4) which gives the green pigment and a side chain whose structure varies. The naturally occurring forms of chlorophyll contain between 35 and 55 carbon atoms. Chlorophyll-a is the most commonly occurring form of natural chlorophyll. The chemical formula of chlorophyll-a is C55H72O5N4Mg.
PPHYTN#
- Units:
UG/KG
UG/L
- Data Type:
decimal
- PPHYTN_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
phaeophytin
UG/KG
ug/kg
None
phaeophytin_ug_l
UG/L
ug/l
None
Phaeophytin
CH3CL#
- Units:
PMOL/KG
- Data Type:
decimal
- CH3CL_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
methyl_chloride
PMOL/KG
pmol/kg
None
Concentration of Methyl Chloride
CH4#
- Units:
NMOL/KG
NMOL/L
- Data Type:
decimal
- CH4_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
methane
NMOL/KG
nmol/kg
None
methane_l
NMOL/L
nmol/l
None
Methane
DMS#
- Units:
NMOL/L
- Data Type:
decimal
- DMS_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
dimethyl_sulfide
NMOL/L
nmol/l
None
The chemical formula for dimethyl sulfide is (CH3)2S. Dimethyl sulfide is sometimes referred to as DMS.
N2#
- Units:
UMOL/KG
- Data Type:
decimal
- N2_FLAG_W Definitions:
- Error Column Label:
N2_ERROR
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
nitrogen
UMOL/KG
umol/kg
None
Dissolved elemental nitrogen gas (N2) in sea water.
CALCIUM#
- Units:
MMOL/KG
- Data Type:
decimal
- CALCIUM_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
calcium
MMOL/KG
mmol kg-1
None
Dissolved elemental calcium
ARGON#
- Units:
UMOL/KG
UMOL/L
- Data Type:
decimal
- ARGON_FLAG_W Definitions:
- Error Column Label:
ARGONER
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
argon
UMOL/KG
umol/kg
None
argon_l
UMOL/L
umol l-1
None
Dissolved elemental argon
14C-DOC#
- Units:
/MILLE
- Data Type:
decimal
- 14C-DOC_FLAG_W Definitions:
- Error Column Label:
14C-DOCERR
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
dissolved_organic_carbon_14
/MILLE
1e-3
None
Enrichment of 14C vs 12C in DOC compared to a reference standard usually VPDB. This ratio has been corrected for isotopic fractionation and is usually written as upper case delta Δ14C.
13C-DOC#
- Units:
/MILLE
- Data Type:
decimal
- 13C-DOC_FLAG_W Definitions:
- Error Column Label:
13C-DOCERR
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
dissolved_organic_carbon_13
/MILLE
1e-3
None
Enrichment of 13C vs 12C in DOC compared to a reference standard usually VPDB. This is usually written as lower case delta δ13C.
D15N_NO3#
- Units:
/MILLE
- Data Type:
decimal
- D15N_NO3_FLAG_W Definitions:
- Error Column Label:
D15N_NO3_ERROR
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
d15n_no3
/MILLE
1e-3
None
Enrichment of the 15N/14N isotopic ratio of dissolved nitrate
D15N_NO2#
- Units:
/MILLE
- Data Type:
decimal
- D15N_NO2_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
d15n_no2
/MILLE
1e-3
None
Enrichment of the 15N/14N isotopic ratio of dissolved nitrite
D15N_NH4#
- Units:
/MILLE
- Data Type:
decimal
- D15N_NH4_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
d15n_nh4
/MILLE
1e-3
None
Enrichment of the 15N/14N isotopic ratio of dissolved ammonium
D15N_N2O#
- Units:
/MILLE
- Data Type:
decimal
- D15N_N2O_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
d15n_n2o
/MILLE
1e-3
None
Enrichment of the 15N/14N isotopic ratio of dissolved nitrus oxide, this parameter a subsitution of 15N for 14N in either position of the molecule. This is sometimes called “bulk” D15N.
D15N_ALPHA_N2O#
- Units:
/MILLE
- Data Type:
decimal
- D15N_ALPHA_N2O_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
d15n_alpha_n2o
/MILLE
1e-3
None
Enrichment of 15N vs 14N in N2O (nitrous oxide) where the substitution has occurred at the center position of the N2O molecule as compared to a standard. N2O where the substitution has occurred in the end nitrogen atom is called D15N_BETA and is not usually measured. D15N_BETA can be calculated from bulk D15N and D15N_ALPHA using equation 25 from Toyoda and Yoshida 1999 [Toyoda1999]
Toyoda and Yoshida give the value of A=0.998, though this needs to be determined experimentally for the standard in use. We have seen data using a value of A=1 in data submitted to CCHDO.
Determination of Nitrogen Isotopomers of Nitrous Oxide on a Modified Isotope Ratio Mass Spectrometer; Sakae Toyoda and Naohiro Yoshida; Analytical Chemistry 1999 71 (20), 4711-4718; DOI: 10.1021/ac9904563
D15N_NO2+NO3#
- Units:
/MILLE
- Data Type:
decimal
- D15N_NO2+NO3_FLAG_W Definitions:
- Error Column Label:
D15N_NO2+NO3_ERROR
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
d15n_nitrite_nitrate
/MILLE
1e-3
None
Ratio of 15N to 14N of nitrite+nitrate in the sample vs the ratio of 15N to 14N in a reference standard (VMSOW)
D15N_PON#
- Units:
/MILLE
- Data Type:
decimal
- D15N_PON_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
d15n_pon
/MILLE
1e-3
None
Enrichment of the 15N/14N isotopic ratio of particualte organic nitrogen
D15N_TDN#
- Units:
/MILLE
- Data Type:
decimal
- D15N_TDN_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
d15n_tdn
/MILLE
1e-3
None
Enrichment of the 15N/14N isotopic ratio of total dissolved nitrogen
D18O_NO2+NO3#
- Units:
/MILLE
- Data Type:
decimal
- D18O_NO2+NO3_FLAG_W Definitions:
- Error Column Label:
D18O_NO2+NO3_ERROR
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
d18o_nitrite_nitrate
/MILLE
1e-3
None
Ratio of 18O to 16O of nitrite+nitrate in the sample vs the ratio of 18O to 16O of a reference standard (VMSOW)
D18O_NO3#
- Units:
/MILLE
- Data Type:
decimal
- D18O_NO3_FLAG_W Definitions:
- Error Column Label:
D18O_NO3_ERROR
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
d18o_nitrate
/MILLE
1e-3
None
Ratio of 18O to 16O of nitrate in the sample vs the ratio of 18O to 16O of a reference standard (VMSOW)
D18O_NO2#
- Units:
/MILLE
- Data Type:
decimal
- D18O_NO2_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
d18o_nitrite
/MILLE
1e-3
None
Ratio of 18O to 16O of nitrite in the sample vs the ratio of 18O to 16O of a reference standard (VMSOW)
D18O_N2O#
- Units:
/MILLE
- Data Type:
decimal
- D18O_N2O_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
d18o_nitrust_oxide
/MILLE
1e-3
None
Ratio of 18O to 16O of nitrus oxide in the sample vs the ratio of 18O to 16O of a reference standard (VMSOW)
UREA#
- Units:
UMOL/KG
- Data Type:
decimal
- UREA_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
urea
UMOL/KG
umol/kg
None
Urea has the chemical formula CO(NH2)2
TOT_CHL_A#
- Units:
MG/M^3
- Data Type:
decimal
- TOT_CHL_A_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
hplc_tot_chl_a
MG/M^3
mg/m^3
mass_concentration_of_chlorophyll_a_in_sea_water
Total chlorophyll a measured using HPLC
SeaBass Description:HPLC DV_Chl_a + MV_Chl_a + Chlide_a + Chl_a_allom + Chl_a_prime
Note
A different measurement than CHLORA
TOT_CHL_B#
- Units:
MG/M^3
- Data Type:
decimal
- TOT_CHL_B_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
hplc_tot_chl_b
MG/M^3
mg/m^3
mass_concentration_of_chlorophyll_b_in_sea_water
HPLC DV_Chl_b + MV_Chl_b
TOT_CHL_C#
- Units:
MG/M^3
- Data Type:
decimal
- TOT_CHL_C_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
hplc_tot_chl_c
MG/M^3
mg/m^3
mass_concentration_of_chlorophyll_c_in_sea_water
HPLC chl_c1 + chl_c2 (chl_c1c2) + chl_c3
ALPHA-BETA-CAR#
- Units:
MG/M^3
- Data Type:
decimal
- ALPHA-BETA-CAR_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
hplc_alpha_beta_carotenes
MG/M^3
mg/m^3
mass_concentration_of_carotene_in_sea_water
HPLC Alpha (Beta,epsilon) + Beta (Beta,beta) Carotenes
BUT-FUCO#
- Units:
MG/M^3
- Data Type:
decimal
- BUT-FUCO_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
hplc_19butanoyloxyfucoxanthin
MG/M^3
mg/m^3
mass_concentration_of_19_butanoyloxyfucoxanthin_in_sea_water
HPLC 19’-Butanoyloxyfucoxanthin
HEX-FUCO#
- Units:
MG/M^3
- Data Type:
decimal
- HEX-FUCO_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
hplc_19_hexanoyloxyfucoxanthin
MG/M^3
mg/m^3
mass_concentration_of_19_hexanoyloxyfucoxanthin_in_sea_water
HPLC 19’-Hexanoyloxyfucoxanthin
ALLO#
- Units:
MG/M^3
- Data Type:
decimal
- ALLO_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
hplc_alloxanthin
MG/M^3
mg/m^3
None
HPLC Alloxanthin
ANTH#
- Units:
MG/M^3
- Data Type:
decimal
- ANTH_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
hpld_antheraxanthin
MG/M^3
mg/m^3
None
HPLC Antheraxanthin
DIADINO#
- Units:
MG/M^3
- Data Type:
decimal
- DIADINO_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
hplc_diadinoxanthin
MG/M^3
mg/m^3
mass_concentration_of_diadinoxanthin_in_sea_water
HPLC Diadinoxanthin
DIATO#
- Units:
MG/M^3
- Data Type:
decimal
- DIATO_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
hplc_diatoxanthin
MG/M^3
mg/m^3
None
HPLC Diatoxanthin
HFUCO#
- Units:
MG/M^3
- Data Type:
decimal
- HFUCO_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
hplc_fucoxanthin
MG/M^3
mg/m^3
mass_concentration_of_fucoxanthin_in_sea_water
HPLC Fucoxanthin
PERID#
- Units:
MG/M^3
- Data Type:
decimal
- PERID_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
hplc_peridinin
MG/M^3
mg/m^3
mass_concentration_of_peridinin_in_sea_water
HPLC Peridinin
ZEA#
- Units:
MG/M^3
- Data Type:
decimal
- ZEA_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
hplc_zeaxanthin
MG/M^3
mg/m^3
mass_concentration_of_zeaxanthin_in_sea_water
HPLC Zeaxanthin
MV_CHL_A#
- Units:
MG/M^3
- Data Type:
decimal
- MV_CHL_A_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
hplc_monovinyl_chlorophyll_a
MG/M^3
mg/m^3
mass_concentration_of_monovinyl_chlorophyll_a_in_sea_water
HPLC Monovinyl Chlorophyll a
DV_CHL_A#
- Units:
MG/M^3
- Data Type:
decimal
- DV_CHL_A_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
hplc_divinyl_chlorophyll_a
MG/M^3
mg/m^3
mass_concentration_of_divinyl_chlorophyll_a_in_sea_water
HPLC Divinyl Chlorophyll a
CHLIDE_A#
- Units:
MG/M^3
- Data Type:
decimal
- CHLIDE_A_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
hplc_chlorophyllide_a
MG/M^3
mg/m^3
mass_concentration_of_chlorophyllide_a_in_sea_water
HPLC Chlorophyllide a
MV_CHL_B#
- Units:
MG/M^3
- Data Type:
decimal
- MV_CHL_B_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
hplc_monovinyl_chlorophyll_b
MG/M^3
mg/m^3
None
HPLC Monovinyl Chlorophyll b
DV_CHL_B#
- Units:
MG/M^3
- Data Type:
decimal
- DV_CHL_B_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
hplc_divinyl_chlorophyll_b
MG/M^3
mg/m^3
None
HPLC Divinyl Chlorophyll B
CHL_C1C2#
- Units:
MG/M^3
- Data Type:
decimal
- CHL_C1C2_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
hplc_chlorophyll_c1_c2
MG/M^3
mg/m^3
mass_concentration_of_chlorophyll_c1_and_chlorophyll_c2_in_sea_water
HPLC Chlorophyll c1 + c2
CHL_C2#
- Units:
MG/M^3
- Data Type:
decimal
- CHL_C2_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
hplc_chlorophyll_c2
MG/M^3
mg/m^3
None
HPLC Chlorophyll c2
CHL_C3#
- Units:
MG/M^3
- Data Type:
decimal
- CHL_C3_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
hplc_chlorophyll_c3
MG/M^3
mg/m^3
mass_concentration_of_chlorophyll_c3_in_sea_water
HPLC Chlorophyll c3
LUT#
- Units:
MG/M^3
- Data Type:
decimal
- LUT_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
hplc_lutein
MG/M^3
mg/m^3
mass_concentration_of_lutein_in_sea_water
HPLC Lutein
NEO#
- Units:
MG/M^3
- Data Type:
decimal
- NEO_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
hplc_neoxanthin
MG/M^3
mg/m^3
None
HPLC Neoxanthin
VIOLA#
- Units:
MG/M^3
- Data Type:
decimal
- VIOLA_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
hplc_violaxanthin
MG/M^3
mg/m^3
mass_concentration_of_violaxanthin_in_sea_water
HPLC Violaxanthin
PHYTIN_A#
- Units:
MG/M^3
- Data Type:
decimal
- PHYTIN_A_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
hplc_pheophytin_a
MG/M^3
mg/m^3
None
HPLC Pheophytin a
PHIDE_A#
- Units:
MG/M^3
- Data Type:
decimal
- PHIDE_A_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
hplc_pheophorbide_a
MG/M^3
mg/m^3
None
HPLC Pheophorbide a
PRAS#
- Units:
MG/M^3
- Data Type:
decimal
- PRAS_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
hplc_prasinoxanthin
MG/M^3
mg/m^3
mass_concentration_of_prasinoxanthin_in_sea_water
HPLC Prasinoxanthin
GYRO#
- Units:
MG/M^3
- Data Type:
decimal
- GYRO_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
hplc_gyroxanthin_diester
MG/M^3
mg/m^3
None
HPLC Gyroxanthin-Diester
BTL_DATE#
- Units:
None
- Data Type:
string
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
bottle_date
None
None
None
Date of an individual bottle closure in the same format as DATE, for the canonical reported station date, use DATE
BTL_TIME#
- Units:
None
- Data Type:
string
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
bottle_time
None
None
None
Time of an individual bottle closure in the same format as TIME, for the canonical reported station time, use TIME
CTDDEPTH#
- Units:
METERS
- Data Type:
decimal
- CTDDEPTH_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
package_depth
METERS
meters
depth
The calcualted depth of the CTD itself for this pressure level
Warning
DEPTH without the CTD prefix is the distance to the sea floor.
ODF_CTDPRS#
- Units:
DBAR
- Data Type:
decimal
- ODF_CTDPRS_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
odf_pressure
DBAR
dbar
None
The pressure as corrected by ODF acquisition software. It will often be equivalent to the reported CTDPRS value. When ODF_CTDPRS is present in a datafile, the CTDPRS value came from the instrument manufacturers acquisition software.
BTL_LAT#
- Units:
None
- Data Type:
decimal
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
bottle_latitude
None
None
latitude
Latitude (ship position) of an individual bottle closure in the same format as LATITUDE, for the canonical reported station latitude, use LATITUDE
BTL_LON#
- Units:
None
- Data Type:
decimal
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
bottle_longitude
None
None
longitude
Longitude (ship position) of an individual bottle closure in the same format as LONGITUDE, for the canonical reported station longitude, use LONGITUDE
CTDNOBS#
- Units:
None
- Data Type:
integer
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
ctd_number_of_observations
None
None
number_of_observations
The number of discrete observations from which the values of another data variable have been derived
CTDETIME#
- Units:
SECONDS
- Data Type:
decimal
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
ctd_elapsed_time
SECONDS
seconds
None
The elapsed time of CTD pressure bin
INSTRUMENT_ID#
- Units:
None
- Data Type:
string
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
instrument_id
None
None
None
The serial number of the CTD. In the case of SBE9plus, this is the serial number of the main housing, not the sensors.
SAMPLING_RATE#
- Units:
HZ
- Data Type:
decimal
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
ctd_sampling_rate
HZ
1/s
None
The sampling rate of the CTD
THETA#
- Units:
DEG C
ITS-90
IPTS-68
- Data Type:
decimal
- THETA_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
potential_temperature_c
DEG C
degC
sea_water_potential_temperature
potential_temperature
ITS-90
degC
sea_water_potential_temperature
potential_temperature_68
IPTS-68
degC
sea_water_potential_temperature
Sea water potential temperature is the temperature a parcel of sea water would have if moved adiabatically to sea level pressure.
Note
Typically does not have quality flags.
AOU#
- Units:
UMOL/KG
- Data Type:
decimal
- AOU_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
apparent_oxygen_utilization
UMOL/KG
umol/kg
apparent_oxygen_utilization
Apparent Oxygen Utilization (AOU) is the difference between measured dissolved oxygen concentration in water, and the equilibrium saturation concentration of dissolved oxygen in water with the same physical and chemical properties.
ARABI#
- Units:
NMOL/KG
- Data Type:
decimal
- ARABI_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
arabinose
NMOL/KG
nmol/kg
None
Concentration of Arabanose after hydrolysis
BACT#
- Units:
E8/L
- Data Type:
decimal
- BACT_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
bacterial_cell_count
E8/L
1e8 l-1
None
Cell count of non pigmented heterotrophic bacterioplankton through FCM
CELLCOUNT#
- Units:
/L
- Data Type:
decimal
- CELLCOUNT_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
cellcount
/L
l-1
None
Count of all organic cells in a discerete sample
SYN#
- Units:
E6/L
- Data Type:
decimal
- SYN_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
synechococcus_cell_count
E6/L
1e6 l-1
None
Synechococcus Cell Count
PEUK#
- Units:
E6/L
- Data Type:
decimal
- PEUK_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
picoeukaryote_cell_counts
E6/L
1e6 l-1
None
Pigmented Picoeukaryotes cell count
PROC#
- Units:
E7/L
- Data Type:
decimal
- PROC_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
prochlorophyte_cell_count
E7/L
1e7 l-1
None
Prochlorophyte Cell Count
BLACKC#
- Units:
UMOL/L
- Data Type:
decimal
- BLACKC_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
black_carbon
UMOL/L
umol l-1
None
Black carbon (e.g. soot) concentration
BRDU#
- Units:
PMOL/L/H
- Data Type:
decimal
- BRDU_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
brdu_uptake
PMOL/L/H
pmol l-1 h-1
None
Bacterial Production via BrdU (Bromodeoxyuridine ) uptake Method
CH3BR#
- Units:
PMOL/KG
- Data Type:
decimal
- CH3BR_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
methyl_bromide
PMOL/KG
pmol/kg
None
Concentration of Methyl Bromide
CH3I#
- Units:
PMOL/KG
- Data Type:
decimal
- CH3I_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
methyl_iodide
PMOL/KG
pmol/kg
None
Concentration of Methyl Iodide
DCNS#
- Units:
NMOL/KG
- Data Type:
decimal
- DCNS_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
dcns
NMOL/KG
nmol/kg
None
Dissolved Combined Neutral Sugars
FUCO#
- Units:
NMOL/KG
- Data Type:
decimal
- FUCO_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
fucose
NMOL/KG
nmol/kg
None
Concentration of Fucose after hydrolyses
GALA#
- Units:
NMOL/KG
- Data Type:
decimal
- GALA_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
galactose
NMOL/KG
nmol/kg
None
Concentration of Galactose after hydrolysis
GLUC#
- Units:
NMOL/KG
- Data Type:
decimal
- GLUC_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
glucose
NMOL/KG
nmol/kg
None
Concentration of Glucose after hydrolysis
MAN#
- Units:
NMOL/KG
- Data Type:
decimal
- MAN_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
mannose
NMOL/KG
nmol/kg
None
Concentration of Mannose after hydrolysis
RHAM#
- Units:
NMOL/KG
- Data Type:
decimal
- RHAM_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
rhamnose
NMOL/KG
nmol/kg
None
Concetration of Rhamnose after hydrolysis
LAB_DEN#
- Units:
KG/M^3
- Data Type:
decimal
- LAB_DEN_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
density
KG/M^3
kg m-3
None
Density measured in a lab, not calcualted from temperature, salinity, and pressure
KRYPTON#
- Units:
NMOL/KG
NMOL/L
- Data Type:
decimal
- KRYPTON_FLAG_W Definitions:
- Error Column Label:
KRYPTONER
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
krypton
NMOL/KG
nmol/kg
None
krypton_l
NMOL/L
nmol/l
None
Dissolved krypton gas in seawater
XENON#
- Units:
NMOL/KG
NMOL/L
- Data Type:
decimal
- XENON_FLAG_W Definitions:
- Error Column Label:
XENONER
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
xenon
NMOL/KG
nmol/kg
None
xenon_l
NMOL/L
nmol/l
None
Dissolved xenon gas in sea water
PIGMENTS#
- Units:
None
- Data Type:
decimal
- PIGMENTS_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
pigments
None
None
None
Phytoplankton pigments
Note
This is almost always a placeholder for samples collected for HPLC analysis later, the results of which are published at NASA SeaBASS
SALTREF#
- Units:
G/KG
- Data Type:
decimal
- SALTREF_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
reference_salinity
G/KG
g/kg
sea_water_reference_salinity
Salinity reported on the Reference-Composition Salinity Scale, reported in units of “absolute salinity” (g/kg). If a sea water sample has the Reference Composition (defined in Millero et al., 2008), then its Reference Salinity is the best available estimate of its Absolute Salinity. For general purposes, Reference Salinity is (35.16504 g kg-1)/35 times Practical Salinity. Reference: www.teos-10.org; Millero et al., 2008 doi: 10.1016/j.dsr.2007.10.001.
Note
See “The composition of Standard Seawater and the definition of the Reference-Composition Salinity Scale” by Millero et. al (2007) 10.1016/j.dsr.2007.10.001
SF5CF3#
- Units:
FMOL/KG
FMOL/L
- Data Type:
decimal
- SF5CF3_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
trifluoromethylsulfur_pentafluoride
FMOL/KG
fmol/kg
None
trifluoromethylsulfur_pentafluoride_l
FMOL/L
fmol/l
None
Concentration of Trifluoromethyl Sulfur Pentafluoride
DWNPRS#
- Units:
DBAR
- Data Type:
decimal
- DWNPRS_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
downcast_pressure
DBAR
dbar
sea_water_pressure
Pressure on the downcast for the same isopycnal as the upcast
DWNOXY#
- Units:
UMOL/KG
- Data Type:
decimal
- DWNOXY_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
downcast_oxygen
UMOL/KG
umol/kg
moles_of_oxygen_per_unit_mass_in_sea_water
CTD Oxygen on the downcast for the same isopycnal as the upcast
SIG0#
- Units:
KG/M^3
- Data Type:
decimal
- SIG0_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
sigma0
KG/M^3
kg m-3
sea_water_sigma_theta
Potential density anomaly referenced to 0 dbar (ocean surface)
SOMSAL#
- Units:
PSS-78
- Data Type:
decimal
- SOMSAL_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
somma_salinity
PSS-78
1
sea_water_practical_salinity
Salinity measured by a Single-Operator Multiparameter Metabolic Analyzer (SOMMA), used in sea water CO2 analysis
HPLC#
- Units:
None
- Data Type:
string
- HPLC_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
hplc_placeholder
None
None
None
High-performance liquid chromatography
Note
This is a placeholder parameter which indicates water collected from a bottle for analysis
Warning
These data do not get submitted to CCHDO, most are sent to NASA SeaBASS
DNA#
- Units:
None
- Data Type:
string
- DNA_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
dna_placeholder
None
None
None
Genetic analysis
Note
This is a placeholder parameter which indicates water collected from a bottle for analysis
Warning
These data to not get submitted to CCHDO
UPTAKE#
- Units:
None
- Data Type:
string
- UPTAKE_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
update_placeholder
None
None
None
Measures of uptake in incubation experiments
Note
This is a placeholder parameter which indicates water collected from a bottle for analysis
FCM#
- Units:
None
- Data Type:
string
- FCM_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
flow_cytometry_placeholder
None
None
None
Flow Cytometry
Note
This is a placeholder parameter which indicates water collected from a bottle for analysis
Warning
These data to not get submitted to CCHDO
ABUNDANCE#
- Units:
None
- Data Type:
string
- ABUNDANCE_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
abundance_placeholder
None
None
None
Placeholder for cell counts of species
Note
This is a placeholder parameter which indicates water collected from a bottle for analysis
SIP#
- Units:
None
- Data Type:
string
- SIP_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
stable_isotope_probing_placeholder
None
None
None
Stable isotope probing.
This describes samples taken for an uptake analysis which introduces stable isotopes and measures their uptake over a period of time.
Note
This is a placeholder parameter which indicates water collected from a bottle for analysis
QUOTA#
- Units:
None
- Data Type:
string
- QUOTA_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
quota_placeholder
None
None
None
Placehodler for cell-quota model measurements
Note
This is a placeholder parameter which indicates water collected from a bottle for analysis
IMAGES#
- Units:
None
- Data Type:
string
- IMAGES_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
image_placeholder
None
None
None
Imaging; for example a FlowCam
Note
This is a placeholder parameter which indicates water collected from a bottle for analysis
CDOM_NASA#
- Units:
None
- Data Type:
string
- CDOM_NASA_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
cdom_nasa_placeholder
None
None
None
Placholder for CDOM spectral absoptions performed by a group from NASA
Note
This is a placeholder parameter which indicates water collected from a bottle for analysis
CDOM_UCSB#
- Units:
None
- Data Type:
string
- CDOM_UCSB_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
cdom_ucsb_placeholder
None
None
None
Placholder for CDOM spectral absoptions performed by a group from UCSB
Note
This is a placeholder parameter which indicates water collected from a bottle for analysis
MICROGELS#
- Units:
1E6 GELS/L
- Data Type:
decimal
- MICROGELS_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
microgel_abundance
1E6 GELS/L
1e6 l-1
None
Count of microgels per liter (abundance). Microgels are small organic particles formed by self-assembly and ionic bridging between organic macromolecules.
N2/ARGON#
- Units:
None
- Data Type:
decimal
- N2/ARGON_FLAG_W Definitions:
- Error Column Label:
N2/ARGON_ERROR
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
n2_argon_ratio
None
None
None
Ratio of dissolved elemental nitrogen to dissolved argon
N2/ARGON_UNSTRIPPED#
- Units:
None
- Data Type:
decimal
- N2/ARGON_UNSTRIPPED_FLAG_W Definitions:
- Error Column Label:
N2/ARGON_UNSTRIPPED_ERROR
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
n2_argon_ratio_unstripped
None
None
None
Ratio of dissolved elemental nitrogen to dissolved argon that has not been stripped of dissolved oxygen
Note
This is still fundamentally an N2/ARGON measurement and is a variation on an analytical technique. If following the corrections described in Charoenpong et al 2014 (DOI: 10.4319/lom.2014.12.323) then this should be comparable with any other N2/ARGON measurement but have a slightly larger uncertainty.
D15N_N2#
- Units:
/MILLE
- Data Type:
decimal
- D15N_N2_FLAG_W Definitions:
- Error Column Label:
D15N_N2_ERROR
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
d15n_n2
/MILLE
1e-3
None
Enrichment of the 15N/14N isotopic ratio of dissolved elemental nitrogen. The usual reference material is the atmosphere of Earth (AIR).
O2/AR#
- Units:
None
- Data Type:
decimal
- O2/AR_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
o2_ar
None
None
None
Oxygen to Argon radtio
SMDEPTH#
- Units:
METERS
- Data Type:
decimal
- SMDEPTH_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
sm_depth
METERS
meters
None
Depth calculated from pressure using the Saunders-Mantyla method.
In the ODF software this is cited as follows:
Saunders, P. M., 1981. Practical Conversion of Pressure to Depth. Journal of Physical Oceanography 11, 573-574. Mantyla, A. W., 1982-1983. Private correspondence.
FMDEPTH#
- Units:
METERS
- Data Type:
decimal
- FMDEPTH_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
fm_depth
METERS
meters
None
Depth calculated from pressure using the Fofonoff and Millard method, also known as the UNESCO 1983 formula
CYANB#
- Units:
1/ML
- Data Type:
decimal
- CYANB_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
cyanobacteria_cell_count
1/ML
ml-1
None
Count of cyanobacteria
PHYTOP#
- Units:
1/ML
- Data Type:
decimal
- PHYTOP_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
phytoplankton_cell_count
1/ML
ml-1
None
Count of phytoplankton
HE3_HE4_RATIO#
- Units:
None
- Data Type:
decimal
- HE3_HE4_RATIO_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
he3_he4_ratio
None
None
None
Ratio of the stable isotopes of Helium-3 to Helium-4 that are dissolved in seawater
Nd_143_144_D_EPSILON_BOTTLE#
- Units:
10000
- Data Type:
decimal
- Nd_143_144_D_EPSILON_BOTTLE_FLAG_W Definitions:
- Error Column Label:
Nd_143_144_D_EPSILON_BOTTLE_ERROR
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
nd_143_144_d_epsilon_bottle
10000
1e4
None
Atom ratio of dissolved Nd isotopes expressed in conventional notation
Note
For maximum data reusability, we decided to use GEOTRACES naming conventions
Nd_143_144_D_RATIO_BOTTLE#
- Units:
None
- Data Type:
decimal
- Nd_143_144_D_RATIO_BOTTLE_FLAG_W Definitions:
- Error Column Label:
Nd_143_144_D_RATIO_BOTTLE_ERROR
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
nd_143_144_d_ratio_bottle
None
None
None
Atom ratio of dissolved Nd isotopes
Note
For maximum data reusability, we decided to use GEOTRACES naming conventions
Nd_D_CONC#
- Units:
PMOL/KG
- Data Type:
decimal
- Nd_D_CONC_FLAG_W Definitions:
- Error Column Label:
Nd_D_CONC_ERROR
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
nd_d_conc
PMOL/KG
pmol/kg
None
Concentration of dissolved “bulk” Neodymium in sea water
Note
For maximum data reusability, we decided to use GEOTRACES naming conventions
La_D_CONC_BOTTLE#
- Units:
PMOL/L
- Data Type:
decimal
- La_D_CONC_BOTTLE_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
la_d_conc_bottle
PMOL/L
pmol/l
None
Dissolved Lanthanum in a discrete bottle sample
Note
For maximum data reusability, we decided to use GEOTRACES naming conventions
Ce_D_CONC_BOTTLE#
- Units:
PMOL/L
- Data Type:
decimal
- Ce_D_CONC_BOTTLE_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
ce_d_conc_bottle
PMOL/L
pmol/l
None
Dissolved Cerium in a discrete bottle sample
Note
For maximum data reusability, we decided to use GEOTRACES naming conventions
Pr_D_CONC_BOTTLE#
- Units:
PMOL/L
- Data Type:
decimal
- Pr_D_CONC_BOTTLE_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
pr_d_conc_bottle
PMOL/L
pmol/l
None
Dissolved Praseodymium in a discrete bottle sample
Note
For maximum data reusability, we decided to use GEOTRACES naming conventions
Sm_D_CONC_BOTTLE#
- Units:
PMOL/L
- Data Type:
decimal
- Sm_D_CONC_BOTTLE_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
sm_d_conc_bottle
PMOL/L
pmol/l
None
Dissolved Samarium in a discrete bottle sample
Note
For maximum data reusability, we decided to use GEOTRACES naming conventions
Eu_D_CONC_BOTTLE#
- Units:
PMOL/L
- Data Type:
decimal
- Eu_D_CONC_BOTTLE_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
eu_d_conc_bottle
PMOL/L
pmol/l
None
Dissolved Europium in a discrete bottle sample
Note
For maximum data reusability, we decided to use GEOTRACES naming conventions
Gd_D_CONC_BOTTLE#
- Units:
PMOL/L
- Data Type:
decimal
- Gd_D_CONC_BOTTLE_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
gd_d_conc_bottle
PMOL/L
pmol/l
None
Dissolved Gadolinium in a discrete bottle sample
Note
For maximum data reusability, we decided to use GEOTRACES naming conventions
Tb_D_CONC_BOTTLE#
- Units:
PMOL/L
- Data Type:
decimal
- Tb_D_CONC_BOTTLE_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
tb_d_conc_bottle
PMOL/L
pmol/l
None
Dissolved Terbium in a discrete bottle sample
Note
For maximum data reusability, we decided to use GEOTRACES naming conventions
Dy_D_CONC_BOTTLE#
- Units:
PMOL/L
- Data Type:
decimal
- Dy_D_CONC_BOTTLE_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
dy_d_conc_bottle
PMOL/L
pmol/l
None
Dissolved Dysprosium in a discrete bottle sample
Note
For maximum data reusability, we decided to use GEOTRACES naming conventions
Ho_D_CONC_BOTTLE#
- Units:
PMOL/L
- Data Type:
decimal
- Ho_D_CONC_BOTTLE_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
ho_d_conc_bottle
PMOL/L
pmol/l
None
Dissolved Holmium in a discrete bottle sample
Note
For maximum data reusability, we decided to use GEOTRACES naming conventions
Er_D_CONC_BOTTLE#
- Units:
PMOL/L
- Data Type:
decimal
- Er_D_CONC_BOTTLE_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
er_d_conc_bottle
PMOL/L
pmol/l
None
Dissolved Erbium in a discrete bottle sample
Note
For maximum data reusability, we decided to use GEOTRACES naming conventions
Tm_D_CONC_BOTTLE#
- Units:
PMOL/L
- Data Type:
decimal
- Tm_D_CONC_BOTTLE_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
tm_d_conc_bottle
PMOL/L
pmol/l
None
Dissolved Thulium in a discrete bottle sample
Note
For maximum data reusability, we decided to use GEOTRACES naming conventions
Yb_D_CONC_BOTTLE#
- Units:
PMOL/L
- Data Type:
decimal
- Yb_D_CONC_BOTTLE_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
yb_d_conc_bottle
PMOL/L
pmol/l
None
Dissolved Ytterbium in a discrete bottle sample
Note
For maximum data reusability, we decided to use GEOTRACES naming conventions
Lu_D_CONC_BOTTLE#
- Units:
PMOL/L
- Data Type:
decimal
- Lu_D_CONC_BOTTLE_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
lu_d_conc_bottle
PMOL/L
pmol/l
None
Dissovled Lutetium in a discrete bottle sample
Note
For maximum data reusability, we decided to use GEOTRACES naming conventions
STNNBR_U#
- Units:
None
- Data Type:
integer
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
user_station_number
None
None
None
User convienence statio number, unlike the canonical STNNBT param, this one must be an integer (so the NBR part of the name makse sense)
SAMPNO_U#
- Units:
None
- Data Type:
integer
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
user_sample_number
None
None
None
User convienence sample number, unlike the canonical SAMPNO param, this one must be an integer (so the NO part of the name makse sense)
BTLNBR_U#
- Units:
None
- Data Type:
integer
- BTLNBR_U_FLAG_W Definitions:
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
user_bottle_number
None
None
None
User convienence bottle number, unlike the canonical BTLNBR param, this one must be an integer (so the NBR part of the name makse sense)
LDEO_SAMPNO#
- Units:
None
- Data Type:
integer
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
ldeo_sample_number
None
None
None
Sample number used internally by LDEO
BNLID#
- Units:
None
- Data Type:
integer
- CF/netCDF Attributes:
nc_var
namewhp_unit
units
standard_name
bnlid
None
None
None
Brookhaven National Laboratory Identification bottle number
Changelog#
2024-03-22 (1.2.1)#
Update CCHDO Params to 2024.3
2022-03-22#
Update CCHDO params list to 0.1.17
2022-01-25#
This is a list of all the relevant changes which have occurred since the last time this log was edited, it was shamefully neglected by the lead author.
Major Changes#
Added parameter scope as a property, parameters must now have a scope of “cruise”, “profile”, or “sample”. Cruise scoped parameters must be constant for an entire cruise (currently no parameters have this property, including Expocode) Profile scoped parameters must be constant for an entire profile (e.g. date, time, lat, lon, etc..). Sample scoped parameters may vary within a profile, these are normal data. Parameters appearing in CTD headers are now required to have a “profile” scope. This removes the ability for undocumented “user” headers to appear in the CTD headers section. Use comments instead for these extra bits of information.
Removed “ARBITRARY” as a valid unit for any parameter. This was originally added to deal with some turbidity parameters which had “arbitrary” units, this was later discovered to be FNU/NTU which, while “arbitrary”, are very specific. Additionally “ARBITRARY” was starting to be used erroneously for parameters which are unitless (e.g. counts and ratios). Going forward, specific parameters, if any, will be documented as ARBITRARY on a case by case basis in the parameters database.
The parameters database was spun off into a separate project (parameter updates are documented elsewhere now)
Minor Changes#
Added digit characters to allowed list of chars in STNNBR, SAMPNO, and BTLNBR.
Added GEOTR_EVENT and GEOTR_SAMPNO parameter names
A bunch of technical changes to how the params list page is generated.
Misc spelling corrections
Added CTDXMISSCP as a name
Prefixed most ctd parameters with CTD
Removed BTLNBR as part of the sample identifying composite key to align with WOCE documentation
Added BIOS_CASTID definition
Linked a parameters uncertainty name to the parameter itself (e.g. DELC14 and C14ERR)
Added a bunch of CF standard names
Added some WHP Parameter ID numbers, these are the numbers seen in sumfiles.
Added a “reference_scale” attribute to temperature and practical salinity parameters.
Started on a table to display the various options/known units for each parameter.
2016-01-08 (1.2)#
Add section on missing values (-999). This was a major omission from the 1.0 release.
2016-01-06 (1.1)#
Add an
ARBITRARY
unit that any parameter MAY use.
2015-11-16 (1.0.1)#
Added Parameters
XMISS [0-5VDC]
FLUOR [0-5VDC]
CTDNOBS
CTDETIME [SECONDS]
2015-10-29#
Organized the text encoding requirements better.
Added note about requirement levels following RFC 2119.
2015-04-27#
Define the structure of a
_ct1.zip
archive.
2015-01-21#
Parameters no longer will have a print format, now will just have a data type
2014-08-18#
Less restrictive parameter names and units.
Specify how numerical data should appear.
CCHDO now keeps numerical precision of data found in files
2014-07-24#
Require parameter names in an exchange file to be unique.
2014-07-16#
Changed stated file encoding to UTF-8 rather than ASCII. Some of the WHP-exchange bottle files have non-ASCII in the citations.