Metadata key reference¶
This page lists all high-level (format independent) metadata keys that can be accessed via
get() and used in
sel() and
order_by().
Keys follow the "<component>.<name>" naming convention. Each section
below corresponds to one component; click the component heading to go to its
dedicated page.
Parameter¶
Key |
Description |
|---|---|
|
Parameter variable name as a string (e.g. |
|
Alias of |
|
CF standard name of the parameter variable. |
|
CF long name of the parameter variable. |
|
Units of the parameter as a |
|
Chemical constituent or aerosol type, or |
|
Long name of the chemical constituent or aerosol type, or |
|
Central wavelength for optical parameters, or |
|
Wavelength bounds as a 2-tuple for optical parameters, or |
|
Units of the wavelength (e.g. nanometres), or |
|
Wave propagation direction for 2-D wave spectra parameters, or |
|
0-based index of the wave direction bin, or |
|
Direction bounds as a 2-tuple, or |
|
Units of the wave direction (e.g. degrees), or |
|
Wave frequency for 2-D wave spectra parameters, or |
|
0-based index of the wave frequency bin, or |
|
Frequency bounds as a 2-tuple, or |
|
Units of the wave frequency (e.g. 1/s), or |
Time¶
Key |
Description |
|---|---|
|
The base (reference) datetime of the forecast as a |
|
Alias of |
|
The date part of the base datetime as a |
|
The time-of-day part of the base datetime as a |
|
The valid datetime ( |
|
The forecast step as a |
|
Alias of |
|
The forecast month as an integer. Only available for monthly forecast time; returns |
|
The indexing datetime used for ordering within a dataset. Returns |
Vertical¶
Key |
Description |
|---|---|
|
Scalar level value in the native units of the level type. |
|
Level type name as a string (e.g. |
|
Layer bounds as a |
|
Abbreviation of the level type (e.g. |
|
Units of the level value. |
|
Positive direction of the coordinate ( |
|
Dictionary of CF metadata ( |
|
|
|
Coefficient arrays for parametric level types, |
|
Names of the coefficients for parametric level types, |
|
Number of model levels for parametric level types, |
Geography¶
Key |
Description |
|---|---|
|
Array of latitude values for every grid point. |
|
Array of longitude values for every grid point. |
|
1-D array of unique latitude values for regular grids, or |
|
1-D array of unique longitude values for regular grids, or |
|
Array of x-coordinates in the native CRS. |
|
Array of y-coordinates in the native CRS. |
|
Grid shape as a tuple of integers (e.g. |
|
|
|
|
|
Bounding box as a |
|
String identifying the grid type (e.g. |
|
Grid specification. Can be used to construct a new geography of the same type. Experimental; may not be available for all geography types. |
|
|
|
A hashable identifier that is the same for two fields sharing an identical grid. |
Ensemble¶
Key |
Description |
|---|---|
|
Ensemble member identifier as a string, or |
|
Alias of |
|
Alias of |
Processing (proc)¶
Warning
This component is experimental and may be changed in future versions of earthkit-data.
Key |
Description |
|---|---|
|
The first |
|
The time-span value from the first time processing item as a |
|
The processing method from the first time processing item as a
|
Labels¶
Labels use "labels.<user_key>" where user_key is any string chosen by the
caller. There are no predefined keys; every key-value pair is user-supplied.
>>> field.get("labels.my_key")
>>> field.set({"labels.my_key": "value"})
See Labels component for the full API and usage examples.