5. Climate Data Markup Language (CDML)¶
5.1. Introduction¶
The Climate Data Markup Language (CDML) is the markup language used to represent metadata in CDMS. CDML is based on the W3C XML standard (https://www.w3.org). This chapter defines the syntax of CDML. Read this section if you will be building or maintaining a CDMS database.
XML, the eXtensible Markup Language, makes it possible to define interoperable dialects of markup languages. The most recent version of HTML, the Web hypertext markup language, is an XML dialect. CDML is also an XML dialect, geared toward the representation of gridded climate datasets. XML provides rigor to the metadata representation, ensuring that applications can access it correctly. XML also deals with internationalization issues, and holds forth the promise that utilities for browsing, editing, and other common tasks will be available in the future.
CDML files have the file extension .xml or .cdml.
5.2. Elements¶
A CDML document consists of a nested collection of elements. An element is a description of the metadata associated with a CDMS object. The form of an element is:
<tag attribute-list> element-content </tag>
or
<tag attribute-list />
where
tag
is a string which defines the type of elementattribute-list
is a blank-separated list of attribute-value pairs, of the form:attribute = "value"
element-content
depends on the type of element. It is either a list of elements, or text which defines the element values. For example, the content of an axis element either is a list of axis values, or is a linear element.For datasets, the content is the blank-separated list of elements corresponding to the axes, grids, and variables contained in the dataset.
The CDML elements are:
5.2.1. CDML Tags¶
Tag |
Description |
---|---|
attr |
Extra attribute |
axis |
Coordinate axis |
domain |
Axes on which a variable is defined |
domElem |
Element of a variable domain |
linear |
Linearly-spaced axis values |
rectGrid |
Rectilinear Grid |
variable |
Variable |
5.3. Special Characters¶
XML reserves certain characters for markup. If they appear as content, they must be encoded to avoid confusion with markup:
5.3.1. Special Character Encodings¶
Character |
Encoding |
---|---|
< |
< |
> |
> |
& |
& |
“ |
" |
‘ |
' |
For example, the comment
Certain “special characters”, such as <, >, and ‘, must be encoded.
would appear in an attribute string as:
comment = “Certain "special characters", such as <, >, and ', must be encoded.”
5.4. Identifiers¶
In CDMS, all objects in a dataset have a unique string identifier. The id attribute holds the value of this identifier. If the variable, axis, or grid has a string name within a data file, then the id attribute ordinarily has this value. Alternatively, the name of the object in a data file can be stored in the name_in_file attribute, which can differ from the id. Datasets also have IDs, which can be used within a larger context (databases).
An identifer must start with an alphabetic character (upper or lower case), an underscore (_), or a colon (:). Characters after the first must be alphanumeric, an underscore, or colon. There is no restriction on the length of an identifier.
5.5. CF Metadata Standard¶
The CF metadata standard defines a set of conventions for usage of netCDF. This standard is supported by CDML. The document defines names and usage for metadata attributes. CF supersedes the GDT 1.3 standard.
5.6. CDML Syntax¶
The following notation is used in this section:
A
monospaced block
is used for a syntax specification.Bold text indicates literals.
(R|S) denotes either R or S.
R* denotes zero or more R.
R+ denotes one or more R.
A CDML document consists of a prolog followed by a single dataset element.
CDML-document ::= prolog dataset-element
The prolog defines the XML version, and the Document Type Definition (DTD), a formal specification of the document syntax. See https://www.w3.org/TR/1998/REC-xml-19980210 for a formal definition of XML
Version 1.0.
prolog ::= <?xml version="1.0"?> <!DOCTYPE dataset SYSTEM "https://www-pcmdi.llnl.gov/~drach/cdms/cdml.dtd">
5.6.1. Dataset Element¶
A dataset element describes a single dataset. The content is a list of elements corresponding to the axes, grids, and variables contained in the dataset. Axis, variable, and grid elements can be listed in any order, and an element ID can be used before the element is actually defined.
dataset-element ::=
<dataset dataset-attributes> dataset-content
</dataset>
dataset-content ::= (axis-element | grid-element | variable-element)* extra-attribute-element+
5.6.2. Dataset Attributes¶
Attribute |
Req? |
CF |
GDT |
Notes |
---|---|---|---|---|
appendices |
N |
N |
Y |
Version number |
calendar |
N |
N |
Y |
|
comment |
N |
Y |
Y |
Additional dataset information |
conventions |
Y |
Y |
Y |
The netCDF metadata standard. Example: ‘CF-1.0’ |
cdms_filemap |
Y |
N |
N |
Map of partitioned axes to files. See note below. |
directory |
N |
N |
N |
Root directory of the dataset |
frequency |
N |
N |
N |
Temporal frequency |
history |
N |
Y |
Y |
Evolution of the data |
id |
Y |
N |
N |
Dataset identifier |
institution |
N |
Y |
Y |
Who made or supplied the data |
production |
N |
N |
Y |
How the data was produced (see source) |
project |
N |
N |
N |
Project associated with the data Example: ‘CMIP 2’ |
references |
N |
Y |
N |
Published or web-based references that describe the data or methods used to produce it |
source |
N |
Y |
N |
The method of production of the original data. |
template |
N |
N |
N |
Filename template. This is an alternate mechanism, other than cdms_filemap, for describing the file mapping. See ‘cdimport -h’ for details. |
title |
N |
Y |
N |
A succinct description of the data. |
Notes:
The cdms_filemap
attribute describes how the dataset is partitioned
into files. The format is:
filemap ::= [ varmap, varmap, ...]
varmap ::= [ namelist, slicelist ]
namelist ::= [ name, name, ... ]
slicelist ::= [ indexlist, indexlist, ,,, ]
indexlist ::= [ time0, time1, lev0, lev1, path ]
name ::= variable name
time0 ::= first index of time in the file, or '-' if not split on time
time1 ::= last index of time + 1, in the file, or '-' if not split on time
lev0 ::= first index of vertical levels in the file, or '-' if not split on level
lev1 ::= last index +1 of vertical levels in the file, or '-' if not split on level
path ::= pathname of the file containing data for this time/level range.
The pathname is appended to the value of the directory attribute, to obtain an absolute pathname.
5.6.3. Axis Element¶
An axis element describes a single coordinate axis. The content can be a blank-separated list of axis values or a linear element. A linear element is a representation of a linearly-spaced axis as (start, delta, length).
axis-element ::=
<axis axis-attributes> axis-content
</axis>
axis-content ::= (axis-values | linear-element) extra-attribute-element*
axis-values ::= [value*]
linear-element ::=
<linear delta= "value”
length= “Integer“
start= “value“
> </linear>
5.6.4. Axis Elements¶
Attribute |
Req? |
CF |
GDT |
Notes |
---|---|---|---|---|
associate |
N |
N |
Y |
IDs of variables containing alternative sets of coordinates. |
axis |
N |
Y |
Y |
|
bounds |
N |
Y |
Y |
ID of the boundary variable |
calendar |
N |
Y |
N |
See dataset.calendar |
climatology |
N |
Y |
N |
Range of dates to which climatological statistics apply. |
comment |
N |
Y |
N |
String comment |
compress |
N |
Y |
Y |
Dimensions which have been compressed by gathering |
datatype |
Y |
N |
N |
Char, Short, Long, Float, Double, or String |
dates |
N |
Y |
N |
Range of dates to which statistics for a typical diurnal cycle apply. |
expand |
N |
N |
Y |
Coordinates prior to contraction |
formula_terms |
N |
Y |
N |
Variables that correspond to the terms in a formula. |
id |
Y |
N |
N |
Axis identifier. Also the name of the axis in the underlying file(s), if name_in_file is undefined. |
isvar |
N |
N |
N |
|
leap_month |
N |
Y |
N |
For a user-defined calendar, the month which is lengthened by a day in leap years. |
leap_year |
N |
Y |
N |
An example of a leap year for a user-defined calendar. All years that differ from this year by a multiple of four are leap years. |
length |
N |
N |
N |
Number of axis values, including values for which no data is defined. Cf. partition_length. |
long_name |
N |
Y |
Y |
Long description of a physical quantity |
modulo |
N |
N |
Y |
Arithmetic modulo of an axis with circular topology. |
month_lengths |
N |
Y |
N |
Length of each month in a non-leap year for a user-defined calendar. |
name_in_file |
N |
N |
N |
Name of the axis in the underlying file(s). See id. |
partition |
N |
N |
N |
How the axis is split across files. |
partition_length |
N |
N |
N |
Number of axis points for which data is actually defined. If data is missing for some values, this will be smaller than the length. |
positive |
N |
Y |
Y |
Direction of positive for a vertical axis |
standard_name |
N |
Y |
N |
Reference to an entry in the standard name table. |
topology |
N |
N |
Y |
|
units |
Y |
Y |
Y |
Units of a physical quantity |
weights |
N |
N |
N |
Name of the weights array |
5.6.5. Partition attribute¶
For an axis in a dataset, the .partition attribute describes how an axis is split across files. It is a list of the start and end indices of each axis partition.
FIGURE 4. Partitioned axis
For example, Figure 4 shows a time axis, representing the 36 months, January 1980 through December 1982, with December 1981 missing. The first partition interval is (0,12), the second is (12,23), and the third is (24,36), where the interval (i,j) represents all indices k such that i <= k < j. The .partition attribute for this axis would be the list:
[0, 12, 12, 23, 24, 36]
Note that the end index of the second interval is strictly less than the start index of the following interval. This indicates that data for that period is missing.
5.6.6. Grid Element¶
A grid element describes a horizontal, latitude-longitude grid which is rectilinear in topology,
grid-element ::=
<rectGrid grid-attributes
>
extra-attribute-element*
</rectGrid>
5.6.7. 6.5 RectGrid Attributes¶
5.6.8. Variable Element¶
A variable element describes a data variable. The domain of the variable is an ordered list of domain elements naming the axes on which the variable is defined. A domain element is a reference to an axis or grid in the dataset.
The length of a domain element is the number of axis points for which data can be retrieved. The partition_length is the number of points for which data is actually defined. If data is missing, this is less than the length.
variable-element ::=
<variable variable-attributes
>
variable-content
</variable>
variable-content ::=
variable-domain extra-attributeelement*``
variable-domain ::=
<domain> domain-element*
</domain>
domain-element ::=
<domElem name=”axis-name
”**
start=“``Integer``” **length=**”``Integer``”
**partition_length=**”``Integer``”/>**
5.6.9. Variable Attributes¶
Attribute |
Req? |
CF |
GDT |
Notes |
---|---|---|---|---|
|
Y |
N |
N |
Variable identifier. Also, the name of the variable in the underlying file(s), if name_in_file is undefined. |
|
N |
Y |
Y |
Additive offset for packing data. See scale_factor. |
|
N |
N |
Y |
IDs of variables containing alternative sets of coordinates Spatio-temporal dimensions. |
|
N |
N |
Y |
Example: TYX for a variable with domain (time, latitude, longitude) Note: for CF, applies to axes only. |
|
N |
Y |
N |
The method used to derive data that represents cell values, e.g., maximum,mean,variance, etc. |
|
N |
N |
N |
Comment string |
|
N |
Y |
N |
IDs of variables containing coordinate data. |
|
Y |
N |
N |
Char, Short, Long, Float, Double, or String |
|
N |
N |
N |
Id of the grid. |
|
N |
N |
N |
gaussian, uniform, equalarea, generic |
|
N |
Y |
Y |
Long description of a physical quantity. |
|
N |
Y |
Y |
Value used for data that are unknown or missing. |
|
N |
N |
N |
Name of the variable in the underlying file(s). See id. |
|
N |
Y |
Y |
Multiplicative factor for packing data. See add_offset. |
|
N |
Y |
N |
Reference to an entry in the standard name table. |
|
N |
N |
Y |
Records how data values represent subgrid variation. |
|
N |
N |
N |
Name of the file template to use for this variable. Overrides the dataset value. |
|
N |
Y |
Y |
Units of a physical quantity. |
|
N |
Y |
Y |
Largest valid value of a variable. |
|
N |
Y |
Y |
Smallest valid value of a variable. |
|
N |
Y |
Y |
Largest and smallest valid values of a variable. |
5.6.10. Attribute Element¶
Attributes which are not explicitly defined by the GDT convention are represented as extra attribute elements. Any dataset, axis, grid, or variable element can have an extra attribute as part of its content. This representation is also useful if the attribute value has non-blank whitespace characters (carriage returns, tabs, linefeeds) which are significant.
The datatype is one of: Char, Short, Long, Float, Double, or String.
extra-attribute-element ::=
<attr name=”attribute-name
”
datatype=”attribute-datatype
”> attribute-value
</attr>
5.7. A Sample CDML Document¶
Dataset “sample” has two variables, and six axes.
Note:
The file is indented for readability. This is not required; the added whitespace is ignored.
The dataset contains three axes and two variables. Variables u and v are functions of time, latitude, and longitude.
The global attribute cdms_filemap describes the mapping between variables and files. The entry
[[u],[[0,1,-,-,u_2000.nc],[1,2,-,-,u_2001.nc],[2,3,,-,u_2002.nc] ]
indicates that variableu
is contained in file u_2000.nc for time index 0, u_2001.nc for time index 1, etc.
<!DOCTYPE dataset SYSTEM "http://www-pcmdi.llnl.gov/software/cdms/cdml.dtd">
[-90. -78. -66. -54. -42. -30. -18. -6. 6. 18. 30. 42. 54. 66. 78. 90.]
<axis
id ="longitude"
length="32"
units="degrees_east"
datatype="Double"
>
[ 0. 11.25 22.5 33.75 45. 56.25 67.5 78.75 90.
101.25 112.5 123.75 135. 146.25 157.5 168.75 180. 191.25
202.5 213.75 225. 236.25 247.5 258.75 270. 281.25 292.5
303.75 315. 326.25 337.5 348.75]
</axis>
<axis
id ="time"
partition="[0 1 1 2 2 3]"
calendar="gregorian"
units="days since 2000-1-1"
datatype="Double"
length="3"
name_in_file="time"
>
[ 0. 366. 731.]
</axis>
<variable
id ="u"
missing_value="-99.9"
units="m/s"
datatype="Double"
>
<domain>
<domElem name="time" length="3" start="0"/>
<domElem name="latitude" length="16" start="0"/>
<domElem name="longitude" length="32" start="0"/>
</domain>
</variable>
<variable
id ="v"
missing_value="-99.9"
units="m/s"
datatype="Double"
>
<domain>
<domElem name="time" length="3" start="0"/>
<domElem name="latitude" length="16" start="0"/>
<domElem name="longitude" length="32" start="0"/>
</domain>
</variable>