diff --git a/pyproject.toml b/pyproject.toml index 2dca76ee..cd0fa4bd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,10 @@ requires-python = ">=3.10" dependencies = [ "cffi", "metkitlib", - "findlibs" + "findlibs", + "pyyaml", + "requests", + "platformdirs", ] [tool.setuptools.dynamic] diff --git a/python/pymetkit/src/pymetkit/__init__.py b/python/pymetkit/src/pymetkit/__init__.py index f6497777..1898a02d 100644 --- a/python/pymetkit/src/pymetkit/__init__.py +++ b/python/pymetkit/src/pymetkit/__init__.py @@ -1 +1,2 @@ from .pymetkit import * +from .pymetkit import ParamDB diff --git a/python/pymetkit/src/pymetkit/generate_parameter_metadata.py b/python/pymetkit/src/pymetkit/generate_parameter_metadata.py new file mode 100644 index 00000000..8036e3f1 --- /dev/null +++ b/python/pymetkit/src/pymetkit/generate_parameter_metadata.py @@ -0,0 +1,237 @@ +""" +Standalone script to generate: + - parameter_metadata.yaml — one entry per ECMWF parameter + - unit_metadata.yaml — one entry per ECMWF unit + +Usage +----- + python -m pymetkit.generate_parameter_metadata + # or directly: + python generate_parameter_metadata.py +""" + +import requests +import yaml +from pathlib import Path + +PARAM_URL = "https://codes.ecmwf.int/parameter-database/api/v1/param/" +UNIT_URL = "https://codes.ecmwf.int/parameter-database/api/v1/unit/" +ORIGIN_URL = "https://codes.ecmwf.int/parameter-database/api/v1/origin/" + +# Output paths: canonical location is share/metkit/ at the repo root, which is +# four parent directories above this module file: +# python/pymetkit/src/pymetkit/ -> python/pymetkit/src/ -> python/pymetkit/ +# -> python/ -> +_REPO_ROOT = Path(__file__).parents[4] +PARAM_OUTPUT = _REPO_ROOT / "share" / "metkit" / "parameter_metadata.yaml" +UNIT_OUTPUT = _REPO_ROOT / "share" / "metkit" / "unit_metadata.yaml" + +#: Timeout in seconds for HTTP requests to the ECMWF parameter database API. +REQUEST_TIMEOUT = 30 + + +# --------------------------------------------------------------------------- +# Units +# --------------------------------------------------------------------------- + + +def fetch_units(url: str = UNIT_URL) -> tuple[list[dict], dict[int, str]]: + """ + Fetch all units from the ECMWF parameter database API. + + Returns + ------- + units : list[dict] + Normalised unit records ready to be written to unit_metadata.yaml. + unit_map : dict[int, str] + Mapping of unit id -> unit name string for use in parameter enrichment. + """ + print(f"Fetching units from {url} ...") + response = requests.get(url, timeout=REQUEST_TIMEOUT) + response.raise_for_status() + raw_units = response.json() + print(f" Received {len(raw_units)} units.") + + units = [] + unit_map: dict[int, str] = {} + + for raw in raw_units: + uid = int(raw["id"]) + # The API may use 'name', 'symbol', or 'label' for the unit string + name = raw.get("name") or raw.get("symbol") or raw.get("label") or "" + + entry = {"id": uid} + # Preserve all fields the API returns, but ensure id comes first + for key, value in raw.items(): + if key == "id": + continue + entry[key] = value + # Always emit a canonical 'name' field so unit_metadata.yaml has a + # stable schema regardless of which key the API uses (name/symbol/label) + entry["name"] = name + + units.append(entry) + unit_map[uid] = name + + units.sort(key=lambda e: e["id"]) + return units, unit_map + + +def write_unit_yaml(units: list[dict], output_path: Path = UNIT_OUTPUT) -> None: + """Write the unit list to a YAML file.""" + with output_path.open("w") as fh: + yaml.dump( + units, + fh, + default_flow_style=False, + allow_unicode=True, + sort_keys=False, + ) + print(f"Written {len(units)} units to {output_path}") + + +# --------------------------------------------------------------------------- +# Origins +# --------------------------------------------------------------------------- + + +def fetch_origin_map( + origin_url: str = ORIGIN_URL, + param_url: str = PARAM_URL, +) -> tuple[dict[int, dict], dict[int, list[int]]]: + """Fetch all origins and build a reverse map of param_id -> [origin_ids]. + + The ``/param/`` endpoint does not include an ``origin`` field in its + response, so we derive the mapping by querying each origin's filtered + parameter list via ``/param/?origin=``. + + Returns + ------- + origins : dict[int, dict] + Mapping of origin_id -> origin metadata (id, abbreviation, name). + param_origin_map : dict[int, list[int]] + Mapping of param_id -> sorted list of origin_ids that include it. + """ + print(f"Fetching origins from {origin_url} ...") + response = requests.get(origin_url, timeout=REQUEST_TIMEOUT) + response.raise_for_status() + raw_origins = response.json() + print(f" Received {len(raw_origins)} origins.") + + origins: dict[int, dict] = {o["id"]: o for o in raw_origins} + param_origin_map: dict[int, list[int]] = {} + + for origin in raw_origins: + oid = origin["id"] + abbr = origin.get("abbreviation", str(oid)) + print(f" Fetching params for origin={oid} ({abbr}) ...") + r = requests.get( + param_url, params={"origin": oid}, timeout=REQUEST_TIMEOUT + ) + r.raise_for_status() + origin_params = r.json() + print(f" {len(origin_params)} params.") + for p in origin_params: + pid = int(p["id"]) + param_origin_map.setdefault(pid, []).append(oid) + + # Sort each origin list for deterministic output + for pid in param_origin_map: + param_origin_map[pid].sort() + + return origins, param_origin_map + + +# --------------------------------------------------------------------------- +# Parameters +# --------------------------------------------------------------------------- + + +def fetch_parameters( + url: str = PARAM_URL, + unit_map: "dict[int, str] | None" = None, + param_origin_map: "dict[int, list[int]] | None" = None, +) -> list[dict]: + """Fetch all parameters from the ECMWF parameter database API. + + Parameters + ---------- + url: + The parameter API endpoint. + unit_map: + Mapping of unit_id -> unit name string, used to resolve the + ``units`` field. When ``None`` the units field is left empty. + param_origin_map: + Mapping of param_id -> list of origin_ids, built by + :func:`fetch_origin_map`. When provided, each entry gains an + ``origin_ids`` field containing the sorted list of WMO originating + centre IDs that include this parameter. When ``None`` the field + is omitted. + """ + print(f"Fetching parameters from {url} ...") + response = requests.get(url, timeout=REQUEST_TIMEOUT) + response.raise_for_status() + params = response.json() + print(f" Received {len(params)} parameters.") + + result = [] + for raw in params: + # Resolve short name (API may return 'shortName', 'short_name', or 'shortname') + shortname = ( + raw.get("shortname") or raw.get("shortName") or raw.get("short_name") or "" + ) + + # Resolve units via unit_map if available + unit_id = raw.get("unit_id") + if unit_map and unit_id is not None: + units = unit_map.get(int(unit_id), "") + else: + units = "" + + pid = int(raw["id"]) + + entry = { + "id": pid, + "shortname": shortname, + "longname": raw.get("name", ""), + "units": units, + "description": raw.get("description", ""), + # access_ids indicates dissemination availability; preserve as-is. + "access_ids": raw.get("access_ids", []), + } + + # Attach origin_ids derived from the per-origin filtered queries. + if param_origin_map is not None: + entry["origin_ids"] = param_origin_map.get(pid, []) + + result.append(entry) + + result.sort(key=lambda e: e["id"]) + return result + + +def write_param_yaml(params: list[dict], output_path: Path = PARAM_OUTPUT) -> None: + """Write the parameter list to a YAML file.""" + with output_path.open("w") as fh: + yaml.dump( + params, + fh, + default_flow_style=False, + allow_unicode=True, + sort_keys=False, + ) + print(f"Written {len(params)} parameters to {output_path}") + + +# --------------------------------------------------------------------------- +# Entry point +# --------------------------------------------------------------------------- + +if __name__ == "__main__": + units, unit_map = fetch_units() + write_unit_yaml(units) + + _, param_origin_map = fetch_origin_map() + + parameters = fetch_parameters(unit_map=unit_map, param_origin_map=param_origin_map) + write_param_yaml(parameters) diff --git a/python/pymetkit/src/pymetkit/pymetkit.py b/python/pymetkit/src/pymetkit/pymetkit.py index 7c0594fa..be9fcdac 100644 --- a/python/pymetkit/src/pymetkit/pymetkit.py +++ b/python/pymetkit/src/pymetkit/pymetkit.py @@ -1,10 +1,25 @@ +import json import os +import importlib.resources from cffi import FFI import findlibs +from datetime import datetime, timedelta, timezone from typing import IO, Iterator import warnings +from pathlib import Path +import yaml from ._version import __version__ +try: + import requests as _requests +except ImportError: + _requests = None + +try: + import platformdirs as _platformdirs +except ImportError: + _platformdirs = None + ffi = FFI() @@ -90,7 +105,7 @@ def keys(self) -> Iterator[str]: it_c = ffi.new("metkit_paramiterator_t **") lib.metkit_marsrequest_params(self.__request, it_c) it = ffi.gc(it_c[0], lib.metkit_paramiterator_delete) - + while lib.metkit_paramiterator_next(it) == lib.METKIT_ITERATOR_SUCCESS: cparam = ffi.new("const char **") lib.metkit_paramiterator_current(it, cparam) @@ -150,7 +165,9 @@ def __getitem__(self, param: str) -> str | list[str]: values = [] for index in range(nvalues): cvalue = ffi.new("const char **") - lib.metkit_marsrequest_value(self.__request, ffi_encode(param), index, cvalue) + lib.metkit_marsrequest_value( + self.__request, ffi_encode(param), index, cvalue + ) value = ffi_decode(cvalue[0]) if nvalues == 1: return value @@ -185,7 +202,9 @@ def __eq__(self, other: "MarsRequest") -> bool: return dict(expanded) == dict(other_expanded) -def parse_mars_request(file_or_str: IO | str, strict: bool = False) -> list[MarsRequest]: +def parse_mars_request( + file_or_str: IO | str, strict: bool = False +) -> list[MarsRequest]: """ Function for parsing mars request from file object or string. @@ -271,7 +290,9 @@ def __init__(self): versionstr = ffi.string(self.metkit_version()).decode("utf-8") if versionstr != __version__: - warnings.warn(f"Metkit library version {versionstr} does not match python version {__version__}") + warnings.warn( + f"Metkit library version {versionstr} does not match python version {__version__}" + ) def __read_header(self): with open(os.path.join(os.path.dirname(__file__), "metkit_c.h"), "r") as f: @@ -284,7 +305,6 @@ def __check_error(self, fn, name: str): """ def wrapped_fn(*args, **kwargs): - # debug retval = fn(*args, **kwargs) @@ -306,6 +326,595 @@ def wrapped_fn(*args, **kwargs): return wrapped_fn +class ParamDB: + """ + Parameter database providing metadata lookup for ECMWF parameters. + + Supports both online mode (fetching from the ECMWF parameter database API) + and offline mode (loading from a bundled YAML file). + + When using ``mode="online"`` a local JSON cache is maintained so that + repeated instantiations within the TTL window do not make a new HTTP + request. The cache is stored under the OS user-cache directory + (e.g. ``~/.cache/pymetkit/`` on Linux, ``~/Library/Caches/pymetkit/`` + on macOS) using the fixed filename defined by ``_CACHE_FILENAME``. + + Shortname collision resolution + -------------------------------- + Some short names (e.g. ``t``, ``tp``, ``u``) are reused across different + GRIB parameter tables and originating centres. When no context is given + the default resolution priority is: + + 1. Prefer parameters with ``"dissemination"`` in their ``access_ids``. + 2. Among those, prefer parameters whose ``origin_ids`` include an origin + from ``_DEFAULT_ORIGIN_PREFERENCE`` (tried in order). + 3. Fall back to the lowest param ID. + + Pass ``table=``, ``origin=``, or ``access=`` to + :meth:`shortname_to_param_id` / :meth:`shortname_to_longname` to override + this behaviour explicitly. + """ + + _API_URL = "https://codes.ecmwf.int/parameter-database/api/v1/param/" + + #: File name written inside the platform cache directory. + _CACHE_FILENAME = "paramdb_online_cache.json" + + #: Default time-to-live for the online cache. + _DEFAULT_CACHE_TTL = timedelta(hours=1) + + #: Default HTTP request timeout in seconds for online API calls. + _REQUEST_TIMEOUT = 30 + + #: Ordered list of WMO originating centre IDs tried when resolving a + #: colliding shortname with no explicit ``origin=`` context. + #: 98 = ECMWF, 0 = WMO. + _DEFAULT_ORIGIN_PREFERENCE: list[int] = [98, 0] + + def __init__( + self, + mode: str = "offline", + cache_ttl: "timedelta | None" = None, + cache_path: "Path | str | None" = None, + yaml_path: "Path | str | None" = None, + ): + """ + Initialise the parameter database. + + Parameters + ---------- + mode : str + Either ``"online"`` (fetch from the ECMWF API) or + ``"offline"`` (load from a YAML file). + cache_ttl : datetime.timedelta, optional + How long a previously fetched online result may be reused before a + fresh HTTP request is made. Defaults to 1 hour. Only relevant + when ``mode="online"``. Pass ``timedelta(0)`` to disable caching + entirely (always fetch). + cache_path : Path or str, optional + Directory in which to store the cache file. Defaults to the + OS-appropriate user cache directory (requires ``platformdirs``). + Only relevant when ``mode="online"``. + yaml_path : Path or str, optional + Path to a custom YAML file to load instead of the bundled + ``parameter_metadata.yaml``. The file must be a YAML list where + each entry contains at minimum an ``id`` (integer), a short name + (``shortname`` / ``shortName`` / ``short_name``), and a long name + (``longname`` / ``longName`` / ``long_name`` / ``name``). + Only valid with ``mode="offline"``; raises ``ValueError`` if + combined with ``mode="online"``. + """ + if mode not in ("online", "offline"): + raise ValueError(f"mode must be 'online' or 'offline', got '{mode}'") + + if yaml_path is not None and mode == "online": + raise ValueError( + "yaml_path cannot be used with mode='online'. " + "Use mode='offline' to load from a YAML file." + ) + + self._by_id: dict[int, dict] = {} + self._by_shortname: dict[str, dict] = {} + self._by_shortname_all: dict[str, list[dict]] = {} + self._by_longname: dict[str, dict] = {} + + if mode == "online": + effective_ttl = self._DEFAULT_CACHE_TTL if cache_ttl is None else cache_ttl + if not isinstance(effective_ttl, timedelta): + raise TypeError( + f"cache_ttl must be a datetime.timedelta, got {type(effective_ttl).__name__!r}" + ) + self._load_online(cache_ttl=effective_ttl, cache_path=cache_path) + else: + self._load_offline(yaml_path=yaml_path) + + # ------------------------------------------------------------------ + # Private helpers + # ------------------------------------------------------------------ + + @staticmethod + def _table_from_id(param_id: int) -> int: + """Decode the GRIB parameter table number from an encoded param ID. + + The encoding scheme mirrors the C++ ``Param::paramId()`` logic: + + * IDs 1–999 → table 128 (classic ECMWF, table prefix suppressed) + * IDs 1 000–999 999 → ``table * 1000 + param`` (e.g. 228228 → table 228) + * IDs ≥ 1 000 000 → ``center * 1_000_000 + table * 1000 + param`` + (e.g. 7001292 → center 7, table 1) + """ + if param_id < 1_000: + return 128 + elif param_id < 1_000_000: + return param_id // 1_000 + else: + return (param_id % 1_000_000) // 1_000 + + @staticmethod + def _center_from_id(param_id: int) -> "int | None": + """Decode the originating WMO center from an encoded param ID. + + Returns ``None`` for IDs below 1 000 000 (ECMWF-local parameters). + For IDs ≥ 1 000 000 the center is ``param_id // 1_000_000``. + """ + if param_id >= 1_000_000: + return param_id // 1_000_000 + return None + + def _resolve_shortname_with_context( + self, + shortname: str, + table: "int | None" = None, + origin: "int | None" = None, + access: "str | None" = None, + ) -> dict: + """Return the best-matching entry for *shortname* given optional context. + + Parameters + ---------- + shortname: + The ECMWF short name to look up. + table: + GRIB parameter table number (e.g. ``128`` for classic ECMWF, + ``140`` for ocean waves, ``228`` for "Standard 2"). When + provided, only candidates whose encoded param ID belongs to this + table are considered. + origin: + WMO originating centre ID (e.g. ``98`` for ECMWF, ``0`` for WMO, + ``7`` for NCEP). When provided, only candidates whose + ``origin_ids`` list includes this value are considered. + access: + Access category string (e.g. ``"dissemination"``). When + provided, only candidates whose ``access_ids`` list includes this + value are considered. + + Returns + ------- + dict + The matched parameter metadata entry. + + Raises + ------ + KeyError + If *shortname* is not found, or if no candidate matches the + supplied context. + """ + if shortname not in self._by_shortname_all: + raise KeyError(f"Short name {shortname!r} not found in database") + + candidates = self._by_shortname_all[shortname] + + # --- Explicit context filters (hard constraints) --- + if table is not None: + candidates = [ + e for e in candidates if self._table_from_id(e["id"]) == table + ] + if origin is not None: + candidates = [ + e for e in candidates if origin in e.get("origin_ids", []) + ] + if access is not None: + candidates = [ + e for e in candidates if access in e.get("access_ids", []) + ] + + if not candidates: + ctx_parts = [] + if table is not None: + ctx_parts.append(f"table={table}") + if origin is not None: + ctx_parts.append(f"origin={origin}") + if access is not None: + ctx_parts.append(f"access={access!r}") + raise KeyError( + f"Short name {shortname!r} not found for context " + f"{', '.join(ctx_parts)}" + ) + + # If any explicit context was given, return the lowest-id match among + # the filtered set and skip the default priority logic. + if table is not None or origin is not None or access is not None: + return min(candidates, key=lambda e: e["id"]) + + # --- Default priority logic (no explicit context) --- + # 1. Prefer dissemination parameters. + dissem = [e for e in candidates if "dissemination" in e.get("access_ids", [])] + pool = dissem if dissem else candidates + + # 2. Among the pool, prefer origins in _DEFAULT_ORIGIN_PREFERENCE order. + for preferred_origin in self._DEFAULT_ORIGIN_PREFERENCE: + origin_match = [ + e for e in pool if preferred_origin in e.get("origin_ids", []) + ] + if origin_match: + return min(origin_match, key=lambda e: e["id"]) + + # 3. Fall back to lowest id. + return min(pool, key=lambda e: e["id"]) + + @staticmethod + def _normalise(raw: dict) -> dict: + """Return a normalised parameter dict with canonical key names.""" + entry = dict(raw) + + # Normalise shortname + for key in ("shortName", "short_name"): + if key in entry: + entry["shortname"] = entry.pop(key) + break + + # Normalise longname (online API may return 'name', 'longName', or 'long_name') + if "longname" not in entry: + for key in ("longName", "long_name", "name"): + if key in entry: + entry["longname"] = entry.pop(key) + break + + # Ensure integer id + if "id" in entry: + entry["id"] = int(entry["id"]) + + return entry + + def _index(self, entry: dict) -> None: + """Insert a normalised entry into the internal lookup dicts.""" + param_id = entry.get("id") + shortname = entry.get("shortname") + longname = entry.get("longname") + + if param_id is not None: + self._by_id[int(param_id)] = entry + if shortname is not None: + sn = str(shortname) + # first-write-wins: entries are loaded in ascending id order, so the + # lowest (most canonical) id wins for the default shortname lookup. + if sn not in self._by_shortname: + self._by_shortname[sn] = entry + # _by_shortname_all keeps every candidate for context-aware lookup. + self._by_shortname_all.setdefault(sn, []).append(entry) + if longname is not None: + ln = str(longname) + if ln not in self._by_longname: + self._by_longname[ln] = entry + + def _load_online( + self, cache_ttl: timedelta, cache_path: "Path | str | None" + ) -> None: + if _requests is None: + raise ImportError( + "The 'requests' package is required for online mode. " + "Install it with: pip install requests" + ) + + # Try the cache first (unless TTL is zero) + if cache_ttl > timedelta(0): + cached = self._read_cache(cache_path, cache_ttl) + if cached is not None: + for raw in cached: + self._index(self._normalise(raw)) + return + + # Fetch from the API + response = _requests.get(self._API_URL, timeout=self._REQUEST_TIMEOUT) + response.raise_for_status() + params = response.json() + + # Persist to cache (best-effort; errors are silently ignored) + if cache_ttl > timedelta(0): + self._write_cache(params, cache_path) + + for raw in params: + self._index(self._normalise(raw)) + + def _load_offline(self, yaml_path: "Path | str | None" = None) -> None: + if yaml_path is not None: + resolved = Path(yaml_path) + if not resolved.exists(): + raise FileNotFoundError(f"Custom YAML file not found: {resolved}") + else: + resolved = self._find_offline_yaml() + with resolved.open("r") as fh: + params = yaml.safe_load(fh) + for raw in params: + self._index(self._normalise(raw)) + + @staticmethod + def _find_offline_yaml() -> Path: + """Locate ``parameter_metadata.yaml``, searching in order: + + 1. Via ``importlib.resources`` from the installed package (reliable in + both regular installs and zip-safe wheels). + 2. Next to this module file (editable / development install layout). + 3. ``/share/metkit/`` (development tree layout after the + YAML files were moved out of the Python package directory). + """ + # Candidate 1: importlib.resources (correct path for installed packages) + try: + ref = importlib.resources.files("pymetkit").joinpath( + "parameter_metadata.yaml" + ) + # Materialise to a real filesystem path so callers can open() it. + with importlib.resources.as_file(ref) as p: + if p.exists(): + return p + except (FileNotFoundError, TypeError, AttributeError): + pass + + # Candidates 2 & 3: filesystem heuristics (dev tree / editable install) + candidates = [ + Path(__file__).parent / "parameter_metadata.yaml", + Path(__file__).parents[4] / "share" / "metkit" / "parameter_metadata.yaml", + ] + for path in candidates: + if path.exists(): + return path + raise FileNotFoundError( + "parameter_metadata.yaml not found. Searched:\n" + + "\n".join(f" {p}" for p in candidates) + ) + + # ------------------------------------------------------------------ + # Cache helpers (online mode only) + # ------------------------------------------------------------------ + + def _resolve_cache_dir(self, cache_path: "Path | str | None") -> "Path | None": + """Return the directory to use for the cache file, or None if unavailable.""" + if cache_path is not None: + return Path(cache_path) + if _platformdirs is not None: + return Path(_platformdirs.user_cache_dir("pymetkit")) + return None + + def _cache_file(self, cache_path: "Path | str | None") -> "Path | None": + """Return the full path to the cache file, or None if no cache dir is available.""" + cache_dir = self._resolve_cache_dir(cache_path) + if cache_dir is None: + return None + return cache_dir / self._CACHE_FILENAME + + def _read_cache( + self, cache_path: "Path | str | None", cache_ttl: timedelta + ) -> "list | None": + """ + Return the cached parameter list if it exists and is still fresh, + otherwise return None. + """ + cache_file = self._cache_file(cache_path) + if cache_file is None or not cache_file.exists(): + return None + try: + payload = json.loads(cache_file.read_text(encoding="utf-8")) + fetched_at = datetime.fromisoformat(payload["fetched_at"]) + # Ensure both datetimes are timezone-aware for comparison + now = datetime.now(tz=timezone.utc) + if fetched_at.tzinfo is None: + fetched_at = fetched_at.replace(tzinfo=timezone.utc) + if (now - fetched_at) <= cache_ttl: + return payload["params"] + except Exception: + # Corrupt or unreadable cache — treat as a miss + pass + return None + + def _write_cache(self, params: list, cache_path: "Path | str | None") -> None: + """Persist *params* to the cache file (best-effort; errors are silenced).""" + cache_file = self._cache_file(cache_path) + if cache_file is None: + return + try: + cache_file.parent.mkdir(parents=True, exist_ok=True) + payload = { + "fetched_at": datetime.now(tz=timezone.utc).isoformat(), + "params": params, + } + cache_file.write_text(json.dumps(payload), encoding="utf-8") + except Exception: + pass + + def _resolve(self, identifier: "int | str") -> dict: + """Resolve *identifier* (param_id, shortname, or longname) to a metadata dict.""" + # Try as integer param_id first + if isinstance(identifier, int): + if identifier in self._by_id: + return self._by_id[identifier] + raise KeyError(f"Parameter with id {identifier!r} not found in database") + # For strings: try coercing to int, then shortname, then longname + if isinstance(identifier, str): + try: + int_id = int(identifier) + if int_id in self._by_id: + return self._by_id[int_id] + except ValueError: + pass + if identifier in self._by_shortname: + return self._by_shortname[identifier] + if identifier in self._by_longname: + return self._by_longname[identifier] + raise KeyError(f"Parameter {identifier!r} not found in database") + + # ------------------------------------------------------------------ + # Conversion methods + # ------------------------------------------------------------------ + + def shortname_to_longname( + self, + shortname: str, + table: "int | None" = None, + origin: "int | None" = None, + access: "str | None" = None, + ) -> str: + """Return the long name for *shortname*. + + Parameters + ---------- + shortname: + ECMWF short name (e.g. ``"t"``, ``"tp"``). + table: + Optional GRIB parameter table number to disambiguate collisions + (e.g. ``128`` for classic ECMWF, ``140`` for ocean waves). + origin: + Optional WMO originating centre ID (e.g. ``98`` for ECMWF, + ``0`` for WMO, ``7`` for NCEP). + access: + Optional access category filter (e.g. ``"dissemination"``). + """ + return self._resolve_shortname_with_context( + shortname, table, origin, access + )["longname"] + + def longname_to_shortname(self, longname: str) -> str: + if longname not in self._by_longname: + raise KeyError(f"Long name {longname!r} not found in database") + return self._by_longname[longname]["shortname"] + + def shortname_to_param_id( + self, + shortname: str, + table: "int | None" = None, + origin: "int | None" = None, + access: "str | None" = None, + ) -> int: + """Return the param ID for *shortname*. + + Parameters + ---------- + shortname: + ECMWF short name (e.g. ``"t"``, ``"tp"``). + table: + Optional GRIB parameter table number to disambiguate collisions + (e.g. ``128`` for classic ECMWF, ``140`` for ocean waves). + origin: + Optional WMO originating centre ID (e.g. ``98`` for ECMWF, + ``0`` for WMO, ``7`` for NCEP). + access: + Optional access category filter (e.g. ``"dissemination"``). + """ + return int( + self._resolve_shortname_with_context( + shortname, table, origin, access + )["id"] + ) + + def param_id_to_shortname(self, param_id: int) -> str: + if param_id not in self._by_id: + raise KeyError(f"Parameter id {param_id!r} not found in database") + return self._by_id[param_id]["shortname"] + + def longname_to_param_id(self, longname: str) -> int: + if longname not in self._by_longname: + raise KeyError(f"Long name {longname!r} not found in database") + return int(self._by_longname[longname]["id"]) + + def param_id_to_longname(self, param_id: int) -> str: + if param_id not in self._by_id: + raise KeyError(f"Parameter id {param_id!r} not found in database") + return self._by_id[param_id]["longname"] + + # ------------------------------------------------------------------ + # Metadata retrieval methods + # ------------------------------------------------------------------ + + def get_metadata(self, identifier: "int | str") -> dict: + """ + Return the full metadata dictionary for a parameter. + + Parameters + ---------- + identifier : int or str + A param ID (int), shortname, or longname. + """ + return self._resolve(identifier) + + def get_units(self, identifier: "int | str") -> str: + """ + Return the units string for a parameter. + + Parameters + ---------- + identifier : int or str + A param ID (int), shortname, or longname. + + Returns + ------- + str + The units string, or ``"unknown"`` if not available. + """ + entry = self._resolve(identifier) + return entry.get("units", "unknown") or "unknown" + + def get_all_by_shortname(self, shortname: str) -> "list[dict]": + """Return *all* parameter entries that share *shortname*. + + Most short names map to exactly one param ID, but ~163 short names + are reused across different GRIB parameter tables or originating + centres. This method exposes every candidate so callers can inspect + the collisions and choose the appropriate one. + + Parameters + ---------- + shortname: + ECMWF short name to look up. + + Returns + ------- + list[dict] + List of metadata dicts, sorted by ascending param ID. Each dict + contains at minimum ``id``, ``shortname``, and ``longname``. + + Raises + ------ + KeyError + If *shortname* is not found in the database at all. + + Examples + -------- + >>> db = ParamDB() + >>> entries = db.get_all_by_shortname("t") + >>> [(e["id"], e["longname"]) for e in entries] + [(130, 'Temperature'), (500014, 'Temperature')] + """ + if shortname not in self._by_shortname_all: + raise KeyError(f"Short name {shortname!r} not found in database") + return sorted(self._by_shortname_all[shortname], key=lambda e: e["id"]) + + def shortname_has_collisions(self, shortname: str) -> bool: + """Return ``True`` if *shortname* maps to more than one param ID. + + Parameters + ---------- + shortname: + ECMWF short name to check. + + Raises + ------ + KeyError + If *shortname* is not found in the database at all. + """ + if shortname not in self._by_shortname_all: + raise KeyError(f"Short name {shortname!r} not found in database") + return len(self._by_shortname_all[shortname]) > 1 + + try: lib = PatchedLib() except CFFIModuleLoadFailed as e: diff --git a/python/pymetkit/tests/test_paramdb.py b/python/pymetkit/tests/test_paramdb.py new file mode 100644 index 00000000..68854c7d --- /dev/null +++ b/python/pymetkit/tests/test_paramdb.py @@ -0,0 +1,780 @@ +from contextlib import nullcontext as does_not_raise +import json +from datetime import datetime, timedelta, timezone +from unittest.mock import MagicMock, patch +import pytest + +from pymetkit import ParamDB +import pymetkit.pymetkit as _mod + + +# --------------------------------------------------------------------------- +# Fixtures +# --------------------------------------------------------------------------- + + +@pytest.fixture(scope="module") +def db(): + """Shared offline ParamDB instance (loaded once per test module).""" + return ParamDB() + + +# --------------------------------------------------------------------------- +# Construction / mode validation +# --------------------------------------------------------------------------- + + +@pytest.mark.parametrize( + "mode, expectation", + [ + ["offline", does_not_raise()], + ["online", does_not_raise()], + ["invalid", pytest.raises(ValueError)], + ["OFFLINE", pytest.raises(ValueError)], + ], +) +def test_constructor_mode_validation(mode, expectation): + """Only 'online' and 'offline' are accepted mode values. + + The online case is patched so that no real HTTP request is made; only the + mode-parsing logic is exercised here. + """ + with patch.object(_mod.ParamDB, "_load_online", return_value=None): + with expectation: + ParamDB(mode=mode) + + +def test_offline_default(): + """ParamDB() with no arguments loads in offline mode without error.""" + db = ParamDB() + # Sanity-check that data was actually loaded + assert len(db._by_id) > 0 + assert len(db._by_shortname) > 0 + assert len(db._by_longname) > 0 + + +def test_online_requires_requests(monkeypatch): + """Online mode raises ImportError when the requests package is absent.""" + monkeypatch.setattr(_mod, "_requests", None) + with pytest.raises(ImportError, match="requests"): + ParamDB(mode="online") + + +# --------------------------------------------------------------------------- +# _normalise (static helper) +# --------------------------------------------------------------------------- + + +@pytest.mark.parametrize( + "raw, expected_shortname, expected_longname", + [ + # Already canonical keys + [ + {"id": 1, "shortname": "strf", "longname": "Stream function"}, + "strf", + "Stream function", + ], + # CamelCase aliases + [ + {"id": 1, "shortName": "strf", "longName": "Stream function"}, + "strf", + "Stream function", + ], + # snake_case aliases + [ + {"id": 1, "short_name": "strf", "long_name": "Stream function"}, + "strf", + "Stream function", + ], + # 'name' as longname fallback + [ + {"id": 1, "shortname": "strf", "name": "Stream function"}, + "strf", + "Stream function", + ], + ], +) +def test_normalise_key_aliases(raw, expected_shortname, expected_longname): + result = ParamDB._normalise(raw) + assert result["shortname"] == expected_shortname + assert result["longname"] == expected_longname + + +def test_normalise_coerces_id_to_int(): + result = ParamDB._normalise({"id": "42", "shortname": "foo", "longname": "Foo"}) + assert result["id"] == 42 + assert isinstance(result["id"], int) + + +def test_normalise_preserves_extra_fields(): + raw = { + "id": 1, + "shortname": "strf", + "longname": "Stream function", + "units": "m**2 s**-1", + } + result = ParamDB._normalise(raw) + assert result["units"] == "m**2 s**-1" + + +# --------------------------------------------------------------------------- +# param_id_to_shortname / param_id_to_longname +# --------------------------------------------------------------------------- + + +@pytest.mark.parametrize( + "param_id, expected_shortname", + [ + [1, "strf"], + [4, "eqpt"], + [6, "ssfr"], + ], +) +def test_param_id_to_shortname(db, param_id, expected_shortname): + assert db.param_id_to_shortname(param_id) == expected_shortname + + +def test_param_id_to_shortname_unknown(db): + with pytest.raises(KeyError): + db.param_id_to_shortname(999_999_999) + + +@pytest.mark.parametrize( + "param_id, expected_longname", + [ + [1, "Stream function"], + [4, "Equivalent potential temperature"], + [6, "Soil sand fraction"], + ], +) +def test_param_id_to_longname(db, param_id, expected_longname): + assert db.param_id_to_longname(param_id) == expected_longname + + +def test_param_id_to_longname_unknown(db): + with pytest.raises(KeyError): + db.param_id_to_longname(999_999_999) + + +# --------------------------------------------------------------------------- +# shortname_to_longname / shortname_to_param_id +# --------------------------------------------------------------------------- + + +@pytest.mark.parametrize( + "shortname, expected_longname", + [ + ["strf", "Stream function"], + ["eqpt", "Equivalent potential temperature"], + ["ssfr", "Soil sand fraction"], + ], +) +def test_shortname_to_longname(db, shortname, expected_longname): + assert db.shortname_to_longname(shortname) == expected_longname + + +def test_shortname_to_longname_unknown(db): + with pytest.raises(KeyError): + db.shortname_to_longname("not_a_real_shortname_xyz") + + +@pytest.mark.parametrize( + "shortname, expected_id", + [ + ["strf", 1], + ["eqpt", 4], + ["ssfr", 6], + ], +) +def test_shortname_to_param_id(db, shortname, expected_id): + assert db.shortname_to_param_id(shortname) == expected_id + + +def test_shortname_to_param_id_unknown(db): + with pytest.raises(KeyError): + db.shortname_to_param_id("not_a_real_shortname_xyz") + + +# --------------------------------------------------------------------------- +# longname_to_shortname / longname_to_param_id +# --------------------------------------------------------------------------- + + +@pytest.mark.parametrize( + "longname, expected_shortname", + [ + # Use entries where the longname is unique in the DB (last-write-wins) + ["Equivalent potential temperature", "eqpt"], + ["Soil sand fraction", "ssfr"], + ["Soil clay fraction", "scfr"], + ], +) +def test_longname_to_shortname(db, longname, expected_shortname): + assert db.longname_to_shortname(longname) == expected_shortname + + +def test_longname_to_shortname_unknown(db): + with pytest.raises(KeyError): + db.longname_to_shortname("Not A Real Long Name XYZ") + + +@pytest.mark.parametrize( + "longname, expected_id", + [ + ["Equivalent potential temperature", 4], + ["Soil sand fraction", 6], + ["Soil clay fraction", 7], + ], +) +def test_longname_to_param_id(db, longname, expected_id): + assert db.longname_to_param_id(longname) == expected_id + + +def test_longname_to_param_id_unknown(db): + with pytest.raises(KeyError): + db.longname_to_param_id("Not A Real Long Name XYZ") + + +# --------------------------------------------------------------------------- +# Roundtrip consistency +# --------------------------------------------------------------------------- + + +@pytest.mark.parametrize("param_id", [1, 4, 6]) +def test_roundtrip_id_shortname(db, param_id): + shortname = db.param_id_to_shortname(param_id) + assert db.shortname_to_param_id(shortname) == param_id + + +@pytest.mark.parametrize("param_id", [4, 6, 7]) +def test_roundtrip_id_longname(db, param_id): + longname = db.param_id_to_longname(param_id) + assert db.longname_to_param_id(longname) == param_id + + +# --------------------------------------------------------------------------- +# get_metadata +# --------------------------------------------------------------------------- + + +def test_get_metadata_by_int(db): + meta = db.get_metadata(1) + assert meta["id"] == 1 + assert meta["shortname"] == "strf" + assert meta["longname"] == "Stream function" + + +def test_get_metadata_by_shortname(db): + meta = db.get_metadata("strf") + assert meta["id"] == 1 + + +def test_get_metadata_by_longname(db): + # Use a longname that is unique in the DB (no later entry overwrites it) + meta = db.get_metadata("Equivalent potential temperature") + assert meta["id"] == 4 + + +def test_get_metadata_by_numeric_string(db): + """A string that looks like an integer should resolve via param id.""" + meta = db.get_metadata("1") + assert meta["id"] == 1 + assert meta["shortname"] == "strf" + + +def test_get_metadata_unknown_raises(db): + with pytest.raises(KeyError): + db.get_metadata(999_999_999) + + +def test_get_metadata_unknown_string_raises(db): + with pytest.raises(KeyError): + db.get_metadata("not_a_param_xyz") + + +def test_get_metadata_returns_dict(db): + meta = db.get_metadata(1) + assert isinstance(meta, dict) + + +# --------------------------------------------------------------------------- +# get_units +# --------------------------------------------------------------------------- + + +@pytest.mark.parametrize( + "identifier, expected_units", + [ + [1, "m**2 s**-1"], + ["strf", "m**2 s**-1"], + # Use a stable longname for the longname-based lookup + ["Equivalent potential temperature", "K"], + [6, "(0 - 1)"], + ["ssfr", "(0 - 1)"], + ], +) +def test_get_units(db, identifier, expected_units): + assert db.get_units(identifier) == expected_units + + +def test_get_units_unknown_raises(db): + with pytest.raises(KeyError): + db.get_units(999_999_999) + + +def test_get_units_missing_returns_unknown(): + """When a parameter entry has no 'units' key, get_units returns 'unknown'.""" + db = ParamDB.__new__(ParamDB) + db._by_id = {9999: {"id": 9999, "shortname": "foo", "longname": "Foo"}} + db._by_shortname = {"foo": db._by_id[9999]} + db._by_longname = {"Foo": db._by_id[9999]} + assert db.get_units(9999) == "unknown" + + +def test_get_units_empty_string_returns_unknown(): + """When a parameter's units value is an empty string, get_units returns 'unknown'.""" + db = ParamDB.__new__(ParamDB) + entry = {"id": 9998, "shortname": "bar", "longname": "Bar", "units": ""} + db._by_id = {9998: entry} + db._by_shortname = {"bar": entry} + db._by_longname = {"Bar": entry} + assert db.get_units(9998) == "unknown" + + +# --------------------------------------------------------------------------- +# Online caching +# --------------------------------------------------------------------------- + +#: Minimal parameter list returned by a mocked API response. +_FAKE_PARAMS = [ + { + "id": 1, + "shortname": "strf", + "longname": "Stream function", + "units": "m**2 s**-1", + }, + { + "id": 4, + "shortname": "eqpt", + "longname": "Equivalent potential temperature", + "units": "K", + }, +] + + +@pytest.fixture() +def fake_requests(monkeypatch): + """Monkeypatch the requests module with a mock that returns _FAKE_PARAMS.""" + mock_resp = MagicMock() + mock_resp.json.return_value = _FAKE_PARAMS + mock_requests = MagicMock() + mock_requests.get.return_value = mock_resp + monkeypatch.setattr(_mod, "_requests", mock_requests) + return mock_requests + + +def test_cache_ttl_must_be_timedelta(fake_requests, tmp_path): + """Passing a non-timedelta cache_ttl raises TypeError.""" + with pytest.raises(TypeError, match="timedelta"): + ParamDB(mode="online", cache_ttl=3600, cache_path=tmp_path) + + +def test_online_writes_cache_file(fake_requests, tmp_path): + """First online load writes a JSON cache file to the cache directory.""" + ParamDB(mode="online", cache_path=tmp_path) + cache_file = tmp_path / ParamDB._CACHE_FILENAME + assert cache_file.exists() + payload = json.loads(cache_file.read_text()) + assert "fetched_at" in payload + assert "params" in payload + assert payload["params"] == _FAKE_PARAMS + + +def test_online_uses_fresh_cache(fake_requests, tmp_path): + """A second instantiation within the TTL window does not make an HTTP request.""" + ParamDB(mode="online", cache_path=tmp_path) + assert fake_requests.get.call_count == 1 + + ParamDB(mode="online", cache_path=tmp_path, cache_ttl=timedelta(hours=1)) + assert fake_requests.get.call_count == 1 # no new request + + +def test_online_fetches_when_cache_expired(fake_requests, tmp_path): + """An expired cache entry triggers a fresh HTTP request.""" + # Write a cache file whose timestamp is in the past + old_time = datetime.now(tz=timezone.utc) - timedelta(hours=2) + payload = {"fetched_at": old_time.isoformat(), "params": _FAKE_PARAMS} + cache_file = tmp_path / ParamDB._CACHE_FILENAME + cache_file.write_text(json.dumps(payload)) + + ParamDB(mode="online", cache_path=tmp_path, cache_ttl=timedelta(hours=1)) + assert fake_requests.get.call_count == 1 # stale cache → new request + + +def test_online_fetches_when_cache_not_yet_expired(fake_requests, tmp_path): + """A cache entry within the TTL does NOT trigger a new request.""" + recent_time = datetime.now(tz=timezone.utc) - timedelta(minutes=30) + payload = {"fetched_at": recent_time.isoformat(), "params": _FAKE_PARAMS} + cache_file = tmp_path / ParamDB._CACHE_FILENAME + cache_file.write_text(json.dumps(payload)) + + ParamDB(mode="online", cache_path=tmp_path, cache_ttl=timedelta(hours=1)) + assert fake_requests.get.call_count == 0 # fresh cache → no request + + +def test_online_zero_ttl_bypasses_cache(fake_requests, tmp_path): + """cache_ttl=timedelta(0) disables caching: always fetches and never writes a file.""" + ParamDB(mode="online", cache_path=tmp_path, cache_ttl=timedelta(0)) + assert fake_requests.get.call_count == 1 + assert not (tmp_path / ParamDB._CACHE_FILENAME).exists() + + ParamDB(mode="online", cache_path=tmp_path, cache_ttl=timedelta(0)) + assert fake_requests.get.call_count == 2 # second call also fetches + + +def test_online_corrupt_cache_falls_back_to_fetch(fake_requests, tmp_path): + """A corrupt/unreadable cache file is ignored and a fresh request is made.""" + cache_file = tmp_path / ParamDB._CACHE_FILENAME + cache_file.write_text("this is not valid json {{{") + + ParamDB(mode="online", cache_path=tmp_path, cache_ttl=timedelta(hours=1)) + assert fake_requests.get.call_count == 1 + + +def test_online_cache_overwrites_after_expiry(fake_requests, tmp_path): + """After a stale cache triggers a fetch, the cache file is updated.""" + old_time = datetime.now(tz=timezone.utc) - timedelta(hours=2) + payload = {"fetched_at": old_time.isoformat(), "params": _FAKE_PARAMS} + cache_file = tmp_path / ParamDB._CACHE_FILENAME + cache_file.write_text(json.dumps(payload)) + + ParamDB(mode="online", cache_path=tmp_path, cache_ttl=timedelta(hours=1)) + + updated = json.loads(cache_file.read_text()) + updated_time = datetime.fromisoformat(updated["fetched_at"]) + if updated_time.tzinfo is None: + updated_time = updated_time.replace(tzinfo=timezone.utc) + assert updated_time > old_time + + +def test_online_cache_data_is_usable(fake_requests, tmp_path): + """Data loaded from cache round-trips correctly through _normalise and _index.""" + # Populate the cache + ParamDB(mode="online", cache_path=tmp_path) + + # Load from cache (no network call) + db = ParamDB(mode="online", cache_path=tmp_path, cache_ttl=timedelta(hours=1)) + assert fake_requests.get.call_count == 1 # only the first call used the network + assert db.param_id_to_shortname(1) == "strf" + assert db.param_id_to_shortname(4) == "eqpt" + + +def test_online_no_platformdirs_no_cache_dir(fake_requests, tmp_path, monkeypatch): + """When platformdirs is unavailable and no cache_path is given, caching is + silently skipped and the data is still loaded correctly.""" + monkeypatch.setattr(_mod, "_platformdirs", None) + db = ParamDB(mode="online") # no cache_path, no platformdirs + assert fake_requests.get.call_count == 1 + assert db.param_id_to_shortname(1) == "strf" + + +def test_online_default_ttl_is_one_hour(): + """The documented default TTL is exactly one hour.""" + assert ParamDB._DEFAULT_CACHE_TTL == timedelta(hours=1) + + +# --------------------------------------------------------------------------- +# yaml_path parameter +# --------------------------------------------------------------------------- + +#: Minimal YAML content used by the yaml_path tests. +_CUSTOM_YAML = """\ +- id: 101 + shortname: cust1 + longname: Custom param one + units: m s**-1 + description: First custom parameter +- id: 102 + shortname: cust2 + longname: Custom param two + units: K + description: Second custom parameter +""" + +#: Same data with alternate key names to exercise _normalise. +_CUSTOM_YAML_ALIASES = """\ +- id: 201 + shortName: alias1 + longName: Alias param one + units: Pa +- id: 202 + short_name: alias2 + long_name: Alias param two + units: kg m**-3 +""" + + +@pytest.fixture() +def custom_yaml(tmp_path): + """Write _CUSTOM_YAML to a temporary file and return its Path.""" + p = tmp_path / "custom_params.yaml" + p.write_text(_CUSTOM_YAML) + return p + + +@pytest.fixture() +def custom_yaml_aliases(tmp_path): + """Write _CUSTOM_YAML_ALIASES to a temporary file and return its Path.""" + p = tmp_path / "alias_params.yaml" + p.write_text(_CUSTOM_YAML_ALIASES) + return p + + +def test_yaml_path_loads_custom_file(custom_yaml): + """yaml_path pointing at a valid YAML file loads without error.""" + db = ParamDB(yaml_path=custom_yaml) + assert db.param_id_to_shortname(101) == "cust1" + assert db.param_id_to_shortname(102) == "cust2" + + +def test_yaml_path_as_string(custom_yaml): + """yaml_path accepts a plain string as well as a Path object.""" + db = ParamDB(yaml_path=str(custom_yaml)) + assert db.param_id_to_shortname(101) == "cust1" + + +def test_yaml_path_data_is_used_not_default(custom_yaml): + """Custom YAML is actually loaded; the standard DB entries are NOT present.""" + db = ParamDB(yaml_path=custom_yaml) + # Custom entries exist + assert db.param_id_to_shortname(101) == "cust1" + # Standard entry is absent + with pytest.raises(KeyError): + db.param_id_to_shortname(1) + + +def test_yaml_path_full_lookup_chain(custom_yaml): + """All three lookup indices work correctly for a custom YAML file.""" + db = ParamDB(yaml_path=custom_yaml) + # id → shortname / longname + assert db.param_id_to_shortname(101) == "cust1" + assert db.param_id_to_longname(101) == "Custom param one" + # shortname → id / longname + assert db.shortname_to_param_id("cust1") == 101 + assert db.shortname_to_longname("cust1") == "Custom param one" + # longname → id / shortname + assert db.longname_to_param_id("Custom param one") == 101 + assert db.longname_to_shortname("Custom param one") == "cust1" + + +def test_yaml_path_get_metadata(custom_yaml): + """get_metadata works for all identifier types with a custom YAML file.""" + db = ParamDB(yaml_path=custom_yaml) + assert db.get_metadata(101)["shortname"] == "cust1" + assert db.get_metadata("cust1")["id"] == 101 + assert db.get_metadata("Custom param one")["id"] == 101 + assert db.get_metadata("101")["shortname"] == "cust1" + + +def test_yaml_path_get_units(custom_yaml): + """get_units returns the correct value from a custom YAML file.""" + db = ParamDB(yaml_path=custom_yaml) + assert db.get_units(101) == "m s**-1" + assert db.get_units(102) == "K" + + +def test_yaml_path_normalises_key_aliases(custom_yaml_aliases): + """Alternate key names (shortName, longName, etc.) are normalised correctly.""" + db = ParamDB(yaml_path=custom_yaml_aliases) + assert db.param_id_to_shortname(201) == "alias1" + assert db.param_id_to_longname(201) == "Alias param one" + assert db.param_id_to_shortname(202) == "alias2" + assert db.param_id_to_longname(202) == "Alias param two" + + +def test_yaml_path_missing_file_raises(tmp_path): + """A yaml_path that does not exist raises FileNotFoundError.""" + missing = tmp_path / "does_not_exist.yaml" + with pytest.raises(FileNotFoundError): + ParamDB(yaml_path=missing) + + +def test_yaml_path_with_online_mode_raises(custom_yaml): + """Combining yaml_path with mode='online' raises ValueError.""" + with pytest.raises(ValueError, match="yaml_path"): + ParamDB(mode="online", yaml_path=custom_yaml) + + +def test_yaml_path_none_loads_default_yaml(): + """yaml_path=None (the default) loads the standard parameter_metadata.yaml.""" + db = ParamDB(yaml_path=None) + # The standard DB has many entries; a well-known entry should be present. + assert db.param_id_to_shortname(1) == "strf" + assert len(db._by_id) > 100 + + +# --------------------------------------------------------------------------- +# Shortname collision / context-aware lookup +# --------------------------------------------------------------------------- + + +def test_shortname_default_returns_lowest_id(db): + """Without context, shortname_to_param_id returns the canonical ECMWF id. + + 't' maps to both 130 (ECMWF table 128, dissemination, origin 98) and + 500014 (table 500). The default priority (dissemination → ECMWF origin → + lowest id) must resolve to 130. + """ + assert db.shortname_to_param_id("t") == 130 + + +def test_shortname_to_param_id_with_table_128(db): + """table=128 selects the classic ECMWF parameter.""" + assert db.shortname_to_param_id("t", table=128) == 130 + + +def test_shortname_to_param_id_with_table_500(db): + """table=500 selects the non-ECMWF (table-500) parameter.""" + assert db.shortname_to_param_id("t", table=500) == 500014 + + +def test_shortname_to_longname_with_table(db): + """table context is forwarded correctly through shortname_to_longname.""" + assert db.shortname_to_longname("t", table=128) == "Temperature" + assert db.shortname_to_longname("t", table=500) == "Temperature" + + +def test_shortname_to_param_id_with_origin_ecmwf(db): + """origin=98 (ECMWF) selects the canonical ECMWF parameter.""" + assert db.shortname_to_param_id("t", origin=98) == 130 + + +def test_shortname_to_param_id_with_access_dissemination(db): + """access='dissemination' filters to dissemination parameters.""" + # 't' id=130 has dissemination; result must be 130. + assert db.shortname_to_param_id("t", access="dissemination") == 130 + + +def test_shortname_to_param_id_unknown_table_raises(db): + """Requesting a table that has no entry for the shortname raises KeyError.""" + with pytest.raises(KeyError, match="table=999"): + db.shortname_to_param_id("t", table=999) + + +def test_shortname_to_param_id_unknown_origin_raises(db): + """Requesting an origin with no entry for the shortname raises KeyError.""" + with pytest.raises(KeyError, match="origin=9999"): + db.shortname_to_param_id("t", origin=9999) + + +def test_shortname_to_param_id_unknown_access_raises(db): + """Requesting an access value with no matching entry raises KeyError.""" + with pytest.raises(KeyError, match="access="): + db.shortname_to_param_id("strf", access="nonexistent_access") + + +def test_shortname_to_param_id_center_context(db): + """origin context filters to the correct originating centre.""" + entry = db._resolve_shortname_with_context("t", origin=98) + assert entry["id"] == 130 + + +def test_get_all_by_shortname_returns_all_candidates(db): + """get_all_by_shortname returns every entry for a colliding shortname.""" + entries = db.get_all_by_shortname("t") + ids = [e["id"] for e in entries] + assert 130 in ids + assert 500014 in ids + # Results are sorted ascending by id + assert ids == sorted(ids) + + +def test_get_all_by_shortname_unique_shortname(db): + """get_all_by_shortname returns a single-element list for a unique shortname.""" + entries = db.get_all_by_shortname("strf") + assert len(entries) == 1 + assert entries[0]["id"] == 1 + + +def test_get_all_by_shortname_unknown_raises(db): + with pytest.raises(KeyError): + db.get_all_by_shortname("not_a_real_shortname_xyz") + + +def test_shortname_has_collisions_true(db): + """shortname_has_collisions returns True for a known colliding shortname.""" + assert db.shortname_has_collisions("t") is True + + +def test_shortname_has_collisions_false(db): + """shortname_has_collisions returns False for a unique shortname.""" + assert db.shortname_has_collisions("strf") is False + + +def test_shortname_has_collisions_unknown_raises(db): + with pytest.raises(KeyError): + db.shortname_has_collisions("not_a_real_shortname_xyz") + + +def test_table_from_id_classic_ecmwf(): + """IDs below 1000 decode to table 128 (classic ECMWF).""" + assert ParamDB._table_from_id(130) == 128 + assert ParamDB._table_from_id(1) == 128 + assert ParamDB._table_from_id(999) == 128 + + +def test_table_from_id_non_128_ecmwf(): + """IDs in the 1000–999999 range decode to table = id // 1000.""" + assert ParamDB._table_from_id(228228) == 228 + assert ParamDB._table_from_id(140232) == 140 + assert ParamDB._table_from_id(500014) == 500 + + +def test_table_from_id_center_namespaced(): + """IDs >= 1_000_000 decode the table from the middle digits.""" + # 7001292 → center=7, table=1, param=292 + assert ParamDB._table_from_id(7001292) == 1 + # 85001156 → center=85, table=1, param=156 + assert ParamDB._table_from_id(85001156) == 1 + + +def test_center_from_id_below_million(): + """IDs below 1_000_000 have no centre (returns None).""" + assert ParamDB._center_from_id(130) is None + assert ParamDB._center_from_id(228228) is None + + +def test_center_from_id_above_million(): + """IDs >= 1_000_000 decode the centre correctly.""" + assert ParamDB._center_from_id(7001292) == 7 + assert ParamDB._center_from_id(85001156) == 85 + + +def test_default_resolution_prefers_dissemination_then_ecmwf(db): + """Default resolution: dissemination params with ECMWF origin win.""" + # 't' → 130 has dissemination + origin 98; 500014 does not have origin 98. + assert db.shortname_to_param_id("t") == 130 + + +def test_origin_ids_stored_in_metadata(db): + """origin_ids field is present and populated for well-known params.""" + meta = db.get_metadata(130) + assert "origin_ids" in meta + assert 98 in meta["origin_ids"] # ECMWF + + +def test_access_ids_stored_in_metadata(db): + """access_ids field is present for well-known dissemination params.""" + meta = db.get_metadata(130) + assert "access_ids" in meta + assert "dissemination" in meta["access_ids"] + + +def test_first_write_wins_for_shortname(db): + """_by_shortname always holds the entry with the lowest id for each shortname.""" + for sn, entry in db._by_shortname.items(): + all_entries = db._by_shortname_all[sn] + min_id = min(e["id"] for e in all_entries) + assert entry["id"] == min_id, ( + f"_by_shortname[{sn!r}] has id={entry['id']} but min is {min_id}" + ) diff --git a/share/metkit/parameter_metadata.yaml b/share/metkit/parameter_metadata.yaml new file mode 100644 index 00000000..eaa8c5a5 --- /dev/null +++ b/share/metkit/parameter_metadata.yaml @@ -0,0 +1,73327 @@ +- id: 1 + shortname: strf + longname: Stream function + units: m**2 s**-1 + description: The horizontal wind field can be separated into divergent flow (i.e., + flow that is purely divergent, with no swirl or rotation) and rotational flow + (i.e., flow that is purely rotational and has no divergence).

The rotational + (non-divergent) flow follows lines of constant stream function value (streamlines) + and the speed of flow is proportional to the stream function gradient.

So + streamlines show patterns of horizontal, rotational, air flow and the paths that + particles would follow if the flow did not change with time. + access_ids: + - dissemination + origin_ids: + - 0 + - 34 + - 98 +- id: 2 + shortname: vp + longname: Velocity potential + units: m**2 s**-1 + description: The horizontal wind field can be separated into divergent flow (i.e., + flow that is purely divergent, with no swirl or rotation) and rotational flow + (i.e., flow that is purely rotational and has no divergence).

This parameter + is the scalar quantity whose gradient is the velocity vector of the irrotational + flow. It can be used to show areas where the air is diverging (spreading out) + or converging, which, depending on the vertical level, relate to ascending or + descending air. + access_ids: + - dissemination + origin_ids: + - 0 + - 34 + - 98 +- id: 3 + shortname: pt + longname: Potential temperature + units: K + description: '' + access_ids: + - dissemination + origin_ids: + - 0 + - 34 + - 98 +- id: 4 + shortname: eqpt + longname: Equivalent potential temperature + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 5 + shortname: sept + longname: Saturated equivalent potential temperature + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 6 + shortname: ssfr + longname: Soil sand fraction + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 7 + shortname: scfr + longname: Soil clay fraction + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 8 + shortname: sro + longname: Surface runoff + units: m + description: "Some water from rainfall, melting snow, or deep in the soil, stays\ + \ stored in the soil. Otherwise, the water drains away, either over the surface\ + \ (surface runoff), or under the ground (sub-surface runoff) and the sum of these\ + \ two is simply called 'runoff'. This parameter is the total amount of water accumulated\ + \ over a particular\ + \ time period which depends on the data extracted.The units of runoff are\ + \ depth in metres. This is the depth the water would have if it were spread evenly\ + \ over the grid\ + \ box. Care should be taken when comparing model parameters with observations,\ + \ because observations are often local to a particular point rather than averaged\ + \ over a grid square area. Observations are also often taken in different units,\ + \ such as mm/day, rather than the accumulated metres produced here.

Runoff\ + \ is a measure of the availability of water in the soil, and can, for example,\ + \ be used as an indicator of drought or flood. More information about how runoff\ + \ is calculated is given in the \ + \ IFS Physical Processes documentation.\r\n\r\n[NOTE: See 231010 for the equivalent\ + \ parameter in \"kg m-2\"]" + access_ids: + - dissemination + origin_ids: + - -90 + - -80 + - -70 + - -50 + - 98 +- id: 9 + shortname: ssro + longname: Sub-surface runoff + units: m + description: "Some water from rainfall, melting snow, or deep in the soil, stays\ + \ stored in the soil. Otherwise, the water drains away, either over the surface\ + \ (surface runoff), or under the ground (sub-surface runoff) and the sum of these\ + \ two is simply called 'runoff'. This parameter is the total amount of water accumulated\ + \ over a particular\ + \ time period which depends on the data extracted.The units of runoff are\ + \ depth in metres. This is the depth the water would have if it were spread evenly\ + \ over the grid\ + \ box. Care should be taken when comparing model parameters with observations,\ + \ because observations are often local to a particular point rather than averaged\ + \ over a grid square area. Observations are also often taken in different units,\ + \ such as mm/day, rather than the accumulated metres produced here.

Runoff\ + \ is a measure of the availability of water in the soil, and can, for example,\ + \ be used as an indicator of drought or flood. More information about how runoff\ + \ is calculated is given in the \ + \ IFS Physical Processes documentation.\r\n\r\n[NOTE: See 231012 for the equivalent\ + \ parameter in \"kg m-2\"]" + access_ids: + - dissemination + origin_ids: + - -90 + - -80 + - -70 + - -50 + - 98 +- id: 10 + shortname: ws + longname: Wind speed + units: m s**-1 + description:

The speed of horizontal air movement in metres per second.

The + eastward and northward components of the horizontal wind are also available as + parameters.

+ access_ids: + - dissemination + origin_ids: + - -90 + - -20 + - 0 + - 34 + - 98 +- id: 11 + shortname: udvw + longname: U component of divergent wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 12 + shortname: vdvw + longname: V component of divergent wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 13 + shortname: urtw + longname: U component of rotational wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 14 + shortname: vrtw + longname: V component of rotational wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 15 + shortname: aluvp + longname: UV visible albedo for direct radiation (climatological) + units: (0 - 1) + description: Albedo is a measure of the reflectivity of the Earth's surface. This + parameter is the fraction of direct solar (shortwave) radiation with wavelengths + shorter than 0.7 µm (microns, 1 millionth of a metre) reflected by the Earth's + surface (for snow-free land surfaces only). It is one of four components (parameters + 15-18) that were used by the ECMWF Integrated Forecasting System (IFS) to represent + albedo up to and including Cycle 46R1. Later cycles use instead six components + (parameters 210186-210191). See + further documentation

Solar radiation at the surface can be direct + or diffuse. Solar radiation can be scattered in all directions by particles in + the atmosphere, some of which reaches the surface (diffuse solar radiation). Some + solar radiation reaches the surface without being scattered (direct solar radiation).

In + the IFS, a climatological (observed values averaged over a period of several years) + background albedo is used which varies from month to month through the year, modified + by the model over water, ice and snow. + access_ids: + - dissemination + origin_ids: + - -80 + - -50 + - 98 +- id: 16 + shortname: aluvd + longname: UV visible albedo for diffuse radiation (climatological) + units: (0 - 1) + description: Albedo is a measure of the reflectivity of the Earth's surface. This + parameter is the fraction of diffuse solar (shortwave) radiation with wavelengths + shorter than 0.7 µm (microns, 1 millionth of a metre) reflected by the Earth's + surface (for snow-free land surfaces only). It is one of four components (parameters + 15-18) that were used by the ECMWF Integrated Forecasting System (IFS) to represent + albedo up to and including Cycle 46R1. Later cycles use instead six components + (parameters 210186-210191). See + further documentation

Solar radiation at the surface can be direct + or diffuse. Solar radiation can be scattered in all directions by particles in + the atmosphere, some of which reaches the surface (diffuse solar radiation). Some + solar radiation reaches the surface without being scattered (direct solar radiation).

In + the IFS, a climatological (observed values averaged over a period of several years) + background albedo is used which varies from month to month through the year, modified + by the model over water, ice and snow. + access_ids: + - dissemination + origin_ids: + - -80 + - -50 + - 98 +- id: 17 + shortname: alnip + longname: Near IR albedo for direct radiation (climatological) + units: (0 - 1) + description: Albedo is a measure of the reflectivity of the Earth's surface. This + parameter is the fraction of direct solar (shortwave) radiation with wavelengths + longer than 0.7 (microns, 1 millionth of a metre) reflected by the Earth's surface + (for snow-free land surfaces only). It is one of four components (parameters 15-18) + that were used by the ECMWF Integrated Forecasting System (IFS) to represent albedo + up to and including Cycle 46R1. Later cycles use instead six components (parameters + 210186-210191). See + further documentation

Solar radiation at the surface can be direct + or diffuse. Solar radiation can be scattered in all directions by particles in + the atmosphere, some of which reaches the surface (diffuse solar radiation). Some + solar radiation reaches the surface without being scattered (direct solar radiation).

In + the IFS, a climatological (observed values averaged over a period of several years) + background albedo is used which varies from month to month through the year, modified + by the model over water, ice and snow. + access_ids: + - dissemination + origin_ids: + - -80 + - -50 + - 98 +- id: 18 + shortname: alnid + longname: Near IR albedo for diffuse radiation (climatological) + units: (0 - 1) + description: Albedo is a measure of the reflectivity of the Earth's surface. This + parameter is the fraction of diffuse solar (shortwave) radiation with wavelengths + longer than 0.7 µm (microns, 1 millionth of a metre) reflected by the Earth's + surface (for snow-free land surfaces only). It is one of four components (parameters + 15-18) that were used by the ECMWF Integrated Forecasting System (IFS) to represent + albedo up to and including Cycle 46R1. Later cycles use instead six components + (parameters 210186-210191). See + further documentation

Solar radiation at the surface can be direct + or diffuse. Solar radiation can be scattered in all directions by particles in + the atmosphere, some of which reaches the surface (diffuse solar radiation). Some + solar radiation reaches the surface without being scattered (direct solar radiation).

In + the IFS, a climatological (observed values averaged over a period of several years) + background albedo is used which varies from month to month through the year, modified + by the model over water, ice and snow. + access_ids: + - dissemination + origin_ids: + - -80 + - -50 + - 98 +- id: 19 + shortname: uvcs + longname: Clear sky surface UV + units: J m**-2 + description: 0.20-0.44 um accumulated field + access_ids: [] + origin_ids: + - 98 +- id: 20 + shortname: parcs + longname: Surface photosynthetically active radiation, clear sky + units: J m**-2 + description: 0.44-0.70 um accumulated field + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 21 + shortname: uctp + longname: Unbalanced component of temperature + units: K + description: Residual resulting from subtracting from temperature an approximate + 'balanced' value derived from relevant variable(s) + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 22 + shortname: ucln + longname: Unbalanced component of logarithm of surface pressure + units: '~' + description: 'Residual resulting from subtracting from logarithm of surface pressure + an approximate ''balanced'' value derived from relevant variable(s). + +
Note that this parameter is dimensionless' + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 23 + shortname: ucdv + longname: Unbalanced component of divergence + units: s**-1 + description: Residual resulting from subtracting from divergence an approximate + 'balanced' value derived from relevant variable(s) + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 24 + shortname: '~' + longname: Reserved for future unbalanced components + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 25 + shortname: '~' + longname: Reserved for future unbalanced components + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 26 + shortname: cl + longname: Lake cover + units: (0 - 1) + description: '

This parameter is the proportion of a grid + box covered by inland water bodies (lakes, reservoirs, rivers) and coastal + waters. Values vary between 0: no inland or coastal water body, and 1: grid box + is fully covered with inland or coastal water body. This field is specified from + observations and is constant in time.

ECMWF implemented a lake model in + May 2015 to represent the water temperature and lake ice of all the world''s major + inland water bodies in the Integrated Forecasting System (IFS). The IFS differentiates + between (i) ocean water, handled by the ocean model, and (ii) inland water (lakes, + reservoirs and rivers) and coastal waters handled by the lake parametrisation. + Lake depth and surface area (or fractional cover) are kept constant in time.

' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 27 + shortname: cvl + longname: Low vegetation cover + units: (0 - 1) + description: This parameter is the fraction of the grid + box (0-1) that is covered with vegetation that is classified as 'low'.

This + is one of the parameters in the model that describes land surface vegetation. + 'Low vegetation' consists of crops and mixed farming, irrigated crops, short grass, + tall grass, tundra, semidesert, bogs and marshes, evergreen shrubs, deciduous + shrubs, and water and land mixtures. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 28 + shortname: cvh + longname: High vegetation cover + units: (0 - 1) + description: This parameter is the fraction of the grid + box (0-1) that is covered with vegetation that is classified as 'high'.

This + is one of the parameters in the model that describes land surface vegetation. + 'High vegetation' consists of evergreen trees, deciduous trees, mixed forest/woodland, + and interrupted forest. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 29 + shortname: tvl + longname: Type of low vegetation + units: (Code table 4.234) + description: This parameter indicates the 10 types of low vegetation recognised + by the ECMWF Integrated Forecasting System:

1 = Crops, Mixed farming

2 + = Grass

7 = Tall grass

9 = Tundra

10 = Irrigated crops

11 + = Semidesert

13 = Bogs and marshes

16 = Evergreen shrubs

17 + = Deciduous shrubs

20 = Water and land mixtures

They are used + to calculate the surface energy balance and the snow albedo.

The other + types (3, 4, 5, 6, 18, 19 and 19) are high vegetation, or indicate no land surface + vegetation (8 = Desert, 12=Ice caps and Glaciers, 14 = Inland water, 15 =Ocean). + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 30 + shortname: tvh + longname: Type of high vegetation + units: (Code table 4.234) + description: This parameter indicates the 6 types of high vegetation recognised + by the ECMWF Integrated Forecasting System:

3 = Evergreen needleleaf + trees

4 = Deciduous needleleaf trees

5 = Deciduous broadleaf + trees

6 = Evergreen broadleaf trees

18 = Mixed forest/woodland

19 + = Interrupted forest

They are used to calculate the surface energy balance + and the snow albedo.

The other types (1, 2, 7, 9, 10, 11, 13, 16, 17 + and 20) are low vegetation, or indicate no land surface vegetation (8 = Desert, + 12=Ice caps and Glaciers, 14 = Inland water, 15 =Ocean). + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 31 + shortname: ci + longname: Sea ice area fraction + units: (0 - 1) + description: This parameter is the fraction of a grid + box which is covered by sea ice. Sea ice can only occur in a grid box which + includes ocean or inland water according to the land sea mask and lake cover, + at the resolution being used. This parameter can be known as sea-ice (area) fraction, + sea-ice concentration and more generally as sea-ice cover.

Coupled atmosphere + ocean simulations of the ECMWF Integrated Forecasting System (IFS) predict the + formation and melting of sea ice. Otherwise, in analyses and atmosphere only simulations, + sea ice is derived from observations, but the model does take account of the way + that sea ice alters the interaction between the atmosphere and ocean.

Sea + ice is frozen sea water which floats on the surface of the ocean. Sea ice does + not include ice which forms on land such as glaciers, icebergs and ice-sheets. + It also excludes ice shelves which are anchored on land, but protrude out over + the surface of the ocean. These phenomena are not modelled by the IFS.

Long-term + monitoring of sea ice is important for understanding climate change. Sea ice also + affects shipping routes through the polar regions. + access_ids: + - dissemination + origin_ids: + - -40 + - -20 + - 0 + - 34 + - 98 +- id: 32 + shortname: asn + longname: Snow albedo + units: (0 - 1) + description: 'This parameter is a measure of the reflectivity of the snow-covered + part of the grid + box. It is the fraction of solar (shortwave) radiation reflected by snow across + the solar spectrum.

The ECMWF + Integrated Forecast System represents snow as a single additional layer over + the uppermost soil level.

This parameter changes with snow age and also + depends on vegetation height. For low vegetation, it ranges between 0.52 for old + snow and 0.88 for fresh snow. For high vegetation with snow underneath, it depends + on vegetation type and has values between 0.27 and 0.38. See further + information. + +
[NOTE: See 228032 for the equivalent parameter in "%"]' + access_ids: + - dissemination + origin_ids: + - -80 + - -50 + - 98 +- id: 33 + shortname: rsn + longname: Snow density + units: kg m**-3 + description: This parameter is the mass of snow per cubic metre in the snow layer.

The + ECMWF Integrated Forecast System (IFS) model represents snow as a single additional + layer over the uppermost soil level. The snow may cover all or part of the + grid box.

+ See further information on snow in the IFS. + access_ids: + - dissemination + origin_ids: + - -40 + - -20 + - 0 + - 98 +- id: 34 + shortname: sst + longname: Sea surface temperature + units: K + description: This parameter is the temperature of sea water near the surface.

This + parameter is taken from various providers, who process the observational data + in different ways. Each provider uses data from several different observational + sources. For example, satellites measure sea surface temperature (SST) in a layer + a few microns thick in the uppermost mm of the ocean, drifting buoys measure SST + at a depth of about 0.2-1.5m, whereas ships sample sea water down to about 10m, + while the vessel is underway. Deeper measurements are not affected by changes + that occur during a day, due to the rising and setting of the Sun (diurnal variations).

Sometimes + this parameter is taken from a forecast made by coupling the NEMO ocean model + to the ECMWF Integrated Forecasting System. In this case, the SST is the average + temperature of the uppermost metre of the ocean and does exhibit diurnal variations.

+ See further documentation .

This parameter has units of kelvin (K). + Temperature measured in kelvin can be converted to degrees Celsius (°C) by + subtracting 273.15. + access_ids: + - dissemination + origin_ids: + - -40 + - -20 + - 0 + - 98 +- id: 35 + shortname: istl1 + longname: Ice temperature layer 1 + units: K + description: 'This parameter is the sea-ice temperature in layer 1 (0 to 7cm).

The + ECMWF Integrated Forecasting System (IFS) has a four-layer sea-ice slab:
Layer + 1: 0-7cm
Layer 2: 7-28cm
Layer 3: 28-100cm
Layer 4: 100-150cm

The + temperature of the sea-ice in each layer changes as heat is transferred between + the sea-ice layers and the atmosphere above and ocean below. + See further documentation.' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 36 + shortname: istl2 + longname: Ice temperature layer 2 + units: K + description: 'This parameter is the sea-ice temperature in layer 2 (7 to 28 cm).

The + ECMWF Integrated Forecasting System (IFS) has a four-layer sea-ice slab:
Layer + 1: 0-7cm
Layer 2: 7-28cm
Layer 3: 28-100cm
Layer 4: 100-150cm

The + temperature of the sea-ice in each layer changes as heat is transferred between + the sea-ice layers and the atmosphere above and ocean below. + See further documentation.' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 37 + shortname: istl3 + longname: Ice temperature layer 3 + units: K + description: 'This parameter is the sea-ice temperature in layer 3 (28 to 100 cm).

The + ECMWF Integrated Forecasting System (IFS) has a four-layer sea-ice slab:
Layer + 1: 0-7cm
Layer 2: 7-28cm
Layer 3: 28-100cm
Layer 4: 100-150cm

The + temperature of the sea-ice in each layer changes as heat is transferred between + the sea-ice layers and the atmosphere above and ocean below. + See further documentation.' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 38 + shortname: istl4 + longname: Ice temperature layer 4 + units: K + description: 'This parameter is the sea-ice temperature in layer 4 (100 to 150 cm).

The + ECMWF Integrated Forecasting System (IFS) has a four-layer sea-ice slab:
Layer + 1: 0-7cm
Layer 2: 7-28cm
Layer 3: 28-100cm
Layer 4: 100-150cm

The + temperature of the sea-ice in each layer changes as heat is transferred between + the sea-ice layers and the atmosphere above and ocean below. + See further documentation.' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 39 + shortname: swvl1 + longname: Volumetric soil water layer 1 + units: m**3 m**-3 + description: 'This parameter is the volume of water in soil layer 1 (0 - 7cm, the + surface is at 0cm).

The ECMWF Integrated Forecasting System model has + a four-layer representation of soil:
Layer 1: 0 - 7cm
Layer 2: 7 - 28cm +
Layer 3: 28 - 100cm
Layer 4: 100 - 289cm

The volumetric soil + water is associated with the soil texture (or classification), soil depth, and + the underlying groundwater level.' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 40 + shortname: swvl2 + longname: Volumetric soil water layer 2 + units: m**3 m**-3 + description: 'This parameter is the volume of water in soil layer 2 (7 - 28cm, the + surface is at 0cm).

The ECMWF Integrated Forecasting System model has + a four-layer representation of soil:
Layer 1: 0 - 7cm
Layer 2: 7 - 28cm +
Layer 3: 28 - 100cm
Layer 4: 100 - 289cm

The volumetric soil + water is associated with the soil texture (or classification), soil depth, and + the underlying groundwater level.' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 41 + shortname: swvl3 + longname: Volumetric soil water layer 3 + units: m**3 m**-3 + description: 'This parameter is the volume of water in soil layer 3 (28 - 100cm, + the surface is at 0cm).

The ECMWF Integrated Forecasting System model + has a four-layer representation of soil:
Layer 1: 0 - 7cm
Layer 2: 7 + - 28cm
Layer 3: 28 - 100cm
Layer 4: 100 - 289cm

The volumetric + soil water is associated with the soil texture (or classification), soil depth, + and the underlying groundwater level.' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 42 + shortname: swvl4 + longname: Volumetric soil water layer 4 + units: m**3 m**-3 + description: 'This parameter is the volume of water in soil layer 4 (100 - 289cm, + the surface is at 0cm).

The ECMWF Integrated Forecasting System model + has a four-layer representation of soil:
Layer 1: 0 - 7cm
Layer 2: 7 + - 28cm
Layer 3: 28 - 100cm
Layer 4: 100 - 289cm

The volumetric + soil water is associated with the soil texture (or classification), soil depth, + and the underlying groundwater level.' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 43 + shortname: slt + longname: Soil type + units: (Code table 4.213) + description:

This parameter is the texture (or classification) of soil used by + the land surface scheme of the ECMWF Integrated Forecast System to predict the + water holding capacity of soil in soil moisture and runoff calculations. It is + derived from the root zone data (30-100 cm below the surface) of the FAO/UNESCO + Digital Soil Map of the World, DSMW (FAO, 2003), which exists at a resolution + of 5' X 5' (about 10 km).

The seven soil types are:

Coarse1
Medium2
Medium + fine3
Fine4
Very fine5
Organic6
Tropical + organic7
+ access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 44 + shortname: es + longname: Snow evaporation + units: m of water equivalent + description: 'This parameter is the accumulated amount of water that has evaporated + from snow from the snow-covered area of a grid + box into vapour in the air above.

The ECMWF + Integrated Forecast System represents snow as a single additional layer + over the uppermost soil level. The snow may cover all or part of the grid box. + This parameter is the depth of water there would be if the evaporated snow (from + the snow-covered area of a grid + box ) were liquid and were spread evenly over the whole grid box.

This + parameter is accumulated over a  particular + time period which depends on the data extracted.

The ECMWF Integrated + Forecasting System convention is that downward fluxes are positive. Therefore, + negative values indicate evaporation and positive values indicate deposition. + +
[NOTE: See 231003 for the equivalent parameter in "kg m-2"]' + access_ids: + - dissemination + origin_ids: + - -80 + - -50 + - 98 +- id: 45 + shortname: smlt + longname: Snowmelt + units: m of water equivalent + description: 'This parameter is the accumulated amount of water that has melted + from snow in the snow-covered area of a grid + box.

The ECMWF + Integrated Forecast System represents snow as a single additional layer + over the uppermost soil level. The snow may cover all or part of the grid box. + This parameter is the depth of water there would be if the melted snow (from the + snow-covered area of a grid + box ) were spread evenly over the whole grid box. For example, if half the + grid box were covered in snow with a water equivalent depth of 0.02m, this parameter + would have a value of 0.01m.

This parameter is accumulated over a  particular + time period which depends on the data extracted. + + [NOTE: See 3099 for the equivalent parameter in "kg m-2"]' + access_ids: + - dissemination + origin_ids: + - -80 + - -50 + - 98 +- id: 46 + shortname: sdur + longname: Solar duration + units: s + description: null + access_ids: [] + origin_ids: + - 98 +- id: 47 + shortname: dsrp + longname: Surface direct normal short-wave (solar) radiation + units: J m**-2 + description:

This parameter is the amount of direct radiation from the Sun (also + known as solar or shortwave radiation) reaching the surface on a plane perpendicular + to the direction of the Sun. 

Solar radiation at the surface can be + direct or diffuse. Solar radiation can be scattered in all directions by particles + in the atmosphere, some of which reaches the surface (diffuse solar radiation). + Some solar radiation reaches the surface without being scattered (direct solar + radiation). See + further documentation.

This parameter is accumulated over a particular + time period which depends on the data extracted. The units are joules per square + metre (J m-2). To convert to watts per square metre (W m-2), the accumulated values + should be divided by the accumulation period expressed in seconds.

The + ECMWF convention for vertical fluxes is positive downwards.

+ access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 48 + shortname: magss + longname: Time-integrated magnitude of turbulent surface stress + units: N m**-2 s + description:

Accumulated field

+ access_ids: [] + origin_ids: + - 0 + - 98 +- id: 49 + shortname: 10fg + longname: Maximum 10 metre wind gust since previous post-processing + units: m s**-1 + description: "Maximum 3 second wind at 10 m height as defined by WMO.

\r\n\ + Parametrization represents turbulence only before 01102008; thereafter effects\ + \ of convection are included. The 3 s gust is computed every time step and and\ + \ the maximum is kept since the last postprocessing." + access_ids: + - dissemination + origin_ids: + - -20 + - 0 + - 98 +- id: 50 + shortname: lspf + longname: Large-scale precipitation fraction + units: s + description: This parameter is the accumulation of the fraction of the grid box + (0-1) that was covered by large-scale precipitation.

This parameter is + accumulated over a + particular time period which depends on the data extracted. See further + information. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 51 + shortname: mx2t24 + longname: Maximum temperature at 2 metres in the last 24 hours + units: K + description: The highest value of 2 metre temperature in the previous 24 hour period.

2m + temperature is calculated by interpolating between the lowest model level and + the Earth's surface, taking account of the atmospheric conditions. See further + information.

This parameter has units of kelvin (K). Temperature + measured in kelvin can be converted to degrees Celsius (°C) by subtracting + 273.15. + access_ids: + - dissemination + origin_ids: + - -70 + - 98 +- id: 52 + shortname: mn2t24 + longname: Minimum temperature at 2 metres in the last 24 hours + units: K + description: The lowest value of 2 metre temperature in the previous 24 hour period.

2m + temperature is calculated by interpolating between the lowest model level and + the Earth's surface, taking account of the atmospheric conditions. See further + information.

This parameter has units of kelvin (K). Temperature + measured in kelvin can be converted to degrees Celsius (°C) by subtracting + 273.15. + access_ids: + - dissemination + origin_ids: + - -70 + - 98 +- id: 53 + shortname: mont + longname: Montgomery potential + units: m**2 s**-2 + description: Takes the role of geopotential in an isentropic vertical coordinate + access_ids: [] + origin_ids: + - 0 + - 34 + - 98 +- id: 54 + shortname: pres + longname: Pressure + units: Pa + description: null + access_ids: + - dissemination + origin_ids: + - -20 + - 0 + - 34 + - 98 +- id: 55 + shortname: mean2t24 + longname: Mean temperature at 2 metres in the last 24 hours + units: K + description:

The mean value of 2 metre temperature in the previous 24 hour period. + The mean is calculated from the temperature at each model + time step.

2m temperature is calculated by interpolating between the + lowest model level and the Earth's surface, taking account of the atmospheric + conditions. See further + information.

This parameter has units of kelvin (K). Temperature measured + in kelvin can be converted to degrees Celsius (°C) by subtracting 273.15

Please + use 228004 for the GRIB2 encoding of this parameter.

+ access_ids: + - dissemination + origin_ids: + - 98 +- id: 56 + shortname: mn2d24 + longname: Mean 2 metre dewpoint temperature in the last 24 hours + units: K + description:

6-hourly intervals

Please use 235168 for the GRIB2 encoding + of this parameter.

+ access_ids: [] + origin_ids: + - 98 +- id: 57 + shortname: uvb + longname: Surface downward UV radiation + units: J m**-2 + description:

This parameter is the amount of ultraviolet (UV) radiation reaching + the surface. It is the amount of radiation passing through a horizontal plane, + not a plane perpendicular to the direction of the Sun.

UV radiation is + part of the electromagnetic spectrum emitted by the Sun that has wavelengths shorter + than visible light. In the ECMWF Integrated Forecasting system it is defined as + radiation with a wavelength of 0.20-0.44 µm (microns, 1 millionth of a metre). 

Small + amounts of UV are essential for living organisms, but overexposure may result + in cell damage; in humans this includes acute and chronic health effects on the + skin, eyes and immune system. UV radiation is absorbed by the ozone layer, but + some reaches the surface. The depletion of the ozone layer is causing concern + over an increase in the damaging effects of UV. 

This parameter is + accumulated + over a particular time period which depends on the data extracted. The units + are joules per square metre (J m-2). To convert to watts per square metre (W m-2), + the accumulated values should be divided by the accumulation period expressed + in seconds.

The ECMWF convention for vertical fluxes is positive downwards.

+ access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 58 + shortname: par + longname: Photosynthetically active radiation at the surface + units: J m**-2 + description: '0.40-0.70 um. Accumulated field.
+ + Before Cycle 43R1, a coding error meant that PAR was computed from the wrong spectral + bands and hence was underestimated by around 30%.
It should therefore only + be used from Cycles 43R1 and later.' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 59 + shortname: cape + longname: Convective available potential energy + units: J kg**-1 + description: 'This is an indication of the instability (or stability) of the atmosphere + and can be used to assess the potential for the development of convection, which + can lead to heavy rainfall, thunderstorms and other severe weather.

In + the ECMWF Integrated Forecasting System (IFS), CAPE is calculated by considering parcels + of air departing at different model levels below the 350 hPa level. If a parcel + of air is more buoyant (warmer and/or with more moisture) than its surrounding + environment, it will continue to rise (cooling as it rises) until it reaches a + point where it no longer has positive buoyancy. CAPE is the potential energy represented + by the total excess buoyancy. The maximum CAPE produced by the different parcels + is the value retained.

Large positive values of CAPE indicate that an + air parcel would be much warmer than its surrounding environment and therefore, + very buoyant. CAPE is related to the maximum potential vertical velocity of air + within an updraft; thus, higher values indicate greater potential for severe weather. + Observed values in thunderstorm environments often may exceed 1000 joules per + kilogram (J kg-1), and in extreme cases may exceed 5000 J kg-1.

+ The calculation of this parameter assumes: (i) the parcel of air does not mix + with surrounding air; (ii) ascent is pseudo-adiabatic (all condensed water falls + out) and (iii) other simplifications related to the mixed-phase condensational + heating.' + access_ids: [] + origin_ids: + - -40 + - 0 + - 7 + - 98 +- id: 60 + shortname: pv + longname: Potential vorticity + units: K m**2 kg**-1 s**-1 + description: 'Potential vorticity is a measure of the capacity for air to rotate + in the atmosphere. If we ignore the effects of heating and friction, potential + vorticity is conserved following an air parcel. It is used to look for places + where large wind storms are likely to originate and develop. Potential vorticity + increases strongly above the tropopause and therefore, it can also be used in + studies related to the stratosphere and stratosphere-troposphere exchanges.

Large + wind storms develop when a column of air in the atmosphere starts to rotate. Potential + vorticity is calculated from the wind, temperature and pressure across a column + of air in the atmosphere. ' + access_ids: + - dissemination + origin_ids: + - -20 + - 0 + - 34 + - 98 +- id: 62 + shortname: obct + longname: Observation count + units: '~' + description: Count of observations used in calculating value at a gridpoint + access_ids: [] + origin_ids: + - 98 +- id: 63 + shortname: stsktd + longname: Start time for skin temperature difference + units: s + description: Seconds from reference time + access_ids: [] + origin_ids: + - 98 +- id: 64 + shortname: ftsktd + longname: Finish time for skin temperature difference + units: s + description: Seconds from reference time + access_ids: [] + origin_ids: + - 98 +- id: 65 + shortname: sktd + longname: Skin temperature difference + units: K + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 66 + shortname: lai_lv + longname: Leaf area index, low vegetation + units: m**2 m**-2 + description: This parameter is the surface area of one side of all the leaves found + over an area of land for vegetation classified as 'low'. This parameter has a + value of 0 over bare ground or where there are no leaves. It can be calculated + daily from satellite data. It is important for forecasting, for example, how much + rainwater will be intercepted by the vegetative canopy, rather than falling to + the ground.

This is one of the parameters in the model that describes + land surface vegetation. 'Low vegetation' consists of crops and mixed farming, + irrigated crops, short grass, tall grass, tundra, semidesert, bogs and marshes, + evergreen shrubs, deciduous shrubs, and water and land mixtures. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 67 + shortname: lai_hv + longname: Leaf area index, high vegetation + units: m**2 m**-2 + description: This parameter is the surface area of one side of all the leaves found + over an area of land for vegetation classified as 'high'. This parameter has a + value of 0 over bare ground or where there are no leaves. It can be calculated + daily from satellite data. It is important for forecasting, for example, how + much rainwater will be intercepted by the vegetative canopy, rather than falling + to the ground.

This is one of the parameters in the model that describes + land surface vegetation. 'High vegetation' consists of evergreen trees, deciduous + trees, mixed forest/woodland, and interrupted forest. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 68 + shortname: msr_lv + longname: Minimum stomatal resistance, low vegetation + units: s m**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 69 + shortname: msr_hv + longname: Minimum stomatal resistance, high vegetation + units: s m**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 70 + shortname: bc_lv + longname: Biome cover, low vegetation + units: (0 - 1) + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 71 + shortname: bc_hv + longname: Biome cover, high vegetation + units: (0 - 1) + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 72 + shortname: issrd + longname: Instantaneous surface solar radiation downwards + units: W m**-2 + description:

This parameter is only available in GRIB1.

+ access_ids: [] + origin_ids: + - 98 +- id: 73 + shortname: istrd + longname: Instantaneous surface thermal radiation downwards + units: W m**-2 + description:

This parameter is only available in GRIB1.

+ access_ids: [] + origin_ids: + - 98 +- id: 74 + shortname: sdfor + longname: Standard deviation of filtered subgrid orography (climatological) + units: m + description: Climatological field (scales between approximately 3 and 22 km are + included) + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 75 + shortname: crwc + longname: Specific rain water content + units: kg kg**-1 + description: 'The mass of water produced from large-scale clouds that is of raindrop + size and so can fall to the surface as precipitation.

Large-scale clouds + are generated by the cloud scheme in the ECMWF Integrated Forecasting System (IFS). + The cloud scheme represents the formation and dissipation of clouds and large-scale + precipitation due to changes in atmospheric quantities (such as pressure, temperature + and moisture) predicted directly by the IFS at spatial scales of a grid box or + larger. See further + information.

The quantity is expressed in kilograms per kilogram + of the total mass of moist air. The ''total mass of moist air'' is the sum of + the dry air, water vapour, cloud liquid, cloud ice, rain and falling snow. This + parameter represents the average value for a grid + box.

Clouds contain a continuum of different sized water droplets + and ice particles. The IFS cloud scheme simplifies this to represent a number + of discrete cloud droplets/particles including: cloud water droplets, raindrops, + ice crystals and snow (aggregated ice crystals). The processes of droplet formation, + phase transition and aggregation are also highly simplified in the IFS.' + access_ids: + - dissemination + origin_ids: + - -80 + - -20 + - 0 + - 98 +- id: 76 + shortname: cswc + longname: Specific snow water content + units: kg kg**-1 + description: 'The mass of snow (aggregated ice crystals) produced from large-scale + clouds that can fall to the surface as precipitation.

Large-scale clouds + are generated by the cloud scheme in the ECMWF Integrated Forecasting System (IFS). + The cloud scheme represents the formation and dissipation of clouds and large-scale + precipitation due to changes in atmospheric quantities (such as pressure, temperature + and moisture) predicted directly by the IFS at spatial scales of a grid box or + larger. See further + information.

The mass is expressed in kilograms per kilogram of the + total mass of moist air. The ''total mass of moist air'' is the sum of the dry + air, water vapour, cloud liquid, cloud ice, rain and falling snow. This parameter + represents the average value for a grid + box.

Clouds contain a continuum of different sized water droplets + and ice particles. The IFS cloud scheme simplifies this to represent a number + of discrete cloud droplets/particles including: cloud water droplets, raindrops, + ice crystals and snow (aggregated ice crystals). The processes of droplet formation, + phase transition and aggregation are also highly simplified in the IFS.' + access_ids: + - dissemination + origin_ids: + - -80 + - -20 + - 0 + - 98 +- id: 77 + shortname: etadot + longname: Eta-coordinate vertical velocity + units: s**-1 + description: This parameter is the rate of air motion in the upward or downward + direction. The ECMWF Integrated Forecasting System (IFS) uses a pressure and terrain-based + vertical coordinate system called eta-coordinate. Since pressure in the atmosphere + decreases with height, negative values of eta-coordinate vertical velocity indicate + upward motion.

This parameter is used in the IFS to calculate the vertical + transport, or advection, of atmospheric quantities such as moisture. + access_ids: + - dissemination + origin_ids: + - -80 + - 0 + - 98 +- id: 78 + shortname: tclw + longname: Total column cloud liquid water + units: kg m**-2 + description: 'This parameter is the amount of liquid water contained within cloud + droplets in a column extending from the surface of the Earth to the top of the + atmosphere. Rain water droplets, which are much larger in size (and mass), are + not included in this parameter.

This parameter represents the area averaged + value for a model + grid box.

Clouds contain a continuum of different- sized water droplets + and ice particles. The ECMWF Integrated Forecasting System (IFS) cloud scheme + simplifies this to represent a number of discrete cloud droplets/particles including: + cloud water droplets, raindrops, ice crystals and snow (aggregated ice crystals). + The processes of droplet formation, phase transition and aggregation are also + highly simplified in the IFS.' + access_ids: + - dissemination + origin_ids: + - -20 + - 0 + - 34 + - 98 +- id: 79 + shortname: tciw + longname: Total column cloud ice water + units: kg m**-2 + description: 'This parameter is the amount of ice contained within clouds in a column + extending from the surface of the Earth to the top of the atmosphere. Snow (aggregated + ice crystals) is not included in this parameter.

This parameter represents + the area averaged value for a model + grid box.

Clouds contain a continuum of different- sized water droplets + and ice particles. The ECMWF Integrated Forecasting System (IFS) cloud scheme + simplifies this to represent a number of discrete cloud droplets/particles including: + cloud water droplets, raindrops, ice crystals and snow (aggregated ice crystals). + The processes of droplet formation, phase transition and aggregation are also + highly simplified in the IFS.' + access_ids: + - dissemination + origin_ids: + - -20 + - 0 + - 34 + - 98 +- id: 80 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 81 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 82 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 83 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 84 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 85 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 86 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 87 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 88 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 89 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 90 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 91 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 92 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 93 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 94 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 95 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 96 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 97 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 98 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 99 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 100 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 101 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 102 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 103 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 104 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 105 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 106 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 107 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 108 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 109 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 110 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 111 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 112 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 113 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 114 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 115 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 116 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 117 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 118 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 119 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 120 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 121 + shortname: mx2t6 + longname: Maximum temperature at 2 metres in the last 6 hours + units: K + description: The highest value of 2 metre temperature in the previous 6 hour period.

2m + temperature is calculated by interpolating between the lowest model level and + the Earth's surface, taking account of the atmospheric conditions. See further + information.

This parameter has units of kelvin (K). Temperature + measured in kelvin can be converted to degrees Celsius (°C) by subtracting + 273.15. + access_ids: + - dissemination + origin_ids: + - -40 + - -30 + - 0 + - 98 +- id: 122 + shortname: mn2t6 + longname: Minimum temperature at 2 metres in the last 6 hours + units: K + description: The lowest value of 2 metre temperature in the previous 6 hour period.

2m + temperature is calculated by interpolating between the lowest model level and + the Earth's surface, taking account of the atmospheric conditions. See further + information.

This parameter has units of kelvin (K). Temperature + measured in kelvin can be converted to degrees Celsius (°C) by subtracting + 273.15. + access_ids: + - dissemination + origin_ids: + - -40 + - -30 + - 0 + - 98 +- id: 123 + shortname: 10fg6 + longname: Maximum 10 metre wind gust in the last 6 hours + units: m s**-1 + description: This parameter is the maximum wind gust in the last 6 hours at a height + of ten metres above the surface of the Earth.

The WMO defines a wind + gust as the maximum of the wind averaged over 3 second intervals. This duration + is shorter than a model + time step, and so the ECMWF Integrated Forecasting System deduces the magnitude + of a gust within each time step from the time-step-averaged surface stress, surface + friction, wind shear and stability. Then, the maximum wind gust is selected from + the gusts at each time step during the last 6 hours.

Care should be taken + when comparing model parameters with observations, because observations are often + local to a particular point in space and time, rather than representing averages + over a model + grid box and model time step. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 124 + shortname: emis + longname: Surface emissivity + units: Proportion + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 125 + shortname: vite + longname: Vertically integrated total energy + units: J m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 126 + shortname: '~' + longname: Generic parameter for sensitive area prediction + units: Various + description: Originating centre dependent + access_ids: [] + origin_ids: + - 98 +- id: 127 + shortname: at + longname: Atmospheric tide + units: '~' + description: Not GRIB data (pseudo-GRIB) + access_ids: [] + origin_ids: + - 98 +- id: 128 + shortname: bv + longname: Budget values + units: '~' + description: Not GRIB data (pseudo-GRIB) + access_ids: [] + origin_ids: + - 98 +- id: 129 + shortname: z + longname: Geopotential + units: m**2 s**-2 + description:

This parameter is the gravitational potential energy of a unit mass, + at a particular location, relative to mean sea level. It is also the amount of + work that would have to be done, against the force of gravity, to lift a unit + mass to that location from mean sea level.

The geopotential height can + be calculated by dividing the geopotential by the Earth's gravitational acceleration, + g (=9.80665 m s-2). The geopotential height plays an important role in synoptic + meteorology (analysis of weather patterns). Charts of geopotential height plotted + at constant pressure levels (e.g., 300, 500 or 850 hPa) can be used to identify + weather systems such as cyclones, anticyclones, troughs and ridges.

At + the surface of the Earth, this parameter shows the variations in geopotential + (height) of the surface, and is often referred to as the orography.

+ access_ids: + - dissemination + origin_ids: + - -80 + - -20 + - 0 + - 34 + - 98 +- id: 130 + shortname: t + longname: Temperature + units: K + description:

This parameter is the temperature in the atmosphere.

It has + units of kelvin (K). Temperature measured in kelvin can be converted to degrees + Celsius (°C) by subtracting 273.15.

This parameter is available on multiple + levels through the atmosphere.

+ access_ids: + - dissemination + origin_ids: + - -80 + - -20 + - 0 + - 34 + - 98 +- id: 131 + shortname: u + longname: U component of wind + units: m s**-1 + description:

This parameter is the eastward component of the wind. It is the + horizontal speed of air moving towards the east, in metres per second. A negative + sign thus indicates air movement towards the west.

This parameter can be + combined with the V component of wind to give the speed and direction of the horizontal + wind.

+ access_ids: + - dissemination + origin_ids: + - -90 + - -60 + - -20 + - 0 + - 34 + - 98 +- id: 132 + shortname: v + longname: V component of wind + units: m s**-1 + description:

This parameter is the northward component of the wind. It is the + horizontal speed of air moving towards the north, in metres per second. A negative + sign thus indicates air movement towards the south.

This parameter can + be combined with the U component of wind to give the speed and direction of the + horizontal wind.

+ access_ids: + - dissemination + origin_ids: + - -90 + - -60 + - -20 + - 0 + - 34 + - 98 +- id: 133 + shortname: q + longname: Specific humidity + units: kg kg**-1 + description:

This parameter is the mass of water vapour per kilogram of moist + air.

The total mass of moist air is the sum of the dry air, water vapour, + cloud liquid, cloud ice, rain and falling snow.

+ access_ids: + - dissemination + origin_ids: + - -80 + - -20 + - 0 + - 34 + - 98 +- id: 134 + shortname: sp + longname: Surface pressure + units: Pa + description: This parameter is the pressure (force per unit area) of the atmosphere + on the surface of land, sea and in-land water.

It is a measure of the + weight of all the air in a column vertically above the area of the Earth's surface + represented at a fixed point.

Surface pressure is often used in combination + with temperature to calculate air density.

The strong variation of pressure + with altitude makes it difficult to see the low and high pressure systems over + mountainous areas, so mean sea level pressure, rather than surface pressure, is + normally used for this purpose.

The units of this parameter are Pascals + (Pa). Surface pressure is often measured in hPa and sometimes is presented in + the old units of millibars, mb (1 hPa = 1 mb= 100 Pa). + access_ids: + - dissemination + origin_ids: + - -20 + - 0 + - 34 + - 98 +- id: 135 + shortname: w + longname: Vertical velocity + units: Pa s**-1 + description: This parameter is the speed of air motion in the upward or downward + direction. The ECMWF Integrated Forecasting System (IFS) uses a pressure based + vertical co-ordinate system and pressure decreases with height, therefore negative + values of vertical velocity indicate upward motion.

Vertical velocity + can be useful to understand the large-scale dynamics of the atmosphere, including + areas of upward motion/ascent (negative values) and downward motion/subsidence + (positive values). + access_ids: + - dissemination + origin_ids: + - -80 + - 0 + - 34 + - 98 +- id: 136 + shortname: tcw + longname: Total column water + units: kg m**-2 + description: This parameter is the sum of water vapour, liquid water, cloud ice, + rain and snow in a column extending from the surface of the Earth to the top of + the atmosphere. In old versions of the ECMWF model (IFS), rain and snow were not + accounted for. + access_ids: + - dissemination + origin_ids: + - -40 + - 0 + - 98 +- id: 137 + shortname: tcwv + longname: Total column vertically-integrated water vapour + units: kg m**-2 + description: This parameter is the total amount of water vapour in a column extending + from the surface of the Earth to the top of the atmosphere.

This parameter + represents the area averaged value for a grid + box. + access_ids: + - dissemination + origin_ids: + - 0 + - 34 + - 98 +- id: 138 + shortname: vo + longname: Vorticity (relative) + units: s**-1 + description: This parameter is a measure of the rotation of air in the horizontal, + around a vertical axis, relative to a fixed point on the surface of the Earth.

On + the scale of weather systems, troughs (weather features that can include rain) + are associated with anticlockwise rotation (in the northern hemisphere), and ridges + (weather features that bring light or still winds) are associated with clockwise + rotation.

Adding the rotation of the Earth, the so-called Coriolis parameter, + to the relative vorticity produces the absolute vorticity. + access_ids: + - dissemination + origin_ids: + - -80 + - 0 + - 34 + - 98 +- id: 139 + shortname: stl1 + longname: Soil temperature level 1 + units: K + description: 'This parameter is the temperature of the soil at level 1 (in the middle + of layer 1).

The ECMWF Integrated Forecasting System (IFS) has a four-layer + representation of soil, where the surface is at 0cm:

Layer 1: 0 - 7cm +
Layer 2: 7 - 28cm
Layer 3: 28 - 100cm
Layer 4: 100 - 289cm

Soil + temperature is set at the middle of each layer, and heat transfer is calculated + at the interfaces between them. It is assumed that there is no heat transfer out + of the bottom of the lowest layer.

This parameter has units of Kelvin + (K). Temperature measured in Kelvin can be converted to degrees Celsius (°C) + by subtracting 273.15.

See + further information.' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 140 + shortname: swl1 + longname: Soil wetness level 1 + units: m of water equivalent + description: Old field, layer 1-7 cm (new soil moisture is archived as field 39). + Surface soil wetness (SSW) before 19930804 + access_ids: [] + origin_ids: + - 98 +- id: 141 + shortname: sd + longname: Snow depth + units: m of water equivalent + description: "This parameter is the depth of snow from the snow-covered area of\ + \ a \ + \ grid box.

Its units are metres of water equivalent, so it is the\ + \ depth the water would have if the snow melted and was spread evenly over the\ + \ whole grid box. The ECMWF Integrated Forecast System represents snow as a single\ + \ additional layer over the uppermost soil level. The snow may cover all or part\ + \ of the grid box.

\ + \ See further information.\r\n\r\n[NOTE: See 228141 for the equivalent parameter\ + \ in \"kg m-2\"]" + access_ids: + - dissemination + origin_ids: + - -90 + - -80 + - -70 + - -50 + - 98 +- id: 142 + shortname: lsp + longname: Large-scale precipitation + units: m + description: 'This parameter is the accumulated liquid and frozen water, comprising + rain and snow, that falls to the Earth''s surface and which is generated by the + cloud scheme in the ECMWF Integrated Forecasting System (IFS). The cloud scheme + represents the formation and dissipation of clouds and large-scale precipitation + due to changes in atmospheric quantities (such as pressure, temperature and moisture) + predicted directly by the IFS at spatial scales of the grid + box or larger. Precipitation can also be generated by the convection scheme + in the IFS, which represents convection at spatial scales smaller than the grid + box. See + further information. This parameter does not include fog, dew or the precipitation + that evaporates in the atmosphere before it lands at the surface of the Earth. +

This parameter is the total amount of water accumulated + over a particular time period which depends on the data extracted. The units + of this parameter are depth in metres of water equivalent. It is the depth the + water would have if it were spread evenly over the grid box.

Care should + be taken when comparing model parameters with observations, because observations + are often local to a particular point in space and time, rather than representing + averages over a model grid box. + +
[NOTE: See 3062 for the equivalent parameter in "kg m-2"]' + access_ids: + - dissemination + origin_ids: + - -80 + - -70 + - -50 + - 98 +- id: 143 + shortname: cp + longname: Convective precipitation + units: m + description: 'This parameter is the accumulated liquid and frozen water, comprising + rain and snow, that falls to the Earth''s surface and which is generated by the + convection scheme in the ECMWF Integrated Forecasting System (IFS). The convection + scheme represents convection at spatial scales smaller than the grid + box. Precipitation can also be generated by the cloud scheme in the IFS, which + represents the formation and dissipation of clouds and large-scale precipitation + due to changes in atmospheric quantities (such as pressure, temperature and moisture) + predicted directly at spatial scales of the grid box or larger. See + further information. This parameter does not include fog, dew or the precipitation + that evaporates in the atmosphere before it lands at the surface of the Earth. +

This parameter is the total amount of water accumulated + over a particular time period which depends on the data extracted. The units + of this parameter are depth in metres of water equivalent. It is the depth the + water would have if it were spread evenly over the grid box.

Care should + be taken when comparing model parameters with observations, because observations + are often local to a particular point in space and time, rather than representing + averages over a model grid box. + +
[NOTE: See 228143 for the equivalent parameter in "kg m-2"]' + access_ids: + - dissemination + origin_ids: + - -80 + - -70 + - -50 + - 98 +- id: 144 + shortname: sf + longname: Snowfall + units: m of water equivalent + description: 'This parameter is the accumulated snow that falls to the Earth''s + surface. It is the sum of large-scale snowfall and convective snowfall. Large-scale + snowfall is generated by the cloud scheme in the ECMWF Integrated Forecasting + System (IFS). The cloud scheme represents the formation and dissipation of clouds + and large-scale precipitation due to changes in atmospheric quantities (such as + pressure, temperature and moisture) predicted directly by the IFS at spatial scales + of the grid + box or larger. Convective snowfall is generated by the convection scheme in + the IFS, which represents convection at spatial scales smaller than the grid box. + See + further information.

This parameter is the total amount of water + accumulated + over a particular time period which depends on the data extracted. The units + of this parameter are depth in metres of water equivalent. It is the depth the + water would have if it were spread evenly over the grid box.

Care should + be taken when comparing model parameters with observations, because observations + are often local to a particular point in space and time, rather than representing + averages over a model grid box. + +
[NOTE: See 228144 for the equivalent parameter in "kg m-2"]' + access_ids: + - dissemination + origin_ids: + - -90 + - -80 + - -70 + - -50 + - 98 +- id: 145 + shortname: bld + longname: Time-integrated boundary layer dissipation + units: J m**-2 + description:

This parameter is the amount of energy per unit area that is converted + from kinetic energy, into heat, due to small-scale motion in the lower levels + of the atmosphere. These small-scale motions are called eddies or turbulence. + A higher value of this parameter means that more energy is being converted to + heat, and so the mean flow is slowing more and the air temperature is rising by + a greater amount. 

This parameter is accumulated over a particular + time period which depends on the data extracted.

+ access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 146 + shortname: sshf + longname: Time-integrated surface sensible heat net flux + units: J m**-2 + description:

This parameter is the transfer of heat between the Earth's surface + and the atmosphere through the effects of turbulent air motion (but excluding + any heat transfer resulting from condensation or evaporation).

The magnitude + of the sensible heat flux is governed by the difference in temperature between + the surface and the overlying atmosphere, wind speed and the surface roughness. + For example, cold air overlying a warm surface would produce a sensible heat flux + from the land (or ocean) into the atmosphere. + See further documentation 

This is a single level parameter and + it is accumulated over a particular + time period which depends on the data extracted.The units are joules per square + metre (J m-2). To convert to watts per square metre (W m-2), the accumulated values + should be divided by the accumulation period expressed in seconds. The ECMWF convention + for vertical fluxes is positive downwards.

+ access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 147 + shortname: slhf + longname: Time-integrated surface latent heat net flux + units: J m**-2 + description:

This parameter is the transfer of latent heat (resulting from water + phase changes, such as evaporation or condensation) between the Earth's surface + and the atmosphere through the effects of turbulent air motion. Evaporation from + the Earth's surface represents a transfer of energy from the surface to the atmosphere. + See + further documentation

This parameter is accumulated over a particular + time period which depends on the data extracted.The units are joules per square + metre (J m-2). To convert to watts per square metre (W m-2), the accumulated values + should be divided by the accumulation period expressed in seconds.

The + ECMWF convention for vertical fluxes is positive downwards.

+ access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 148 + shortname: chnk + longname: Charnock + units: Numeric + description: "This parameter accounts for increased aerodynamic roughness as wave\ + \ heights grow due to increasing surface stress. It depends on the wind speed,\ + \ wave age and other aspects of the sea state and is used to calculate how much\ + \ the waves slow down the wind.

When the atmospheric model is run without\ + \ the ocean model, this parameter has a constant value of 0.018. When the atmospheric\ + \ model is coupled to the ocean model, this parameter is calculated by the ECMWF\ + \ Wave Model.\r\n
" + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 149 + shortname: snr + longname: Surface net radiation (SW and LW) + units: J m**-2 + description: Accumulated field + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 150 + shortname: tnr + longname: Top net radiation (SW and LW) + units: J m**-2 + description: Accumulated field + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 151 + shortname: msl + longname: Mean sea level pressure + units: Pa + description: This parameter is the pressure (force per unit area) of the atmosphere + adjusted to the height of mean sea level.

It is a measure of the weight + that all the air in a column vertically above the area of Earth's surface would + have at that point, if the point were located at the mean sea level. It is calculated + over all surfaces - land, sea and in-land water.

Maps of mean sea level + pressure are used to identify the locations of low and high pressure systems, + often referred to as cyclones and anticyclones. Contours of mean sea level pressure + also indicate the strength of the wind. Tightly packed contours show stronger + winds.

The units of this parameter are pascals (Pa). Mean sea level + pressure is often measured in hPa and sometimes is presented in the old units + of millibars, mb (1 hPa = 1 mb = 100 Pa). + access_ids: + - dissemination + origin_ids: + - -20 + - 0 + - 34 + - 98 +- id: 152 + shortname: lnsp + longname: Logarithm of surface pressure + units: Numeric + description: This parameter is the natural logarithm of pressure (force per unit + area) of the atmosphere on the surface of land, sea and inland water. Numerical + weather prediction models often utilise the logarithm of surface pressure in their + calculations. + access_ids: + - dissemination + origin_ids: + - -80 + - -60 + - -50 + - 98 +- id: 153 + shortname: swhr + longname: Short-wave heating rate + units: K + description: Accumulated field + access_ids: [] + origin_ids: + - 98 +- id: 154 + shortname: lwhr + longname: Long-wave heating rate + units: K + description: Accumulated field + access_ids: [] + origin_ids: + - 98 +- id: 155 + shortname: d + longname: Divergence + units: s**-1 + description: This parameter is the horizontal divergence of velocity. It is the + rate at which air is spreading out horizontally from a point, per square metre. This + parameter is positive for air that is spreading out, or diverging, and negative + for the opposite, for air that is concentrating, or converging (convergence). + access_ids: + - dissemination + origin_ids: + - -80 + - 0 + - 34 + - 98 +- id: 156 + shortname: gh + longname: Geopotential height + units: gpm + description: This parameter is a measure of the height of a point in the atmosphere + in relation to its potential energy. It is calculated by dividing the geopotential + by the Earth's mean gravitational acceleration, g (=9.80665 m s-2). The geopotential + is the gravitational potential energy of a unit mass, at a particular location, + relative to mean sea level. Geopotential is also the amount of work that would + have to be done, against the force of gravity, to lift a unit mass to that location + from mean sea level.

This parameter plays an important role in synoptic + meteorology (analysis of weather patterns). Charts of geopotential height plotted + at constant pressure levels (e.g., 300, 500 or 850 hPa) can be used to identify + weather systems such as cyclones, anticyclones, troughs and ridges. At the surface + of the Earth, this parameter shows the variations in geopotential height of the + surface, and is often referred to as the orography.

The units of this + parameter are geopotential metres. A geopotential metre is approximately 2% shorter + than a geometric metre. + access_ids: + - dissemination + origin_ids: + - 0 + - 34 + - 98 +- id: 157 + shortname: r + longname: Relative humidity + units: '%' + description: This parameter is the water vapour pressure as a percentage of the + value at which the air becomes saturated (the point at which water vapour begins + to condense into liquid water or deposition into ice).

For temperatures + over 0°C (273.15 K) it is calculated for saturation over water. At temperatures + below -23°C it is calculated for saturation over ice. Between -23°C and + 0°C this parameter is calculated by interpolating between the ice and water + values using a quadratic function.

See + more information about the model's relative humidity calculation. + access_ids: + - dissemination + origin_ids: + - -20 + - 0 + - 34 + - 98 +- id: 158 + shortname: tsp + longname: Tendency of surface pressure + units: Pa s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 159 + shortname: blh + longname: Boundary layer height + units: m + description: This parameter is the depth of air next to the Earth's surface which + is most affected by the resistance to the transfer of momentum, heat or moisture + across the surface.

The boundary layer height can be as low as a few + tens of metres, such as in cooling air at night, or as high as several kilometres + over the desert in the middle of a hot sunny day. When the boundary layer height + is low, higher concentrations of pollutants (emitted from the Earth's surface) + can develop.

The boundary layer height calculation is based on the bulk + Richardson number (a measure of the atmospheric conditions) following the conclusions + of a 2012 review. + See further information. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 160 + shortname: sdor + longname: Standard deviation of sub-gridscale orography + units: m + description: This parameter is one of four parameters (the others being angle of + sub-gridscale orography, slope and anisotropy) that describe the features of the + orography that are too small to be resolved by the + model grid. These four parameters are calculated for orographic features with + horizontal scales comprised between 5 km and the model grid resolution, being + derived from the height of valleys, hills and mountains at about 1 km resolution. + They are used as input for the sub-grid orography scheme which represents low-level + blocking and orographic gravity wave effects.

This parameter represents + the standard deviation of the height of the sub-grid valleys, hills and mountains + within a grid box. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 161 + shortname: isor + longname: Anisotropy of sub-gridscale orography + units: Numeric + description: This parameter is one of four parameters (the others being standard + deviation, slope and angle of sub-gridscale orography) that describe the features + of the orography that are too small to be resolved by the + model grid. These four parameters are calculated for orographic features with + horizontal scales comprised between 5 km and the model grid resolution, being + derived from the height of valleys, hills and mountains at about 1 km resolution. + They are used as input for the sub-grid orography scheme which represents low-level + blocking and orographic gravity wave effects.

This parameter is a measure + of how much the shape of the terrain in the horizontal plane (from a bird's-eye + view) is distorted from a circle.

A value of one is a circle, less than + one an ellipse, and 0 is a ridge. In the case of a ridge, wind blowing parallel + to it does not exert any drag on the flow, but wind blowing perpendicular to it + exerts the maximum drag. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 162 + shortname: anor + longname: Angle of sub-gridscale orography + units: radians + description: This parameter is one of four parameters (the others being standard + deviation, slope and anisotropy) that describe the features of the orography that + are too small to be resolved by the + model grid. These four parameters are calculated for orographic features with + horizontal scales comprised between 5 km and the model grid resolution, being + derived from the height of valleys, hills and mountains at about 1 km resolution. + They are used as input for the sub-grid orography scheme which represents low-level + blocking and orographic gravity wave effects.

The angle of the sub-grid + scale orography characterises the geographical orientation of the terrain in the + horizontal plane (from a bird's-eye view) relative to an eastwards axis. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 163 + shortname: slor + longname: Slope of sub-gridscale orography + units: Numeric + description: This parameter is one of four parameters (the others being standard + deviation, angle and anisotropy) that describe the features of the orography that + are too small to be resolved by the + model grid. These four parameters are calculated for orographic features with + horizontal scales comprised between 5 km and the model grid resolution, being + derived from the height of valleys, hills and mountains at about 1 km resolution. + They are used as input for the sub-grid orography scheme which represents low-level + blocking and orographic gravity wave effects.

This parameter represents + the slope of the sub-grid valleys, hills and mountains. A flat surface has a value + of 0, and a 45 degree slope has a value of 0.5. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 164 + shortname: tcc + longname: Total cloud cover + units: (0 - 1) + description: 'This parameter is the proportion of a + grid box covered by cloud. Total cloud cover is a single level field calculated + from the cloud occurring at different model levels through the atmosphere. Assumptions + are made about the degree of overlap/randomness between clouds at different heights.

Cloud + fractions vary from 0 to 1. + +
[NOTE: See 228164 for the equivalent parameter in "%"]' + access_ids: + - dissemination + origin_ids: + - -90 + - -80 + - -70 + - -50 + - 98 +- id: 165 + shortname: 10u + longname: 10 metre U wind component + units: m s**-1 + description: This parameter is the eastward component of the 10m wind. It is the + horizontal speed of air moving towards the east, at a height of ten metres above + the surface of the Earth, in metres per second.

Care should be taken + when comparing this parameter with observations, because wind observations vary + on small space and time scales and are affected by the local terrain, vegetation + and buildings that are represented only on average in the ECMWF Integrated Forecasting + System.

This parameter can be combined with the V component of 10m wind + to give the speed and direction of the horizontal 10m wind. + access_ids: + - dissemination + origin_ids: + - -20 + - 0 + - 34 + - 98 +- id: 166 + shortname: 10v + longname: 10 metre V wind component + units: m s**-1 + description: This parameter is the northward component of the 10m wind. It is the + horizontal speed of air moving towards the north, at a height of ten metres above + the surface of the Earth, in metres per second.

Care should be taken + when comparing this parameter with observations, because wind observations vary + on small space and time scales and are affected by the local terrain, vegetation + and buildings that are represented only on average in the ECMWF Integrated Forecasting + System.

This parameter can be combined with the U component of 10m wind + to give the speed and direction of the horizontal 10m wind. + access_ids: + - dissemination + origin_ids: + - -20 + - 0 + - 34 + - 98 +- id: 167 + shortname: 2t + longname: 2 metre temperature + units: K + description: This parameter is the temperature of air at 2m above the surface of + land, sea or in-land waters.

2m temperature is calculated by interpolating + between the lowest model level and the Earth's surface, taking account of the + atmospheric conditions. + See further information .

This parameter has units of kelvin (K). + Temperature measured in kelvin can be converted to degrees Celsius (°C) by subtracting + 273.15.

Please note that the encodings listed here for s2s & uerra (which + includes encodings for carra/cerra) include entries for Mean 2 metre temperature. + The specific encoding for Mean 2 metre temperature can be found in 228004. + access_ids: + - dissemination + origin_ids: + - -40 + - -30 + - -20 + - 0 + - 34 + - 98 +- id: 168 + shortname: 2d + longname: 2 metre dewpoint temperature + units: K + description: This parameter is the temperature to which the air, at 2 metres above + the surface of the Earth, would have to be cooled for saturation to occur.

It + is a measure of the humidity of the air. Combined with temperature and pressure, + it can be used to calculate the relative humidity.

2m dew point temperature + is calculated by interpolating between the lowest model level and the Earth's + surface, taking account of the atmospheric conditions. + See further information.This parameter has units of kelvin (K). Temperature + measured in kelvin can be converted to degrees Celsius (°C) by subtracting + 273.15. + access_ids: + - dissemination + origin_ids: + - -40 + - -30 + - 0 + - 98 +- id: 169 + shortname: ssrd + longname: Surface short-wave (solar) radiation downwards + units: J m**-2 + description: This parameter is the amount of solar radiation (also known as shortwave + radiation) that reaches a horizontal plane at the surface of the Earth. This parameter + comprises both direct and diffuse solar radiation.

Radiation from the + Sun (solar, or shortwave, radiation) is partly reflected back to space by clouds + and particles in the atmosphere (aerosols) and some of it is absorbed. The rest + is incident on the Earth's surface (represented by this parameter). See + further documentation.

To a reasonably good approximation, this + parameter is the model equivalent of what would be measured by a pyranometer (an + instrument used for measuring solar radiation) at the surface. However, care should + be taken when comparing model parameters with observations, because observations + are often local to a particular point in space and time, rather than representing + averages over a model + grid box.

This parameter is accumulated + over a particular time period which depends on the data extracted. The units + are joules per square metre (J m-2). To convert to watts per square + metre (W m-2), the accumulated values should be divided by the accumulation + period expressed in seconds. The ECMWF convention for vertical fluxes is positive + downwards. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 170 + shortname: stl2 + longname: Soil temperature level 2 + units: K + description: 'This parameter is the temperature of the soil at level 2 (in the middle + of layer 2).

The ECMWF Integrated Forecasting System (IFS) has a four-layer + representation of soil, where the surface is at 0cm:

Layer 1: 0 - 7cm +
Layer 2: 7 - 28cm
Layer 3: 28 - 100cm
Layer 4: 100 - 289cm

Soil + temperature is set at the middle of each layer, and heat transfer is calculated + at the interfaces between them. It is assumed that there is no heat transfer out + of the bottom of the lowest layer.

This parameter has units of Kelvin + (K). Temperature measured in Kelvin can be converted to degrees Celsius (°C) + by subtracting 273.15.

See + further information.' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171 + shortname: swl2 + longname: Soil wetness level 2 + units: m of water equivalent + description: Old field Layer 7-28 cm (new soil moisture is archived as field 40). + Deep soil wetness (DSW) before 19930804. Water column scaled to depth of surf + layer (7 cm). + access_ids: [] + origin_ids: + - 98 +- id: 172 + shortname: lsm + longname: Land-sea mask + units: (0 - 1) + description: 'This parameter is the proportion of land, as opposed to ocean or inland + waters (lakes, reservoirs, rivers and coastal waters), in a grid + box.
+ + This parameter has values ranging between zero and one and is dimensionless.
+ + In cycles of the ECMWF Integrated Forecasting System (IFS) from CY41R1 (introduced + in May 2015) onwards, grid boxes where this parameter has a value above 0.5 can + be comprised of a mixture of land and inland water but not ocean. Grid boxes with + a value of 0.5 and below can only be comprised of a water surface. In the latter + case, the lake cover is used to determine how much of the water surface is ocean + or inland water. + +
In cycles of the IFS before CY41R1, grid boxes where this parameter has a + value above 0.5 can only be comprised of land and those grid boxes with a value + of 0.5 and below can only be comprised of ocean. In these older model cycles, + there is no differentiation between ocean and inland water.' + access_ids: + - dissemination + origin_ids: + - 0 + - 34 + - 98 +- id: 173 + shortname: sr + longname: Surface roughness (climatological) + units: m + description: Aerodynamic roughness length (over land). Climatological field. + access_ids: + - dissemination + origin_ids: + - -20 + - 0 + - 34 + - 98 +- id: 174 + shortname: al + longname: Albedo (climatological) + units: (0 - 1) + description: 'This parameter is a measure of the reflectivity of the Earth''s surface. + It is the fraction of solar (shortwave) radiation reflected by Earth''s surface, + across the solar spectrum, for both direct and diffuse radiation.

This + parameter is a climatological (observed values averaged over a period of several + years) background albedo which varies through the year and which excludes values + over snow and sea-ice. Over land, values are typically between about 0.1 and 0.4 + and the ocean has low values of 0.1 or less.

Note: this parameter is + a very old broadband albedo climatology that has since been replaced by a MODIS + climatology in two spectral bands (see parameters 210186 to 210191).

Radiation + from the Sun (also known as solar, or shortwave, radiation) is partly reflected + back to space by clouds and particles in the atmosphere (aerosols) and some of + it is absorbed. The rest is incident on the Earth''s surface, where some of it + is reflected. The portion that is reflected by the Earth''s surface depends on + the albedo. + See further documentation.

This parameter is calculated as a fraction + (0 - 1), but albedo is sometimes shown as a percentage (%).' + access_ids: + - dissemination + origin_ids: + - -80 + - -50 + - 98 +- id: 175 + shortname: strd + longname: Surface long-wave (thermal) radiation downwards + units: J m**-2 + description: This parameter is the amount of thermal (also known as longwave or + terrestrial) radiation emitted by the atmosphere and clouds that reaches a horizontal + plane at the surface of the Earth.

The surface of the Earth emits thermal + radiation, some of which is absorbed by the atmosphere and clouds. The atmosphere + and clouds likewise emit thermal radiation in all directions, some of which reaches + the surface (represented by this parameter). See + further documentation.

This parameter is accumulated + over a particular time period which depends on the data extracted. The units + are joules per square metre (J m-2). To convert to watts per square + metre (W m-2), the accumulated values should be divided by the accumulation + period expressed in seconds. The ECMWF convention for vertical fluxes is positive + downwards. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 176 + shortname: ssr + longname: Surface net short-wave (solar) radiation + units: J m**-2 + description: This parameter is the amount of solar radiation (also known as shortwave + radiation) that reaches a horizontal plane at the surface of the Earth (both direct + and diffuse) minus the amount reflected by the Earth's surface (which is governed + by the albedo).

Radiation from the Sun (solar, or shortwave, radiation) + is partly reflected back to space by clouds and particles in the atmosphere (aerosols) + and some of it is absorbed. The remainder is incident on the Earth's surface, + where some of it is reflected. See + further documentation.

This parameter is accumulated + over a particular time period which depends on the data extracted. The units + are joules per square metre (J m-2). To convert to watts per square + metre (W m-2), the accumulated values should be divided by the accumulation + period expressed in seconds. The ECMWF convention for vertical fluxes is positive + downwards. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 177 + shortname: str + longname: Surface net long-wave (thermal) radiation + units: J m**-2 + description: Thermal radiation (also known as longwave or terrestrial radiation) + refers to radiation emitted by the atmosphere, clouds and the surface of the Earth. + This parameter is the difference between downward and upward thermal radiation + at the surface of the Earth. It the amount passing through a horizontal plane.

The + atmosphere and clouds emit thermal radiation in all directions, some of which + reaches the surface as downward thermal radiation. The upward thermal radiation + at the surface consists of thermal radiation emitted by the surface plus the fraction + of downwards thermal radiation reflected upward by the surface. See + further documentation.

This parameter is accumulated + over a particular time period which depends on the data extracted. The units + are joules per square metre (J m-2). To convert to watts per square metre (W m-2), + the accumulated values should be divided by the accumulation period expressed + in seconds.

The ECMWF convention for vertical fluxes is positive downwards. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 178 + shortname: tsr + longname: Top net short-wave (solar) radiation + units: J m**-2 + description: This parameter is the incoming solar radiation (also known as shortwave + radiation) minus the outgoing solar radiation at the top of the atmosphere. It + is the amount of radiation passing through a horizontal plane. The incoming solar + radiation is the amount received from the Sun. The outgoing solar radiation is + the amount reflected and scattered by the Earth's atmosphere and surface. See + further documentation.

This parameter is accumulated + over a particular time period which depends on the data extracted. The units + are joules per square metre (J m-2). To convert to watts per square metre (W m-2), + the accumulated values should be divided by the accumulation period expressed + in seconds.

The ECMWF convention for vertical fluxes is positive downwards. + access_ids: + - dissemination + origin_ids: + - -20 + - 0 + - 98 +- id: 179 + shortname: ttr + longname: Top net long-wave (thermal) radiation + units: J m**-2 + description: The thermal (also known as terrestrial or longwave) radiation emitted + to space at the top of the atmosphere is commonly known as the Outgoing Longwave + Radiation (OLR). The top net thermal radiation (this parameter) is equal to the + negative of OLR. See + further documentation.

This parameter is accumulated + over a particular time period which depends on the data extracted. The units + are joules per square metre (J m-2). To convert to watts per square + metre (W m-2), the accumulated values should be divided by the accumulation + period expressed in seconds.The ECMWF convention for vertical fluxes is positive + downwards. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 180 + shortname: ewss + longname: Time-integrated eastward turbulent surface stress + units: N m**-2 s + description: Air flowing over a surface exerts a stress that transfers momentum + to the surface and slows the wind. This parameter is the accumulated stress on + the Earth's surface in the eastward direction due to both the turbulent interactions + between the atmosphere and the surface, and to turbulent orographic form drag. + The turbulent interactions between the atmosphere and the surface are due to the + roughness of the surface. The turbulent orographic form drag is the stress due + to the valleys, hills and mountains on horizontal scales below 5km being derived + from land surface data at about 1 km resolution. See + further information.

Positive (negative) values denote stress in + the eastward (westward) direction.

This parameter is accumulated + over a particular time period which depends on the data extracted. + access_ids: + - dissemination + origin_ids: + - -40 + - 0 + - 98 +- id: 181 + shortname: nsss + longname: Time-integrated northward turbulent surface stress + units: N m**-2 s + description: Air flowing over a surface exerts a stress that transfers momentum + to the surface and slows the wind. This parameter is the accumulated stress on + the Earth's surface in the northward direction due to both the turbulent interactions + between the atmosphere and the surface, and to turbulent orographic form drag. +

The turbulent interactions between the atmosphere and the surface are + due to the roughness of the surface.

The turbulent orographic form drag + is the stress due to the valleys, hills and mountains on horizontal scales below + 5km being derived from land surface data at about 1 km resolution. See + further information.

Positive (negative) values denote stress in + the northward (southward) direction.

This parameter is accumulated + over a particular time period which depends on the data extracted. + access_ids: + - dissemination + origin_ids: + - -40 + - 0 + - 98 +- id: 182 + shortname: e + longname: Evaporation + units: m of water equivalent + description: 'This parameter is the accumulated amount of water that has evaporated + from the Earth''s surface, including a simplified representation of transpiration + (from vegetation), into vapour in the air above.

This parameter is accumulated + over a + particular time period which depends on the data extracted.

The ECMWF + Integrated Forecasting System convention is that downward fluxes are positive. + Therefore, negative values indicate evaporation and positive values indicate condensation. + +
[NOTE: See 260259 for the equivalent parameter in "kg m-2"]' + access_ids: + - dissemination + origin_ids: + - -90 + - -80 + - -70 + - -50 + - 0 + - 98 +- id: 183 + shortname: stl3 + longname: Soil temperature level 3 + units: K + description: 'This parameter is the temperature of the soil at level 3 (in the middle + of layer 3).

The ECMWF Integrated Forecasting System (IFS) has a four-layer + representation of soil, where the surface is at 0cm:

Layer 1: 0 - 7cm +
Layer 2: 7 - 28cm
Layer 3: 28 - 100cm
Layer 4: 100 - 289cm

Soil + temperature is set at the middle of each layer, and heat transfer is calculated + at the interfaces between them. It is assumed that there is no heat transfer out + of the bottom of the lowest layer.

This parameter has units of Kelvin + (K). Temperature measured in Kelvin can be converted to degrees Celsius (°C) + by subtracting 273.15.

See + further information.' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 184 + shortname: swl3 + longname: Soil wetness level 3 + units: m of water equivalent + description: Old field Layer 28-100 cm (new soil moisture is archived as field 41). + Climatological deep soil wetness (CDSW) before 19930804. Water column scaled to + depth of surf layer (7 cm). + access_ids: [] + origin_ids: + - 98 +- id: 185 + shortname: ccc + longname: Convective cloud cover + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 186 + shortname: lcc + longname: Low cloud cover + units: (0 - 1) + description: 'This parameter is the proportion of a + grid box covered by cloud occurring in the lower levels of the troposphere. + Low cloud is a single level field calculated from cloud occurring on model levels + with a pressure greater than 0.8 times the surface pressure. So, if the surface + pressure is 1000 hPa (hectopascal), low cloud would be calculated using levels + with a pressure greater than 800 hPa (below approximately 2km (assuming a ''standard + atmosphere'')).

The low cloud cover parameter is calculated from cloud + cover for the appropriate model levels as described above. Assumptions are made + about the degree of overlap/randomness between clouds in different model levels.

Cloud + fractions vary from 0 to 1. + +
[NOTE: See 3073 for the equivalent parameter in "%"]' + access_ids: + - dissemination + origin_ids: + - -90 + - -80 + - -70 + - -50 + - 98 +- id: 187 + shortname: mcc + longname: Medium cloud cover + units: (0 - 1) + description: 'This parameter is the proportion of a + grid box covered by cloud occurring in the middle levels of the troposphere. + Medium cloud is a single level field calculated from cloud occurring on model + levels with a pressure between 0.45 and 0.8 times the surface pressure. So, if + the surface pressure is 1000 hPa (hectopascal), medium cloud would be calculated + using levels with a pressure of less than or equal to 800 hPa and greater than + or equal to 450 hPa (between approximately 2km and 6km (assuming a ''standard + atmosphere'')).

The medium cloud parameter is calculated from cloud cover + for the appropriate model levels as described above. Assumptions are made about + the degree of overlap/randomness between clouds in different model levels.

Cloud + fractions vary from 0 to 1. + +
[NOTE: See 3074 for the equivalent parameter in "%"]' + access_ids: + - dissemination + origin_ids: + - -90 + - -80 + - -50 + - 98 +- id: 188 + shortname: hcc + longname: High cloud cover + units: (0 - 1) + description: 'The proportion of a grid + box covered by cloud occurring in the high levels of the troposphere. High + cloud is a single level field calculated from cloud occurring on model levels + with a pressure less than 0.45 times the surface pressure. So, if the surface + pressure is 1000 hPa (hectopascal), high cloud would be calculated using levels + with a pressure of less than 450 hPa (approximately 6km and above ( + assuming a `standard atmosphere`)).

The high cloud cover parameter + is calculated from cloud for the appropriate model levels as described above. + Assumptions are made about the degree of overlap/randomness between clouds in + different model levels.

Cloud fractions vary from 0 to 1. + +
[NOTE: See 3075 for the equivalent parameter in "%"]' + access_ids: + - dissemination + origin_ids: + - -90 + - -80 + - -50 + - 98 +- id: 189 + shortname: sund + longname: Sunshine duration + units: s + description: This parameter is the length of time in which the direct solar (shortwave) + radiation at the Earth's surface, falling on a plane perpendicular to the direction + of the Sun, is greater than or equal to 120 W m-2.

The minimum solar + intensity level of 120 W m-2 is defined by the World Meteorological Organisation + and is consistent with observed values of sunshine duration from a Campbell-Stokes + recorder (sometimes called a Stokes sphere) that can only measure moderately intense + sunlight and brighter.

This parameter is accumulated over a particular + time period which depends on the data extracted. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 190 + shortname: ewov + longname: East-West component of sub-gridscale orographic variance + units: m**2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 191 + shortname: nsov + longname: North-South component of sub-gridscale orographic variance + units: m**2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 192 + shortname: nwov + longname: North-West/South-East component of sub-gridscale orographic variance + units: m**2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 193 + shortname: neov + longname: North-East/South-West component of sub-gridscale orographic variance + units: m**2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 194 + shortname: btmp + longname: Brightness temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 + - 34 + - 98 +- id: 195 + shortname: lgws + longname: Eastward gravity wave surface stress + units: N m**-2 s + description: Air flowing over a surface exerts a stress that transfers momentum + to the surface and slows the wind. This parameter is the component of the surface + stress, in an eastward direction, associated with low-level blocking and orographic + gravity waves. It is calculated by the ECMWF Integrated Forecasting System sub-grid + orography scheme. It represents surface stress due to unresolved valleys, hills + and mountains with horizontal scales between 5 km and the + model grid. (The surface stress associated with orographic features with horizontal + scales smaller than 5 km is accounted for by the turbulent orographic form drag + scheme).

Orographic gravity waves are oscillations in the flow maintained + by the buoyancy of displaced air parcels, produced when the air is deflected upwards + by hills and mountains. Hills and mountains can also block the flow of air at + low levels. Together these processes can create a drag or stress on the atmosphere + at the Earth's surface (and at other levels in the atmosphere).

This + parameter is accumulated over a particular + time period which depends on the data extracted. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 196 + shortname: mgws + longname: Northward gravity wave surface stress + units: N m**-2 s + description: Air flowing over a surface exerts a stress that transfers momentum + to the surface and slows the wind. This parameter is the component of the surface + stress, in a northward direction, associated with low-level blocking and orographic + gravity waves. It is calculated by the ECMWF Integrated Forecasting System sub-grid + orography scheme. It represents surface stress due to unresolved valleys, hills + and mountains with horizontal scales between 5 km and the + model grid. (The surface stress associated with orographic features with horizontal + scales smaller than 5 km is accounted for by the turbulent orographic form drag + scheme). The stress computed in the sub-grid orography scheme is associated with + low-level blocking and orographic gravity waves.

Orographic gravity waves + are oscillations in the flow maintained by the buoyancy of displaced air parcels, + produced when the air is deflected upwards by hills and mountains. Hills and mountains + can also block the flow of air at low levels. Together these processes can create + a drag or stress on the atmosphere at the Earth's surface (and at other levels + in the atmosphere).

This parameter is accumulated over a particular + time period which depends on the data extracted. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 197 + shortname: gwd + longname: Gravity wave dissipation + units: J m**-2 + description: This parameter is the amount of energy per unit area that is converted + from kinetic energy in the mean flow, into heat, due to the effects of orographic + gravity waves. A higher value of this parameter means that more energy is being + converted to heat, and so the mean flow is slowing more and the air temperature + is rising by a greater amount.

Orographic gravity waves are oscillations + in the flow maintained by the buoyancy of displaced air parcels, produced when + the air is deflected upwards by hills and mountains. Hills and mountains can also + block the flow of air at low levels. Together these processes can create a drag + or stress on the atmosphere at the Earth's surface (and at other levels in the + atmosphere).

This parameter is accumulated over a particular + time period which depends on the data extracted. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 198 + shortname: src + longname: Skin reservoir content + units: m of water equivalent + description: This parameter is the amount of water in the vegetation canopy and/or + in a thin layer on the soil.

It represents the amount of rain intercepted + by foliage, and water from dew. The maximum amount of 'skin reservoir content' + a grid box can hold depends on the type of vegetation, and may be zero. Water + leaves the 'skin reservoir' by evaporation.

+ See further information. + access_ids: + - dissemination + origin_ids: + - -80 + - -50 + - 98 +- id: 199 + shortname: veg + longname: Vegetation fraction + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200 + shortname: vso + longname: Variance of sub-gridscale orography + units: m**2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201 + shortname: mx2t + longname: Maximum temperature at 2 metres since previous post-processing + units: K + description: This parameter is the highest temperature of air at 2m above the surface + of land, sea or in-land waters since the parameter was last archived in a particular + forecast.

2m temperature is calculated by interpolating between the lowest + model level and the Earth's surface, taking account of the atmospheric conditions. + See further information .

This parameter has units of kelvin (K). + Temperature measured in kelvin can be converted to degrees Celsius (°C) by + subtracting 273.15. + access_ids: + - dissemination + origin_ids: + - -20 + - 0 + - 98 +- id: 202 + shortname: mn2t + longname: Minimum temperature at 2 metres since previous post-processing + units: K + description: This parameter is the lowest temperature of air at 2m above the surface + of land, sea or in-land waters since the parameter was last archived in a particular + forecast.

2m temperature is calculated by interpolating between the lowest + model level and the Earth's surface, taking account of the atmospheric conditions. + See further information .

This parameter has units of kelvin (K). + Temperature measured in kelvin can be converted to degrees Celsius (°C) by + subtracting 273.15. + access_ids: + - dissemination + origin_ids: + - -20 + - 0 + - 98 +- id: 203 + shortname: o3 + longname: Ozone mass mixing ratio + units: kg kg**-1 + description: This parameter is the mass of ozone per kilogram of air.

In + the ECMWF Integrated Forecasting System (IFS), there is a simplified representation + of ozone chemistry (including representation of the chemistry which has caused + the ozone hole). Ozone is also transported around in the atmosphere through the + motion of air. See + further documentation.

Naturally occurring ozone in the stratosphere + helps protect organisms at the surface of the Earth from the harmful effects of + ultraviolet (UV) radiation from the Sun. Ozone near the surface, often produced + because of pollution, is harmful to organisms.

Most of the IFS chemical + species are archived as mass mixing ratios [kg kg-1]. This + link explains how to convert to concentration in terms of mass per unit volume. + access_ids: + - dissemination + origin_ids: + - -80 + - 0 + - 98 +- id: 204 + shortname: paw + longname: Precipitation analysis weights + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 205 + shortname: ro + longname: Runoff + units: m + description: 'Some water from rainfall, melting snow, or deep in the soil, stays + stored in the soil. Otherwise, the water drains away, either over the surface + (surface runoff), or under the ground (sub-surface runoff) and the sum of these + two is simply called ''runoff''. This parameter is the total amount of water accumulated + over a particular + time period which depends on the data extracted.The units of runoff are depth + in metres. This is the depth the water would have if it were spread evenly over + the grid + box. Care should be taken when comparing model parameters with observations, + because observations are often local to a particular point rather than averaged + over a grid square area. Observations are also often taken in different units, + such as mm/day, rather than the accumulated metres produced here.

Runoff + is a measure of the availability of water in the soil, and can, for example, be + used as an indicator of drought or flood. More information about how runoff is + calculated is given in the + IFS Physical Processes documentation. + +
[NOTE: See 231002 for the equivalent parameter in "kg m-2"]' + access_ids: + - dissemination + origin_ids: + - -80 + - -70 + - -50 + - 0 + - 98 +- id: 206 + shortname: tco3 + longname: Total column ozone + units: kg m**-2 + description: "This parameter is the total amount of ozone in a column of air extending\ + \ from the surface of the Earth to the top of the atmosphere. This parameter can\ + \ also be referred to as total ozone, or vertically integrated ozone. The values\ + \ are dominated by ozone within the stratosphere.

In the ECMWF Integrated\ + \ Forecasting System (IFS), there is a simplified representation of ozone chemistry\ + \ (including representation of the chemistry which has caused the ozone hole).\ + \ Ozone is also transported around in the atmosphere through the motion of air.\ + \ See further documentation .

Naturally occurring ozone in the stratosphere\ + \ helps protect organisms at the surface of the Earth from the harmful effects\ + \ of ultraviolet (UV) radiation from the Sun. Ozone near the surface, often produced\ + \ because of pollution, is harmful to organisms.

In the IFS, the units\ + \ for total ozone are kilograms per square metre, but before 12/06/2001 dobson\ + \ units were used. Dobson units (DU) are still used extensively for total column\ + \ ozone. 1 DU = 2.1415E-5 kg m-2\r\n\r\n[NOTE: See 260132 for the equivalent\ + \ parameter in 'DU']" + access_ids: + - dissemination + origin_ids: + - -80 + - -50 + - 0 + - 98 +- id: 207 + shortname: 10si + longname: 10 metre wind speed + units: m s**-1 + description: This parameter is the horizontal speed of the wind, or movement of + air, at a height of ten metres above the surface of the Earth. The units of this + parameter are metres per second.

Care should be taken when comparing + this parameter with observations, because wind observations vary on small space + and time scales and are affected by the local terrain, vegetation and buildings + that are represented only on average in the ECMWF Integrated Forecasting System.

The + eastward and northward components of the horizontal wind at 10m are also available + as parameters. + access_ids: + - dissemination + origin_ids: + - -20 + - 0 + - 98 +- id: 208 + shortname: tsrc + longname: Top net short-wave (solar) radiation, clear sky + units: J m**-2 + description: This parameter is the incoming solar radiation (also known as shortwave + radiation) minus the outgoing solar radiation at the top of the atmosphere, assuming + clear-sky (cloudless) conditions. It is the amount of radiation passing through + a horizontal plane. The incoming solar radiation is the amount received from the + Sun. The outgoing solar radiation is the amount reflected and scattered by the + Earth's atmosphere and surface, assuming clear-sky (cloudless) conditions. See + further documentation.

Clear-sky radiation quantities are computed + for exactly the same atmospheric conditions of temperature, humidity, ozone, trace + gases and aerosol as the total-sky (clouds included) quantities, but assuming + that the clouds are not there.

This parameter is accumulated + over a particular time period which depends on the data extracted. The units + are joules per square metre (J m-2). To convert to watts per square metre (W m-2), + the accumulated values should be divided by the accumulation period expressed + in seconds.

The ECMWF convention for vertical fluxes is positive downwards. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 209 + shortname: ttrc + longname: Top net long-wave (thermal) radiation, clear sky + units: J m**-2 + description: This parameter is the thermal (also known as terrestrial or longwave) + radiation emitted to space at the top of the atmosphere, assuming clear-sky (cloudless) + conditions. It is the amount passing through a horizontal plane. Note that the + ECMWF convention for vertical fluxes is positive downwards, so a flux from the + atmosphere to space will be negative. See + further documentation.

Clear-sky radiation quantities are computed + for exactly the same atmospheric conditions of temperature, humidity, ozone, trace + gases and aerosol as total-sky quantities (clouds included), but assuming that + the clouds are not there.

The thermal radiation emitted to space at the + top of the atmosphere is commonly known as the Outgoing Longwave Radiation (OLR) + (i.e., taking a flux from the atmosphere to space as positive). Note that OLR + is typically shown in units of watts per square metre (W m-2).

This parameter + is accumulated + over a particular time period which depends on the data extracted. The units + are joules per square metre (J m-2). To convert to watts per square metre (W m-2), + the accumulated values should be divided by the accumulation period expressed + in seconds. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 210 + shortname: ssrc + longname: Surface net short-wave (solar) radiation, clear sky + units: J m**-2 + description: This parameter is the amount of solar (shortwave) radiation reaching + the surface of the Earth (both direct and diffuse) minus the amount reflected + by the Earth's surface (which is governed by the albedo), assuming clear-sky (cloudless) + conditions. It is the amount of radiation passing through a horizontal plane, + not a plane perpendicular to the direction of the Sun.

Clear-sky radiation + quantities are computed for exactly the same atmospheric conditions of temperature, + humidity, ozone, trace gases and aerosol as the corresponding total-sky quantities + (clouds included), but assuming that the clouds are not there.

Radiation + from the Sun (solar, or shortwave, radiation) is partly reflected back to space + by clouds and particles in the atmosphere (aerosols) and some of it is absorbed. + The rest is incident on the Earth's surface, where some of it is reflected. The + difference between downward and reflected solar radiation is the surface net solar + radiation. See + further documentation.

This parameter is accumulated + over a particular time period which depends on the data extracted. The units + are joules per square metre (J m-2). To convert to watts per square metre (W m-2), + the accumulated values should be divided by the accumulation period expressed + in seconds.

The ECMWF convention for vertical fluxes is positive downwards. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 211 + shortname: strc + longname: Surface net long-wave (thermal) radiation, clear sky + units: J m**-2 + description: 'Thermal radiation (also known as longwave or terrestrial radiation) + refers to radiation emitted by the atmosphere, clouds and the surface of the Earth. + This parameter is the difference between downward and upward thermal radiation + at the surface of the Earth, assuming clear-sky (cloudless) conditions. It is + the amount of radiation passing through a horizontal plane. See + further documentation.

Clear-sky radiation quantities are computed + for exactly the same atmospheric conditions of temperature, humidity, ozone, trace + gases and aerosol as the corresponding total-sky quantities (clouds included), + but assuming that the clouds are not there.

The atmosphere and clouds + emit thermal radiation in all directions, some of which reaches the surface as + downward thermal radiation. The upward thermal radiation at the surface consists + of thermal radiation emitted by the surface plus the fraction of downwards thermal + radiation reflected upward by the surface. See + further documentation.

This parameter is accumulated + over a particular time period which depends on the data extracted. The units + are joules per square metre (J m-2). To convert to watts per square metre (W m-2), + the accumulated values should be divided by the accumulation period expressed + in seconds.

The ECMWF convention for vertical fluxes is positive downwards. ' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 212 + shortname: tisr + longname: TOA incident short-wave (solar) radiation + units: J m**-2 + description: Accumulated field + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 213 + shortname: vimd + longname: Vertically integrated moisture divergence + units: kg m**-2 + description: The vertical integral of the moisture flux is the horizontal rate of + flow of moisture (water vapour, cloud liquid and cloud ice), per metre across + the flow, for a column of air extending from the surface of the Earth to the top + of the atmosphere. Its horizontal divergence is the rate of moisture spreading + outward from a point, per square metre.

This parameter is accumulated + over a + particular time period which depends on the data extracted

This + parameter is positive for moisture that is spreading out, or diverging, and negative + for the opposite, for moisture that is concentrating, or converging (convergence). + This parameter thus indicates whether atmospheric motions act to decrease (for + divergence) or increase (for convergence) the vertical integral of moisture, over + the time period. High negative values of this parameter (i.e. large moisture convergence) + can be related to precipitation intensification and floods.

1 kg of water + spread over 1 square metre of surface is 1 mm deep (neglecting the effects of + temperature on the density of water), therefore the units are equivalent to mm. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 214 + shortname: dhr + longname: Diabatic heating by radiation + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 215 + shortname: dhvd + longname: Diabatic heating by vertical diffusion + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 216 + shortname: dhcc + longname: Diabatic heating by cumulus convection + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217 + shortname: dhlc + longname: Diabatic heating large-scale condensation + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218 + shortname: vdzw + longname: Vertical diffusion of zonal wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219 + shortname: vdmw + longname: Vertical diffusion of meridional wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 220 + shortname: ewgd + longname: East-West gravity wave drag tendency + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221 + shortname: nsgd + longname: North-South gravity wave drag tendency + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 222 + shortname: ctzw + longname: Convective tendency of zonal wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 223 + shortname: ctmw + longname: Convective tendency of meridional wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 224 + shortname: vdh + longname: Vertical diffusion of humidity + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 225 + shortname: htcc + longname: Humidity tendency by cumulus convection + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 226 + shortname: htlc + longname: Humidity tendency by large-scale condensation + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 227 + shortname: crnh + longname: Tendency due to removal of negative humidity + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 228 + shortname: tp + longname: Total precipitation + units: m + description: "This parameter is the accumulated liquid and frozen water, comprising\ + \ rain and snow, that falls to the Earth's surface. It is the sum of large-scale\ + \ precipitation and convective precipitation. Large-scale precipitation is generated\ + \ by the cloud scheme in the ECMWF Integrated Forecasting System (IFS). The cloud\ + \ scheme represents the formation and dissipation of clouds and large-scale precipitation\ + \ due to changes in atmospheric quantities (such as pressure, temperature and\ + \ moisture) predicted directly by the IFS at spatial scales of the grid\ + \ box or larger. Convective precipitation is generated by the convection scheme\ + \ in the IFS, which represents convection at spatial scales smaller than the grid\ + \ box. See\ + \ further information. This parameter does not include fog, dew or the precipitation\ + \ that evaporates in the atmosphere before it lands at the surface of the Earth.\ + \

This parameter is the total amount of water accumulated\ + \ over a particular time period which depends on the data extracted. The units\ + \ of this parameter are depth in metres of water equivalent. It is the depth the\ + \ water would have if it were spread evenly over the grid box.

Care\ + \ should be taken when comparing model parameters with observations, because observations\ + \ are often local to a particular point in space and time, rather than representing\ + \ averages over a model grid box.\r\n\r\n[NOTE: See 228228 for the equivalent\ + \ parameter in \"kg m-2\"]" + access_ids: + - dissemination + origin_ids: + - -90 + - -80 + - -70 + - -50 + - 98 +- id: 229 + shortname: iews + longname: Instantaneous eastward turbulent surface stress + units: N m**-2 + description: Air flowing over a surface exerts a stress that transfers momentum + to the surface and slows the wind. This parameter is the stress on the Earth's + surface at + the specified time in the eastward direction due to both the turbulent interactions + between the atmosphere and the surface, and to turbulent orographic form drag. +

The turbulent interactions between the atmosphere and the surface are + due to the roughness of the surface.

The turbulent orographic form drag + is the stress due to the valleys, hills and mountains on horizontal scales below + 5km being derived from land surface data at about 1 km resolution. See + further information.

Positive (negative) values denote stress in + the eastward (westward) direction. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 230 + shortname: inss + longname: Instantaneous northward turbulent surface stress + units: N m**-2 + description: Air flowing over a surface exerts a stress that transfers momentum + to the surface and slows the wind. This parameter is the stress on the Earth's + surface at + the specified time in the northward direction due to both the turbulent interactions + between the atmosphere and the surface, and to turbulent orographic form drag.

The + turbulent interactions between the atmosphere and the surface are due to the roughness + of the surface.

The turbulent orographic form drag is the stress due + to the valleys, hills and mountains on horizontal scales below 5km being derived + from land surface data at about 1 km resolution. See + further information.

Positive (negative) values denote stress in + the northward (southward) direction. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 231 + shortname: ishf + longname: Instantaneous surface sensible heat net flux + units: W m**-2 + description:

This parameter is the transfer of heat between the Earth's surface + and the atmosphere, at + the specified time, through the effects of turbulent air motion (but excluding + any heat transfer resulting from condensation or evaporation).

The magnitude + of the sensible heat flux is governed by the difference in temperature between + the surface and the overlying atmosphere, wind speed and the surface roughness. + For example, cold air overlying a warm surface would produce a sensible heat flux + from the land (or ocean) into the atmosphere.The ECMWF convention for vertical + fluxes is positive downwards. See + further documentation.

+ access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 232 + shortname: ie + longname: Instantaneous moisture flux + units: kg m**-2 s**-1 + description: This parameter is the net rate of moisture exchange between the land/ocean + surface and the atmosphere, due to the processes of evaporation (including evapotranspiration) + and condensation, at + the specified time. By convention, downward fluxes are positive, which means + that evaporation is represented by negative values and condensation by positive + values. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 233 + shortname: asq + longname: Apparent surface humidity + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 234 + shortname: lsrh + longname: Logarithm of surface roughness length for heat (climatological) + units: Numeric + description: Represents surface roughness length for heat and moisture over land. + Climatological field. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 235 + shortname: skt + longname: Skin temperature + units: K + description:

This parameter is the temperature of the surface of the Earth.

The + skin temperature is the theoretical temperature that is required to satisfy the + surface energy balance. It represents the temperature of the uppermost surface + layer, which has no heat capacity and so can respond instantaneously to changes + in surface fluxes. Skin temperature is calculated differently over land and sea.

This + parameter has units of kelvin (K). Temperature measured in kelvin can be converted + to degrees Celsius (°C) by subtracting 273.15.

See further information + about the skin temperature over + land and over + sea.

Please note that the encodings listed here for s2s & uerra + (which includes carra/cerra) include entries for Time-mean skin temperature. The + specific encoding for Mean skin temperature can be found in 235079.

+ access_ids: + - dissemination + origin_ids: + - -40 + - -20 + - 0 + - 98 +- id: 236 + shortname: stl4 + longname: Soil temperature level 4 + units: K + description: 'This parameter is the temperature of the soil at level 4 (in the middle + of layer 4).

The ECMWF Integrated Forecasting System (IFS) has a four-layer + representation of soil, where the surface is at 0cm:

Layer 1: 0 - 7cm +
Layer 2: 7 - 28cm
Layer 3: 28 - 100cm
Layer 4: 100 - 289cm

Soil + temperature is set at the middle of each layer, and heat transfer is calculated + at the interfaces between them. It is assumed that there is no heat transfer out + of the bottom of the lowest layer.

This parameter has units of Kelvin + (K). Temperature measured in Kelvin can be converted to degrees Celsius (°C) + by subtracting 273.15.

See + further information.' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 237 + shortname: swl4 + longname: Soil wetness level 4 + units: m + description: Old field Layer 100-289 cm (soil moisture is archived as field 42). + Water column scaled to depth of surf layer (7 cm). + access_ids: [] + origin_ids: + - 98 +- id: 238 + shortname: tsn + longname: Temperature of snow layer + units: K + description: This parameter gives the temperature of the snow layer from the ground + to the snow-air interface.

The ECMWF Integrated Forecast System (IFS) + model represents snow as a single additional layer over the uppermost soil level. + The snow may cover all or part of the + grid box.

+ See further information on snow in the IFS.

This parameter has units + of kelvin (K). Temperature measured in kelvin can be converted to degrees Celsius + (°C) by subtracting 273.15. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 239 + shortname: csf + longname: Convective snowfall + units: m of water equivalent + description: Accumulated field + access_ids: [] + origin_ids: + - -80 + - -50 + - 98 +- id: 240 + shortname: lsf + longname: Large-scale snowfall + units: m of water equivalent + description: Accumulated field + access_ids: [] + origin_ids: + - -80 + - -50 + - 98 +- id: 241 + shortname: acf + longname: Accumulated cloud fraction tendency + units: (-1 to 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 242 + shortname: alw + longname: Accumulated liquid water tendency + units: (-1 to 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 243 + shortname: fal + longname: Forecast albedo + units: (0 - 1) + description: 'This parameter is a measure of the reflectivity of the Earth''s surface. + It is the fraction of solar (shortwave) radiation reflected by Earth''s surface, + across the solar spectrum, for both direct and diffuse radiation. Typically, snow + and ice have high reflectivity with albedo values of 0.8 and above, land has intermediate + values between about 0.1 and 0.4 and the ocean has low values of 0.1 or less. +

Radiation from the Sun (solar, or shortwave, radiation) is partly reflected + back to space by clouds and particles in the atmosphere (aerosols) and some of + it is absorbed. The rest is incident on the Earth''s surface, where some of it + is reflected. The portion that is reflected by the Earth''s surface depends on + the albedo. See + further documentation .

In the ECMWF Integrated Forecasting System + (IFS), a climatological background albedo (observed values averaged over a period + of several years) is used, modified by the model over water, ice and snow.

Albedo + is often shown as a percentage (%).
+ + [NOTE: See 260509 for the equivalent parameter in ''%'']' + access_ids: + - dissemination + origin_ids: + - -80 + - -70 + - -50 + - 98 +- id: 244 + shortname: fsr + longname: Forecast surface roughness + units: m + description: This parameter is the aerodynamic roughness length in metres.

It + is a measure of the surface resistance. This parameter is used to determine the + air to surface transfer of momentum. For given atmospheric conditions, a higher + surface roughness causes a slower near-surface wind speed.

Over the ocean, + surface roughness depends on the waves. Over the land, surface roughness is derived + from the vegetation type and snow cover. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 245 + shortname: flsr + longname: Forecast logarithm of surface roughness for heat + units: Numeric + description: This parameter is the natural logarithm of the roughness length for + heat.

The surface roughness for heat is a measure of the surface resistance + to heat transfer. This parameter is used to determine the air to surface transfer + of heat. For given atmospheric conditions, a higher surface roughness for heat + means that it is more difficult for the air to exchange heat with the surface. + A lower surface roughness for heat that it is easier for the air to exchange heat + with the surface.

Over the ocean, surface roughness for heat depends + on the waves. Over sea-ice, it has a constant value of 0.001 m. Over the land, + it is derived from the vegetation type and snow cover. See + further information. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 246 + shortname: clwc + longname: Specific cloud liquid water content + units: kg kg**-1 + description: This parameter is the mass of cloud liquid water droplets per kilogram + of the total mass of moist air. The 'total mass of moist air' is the sum of the + dry air, water vapour, cloud liquid, cloud ice, rain and falling snow. This parameter + represents the average value for a + grid box.

Water within clouds can be liquid or ice, or a combination + of the two. + See further information about the cloud formulation. + access_ids: + - dissemination + origin_ids: + - -80 + - -20 + - 0 + - 98 +- id: 247 + shortname: ciwc + longname: Specific cloud ice water content + units: kg kg**-1 + description: This parameter is the mass of cloud ice particles per kilogram of the + total mass of moist air. The 'total mass of moist air' is the sum of the dry air, + water vapour, cloud liquid, cloud ice, rain and falling snow. This parameter represents + the average value for a + grid box.

Water within clouds can be liquid or ice, or a combination + of the two.
Note that 'cloud frozen water' is the same as 'cloud ice water'.

See + further information about the cloud formulation. + access_ids: + - dissemination + origin_ids: + - -80 + - -20 + - 0 + - 34 + - 98 +- id: 248 + shortname: cc + longname: Fraction of cloud cover + units: (0 - 1) + description: This parameter is the proportion of a + grid box covered by cloud (liquid or ice). This parameter is available on + multiple levels through the atmosphere. + access_ids: + - dissemination + origin_ids: + - -80 + - 0 + - 98 +- id: 249 + shortname: aiw + longname: Accumulated ice water tendency + units: (-1 to 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 250 + shortname: ice + longname: Ice age + units: (0 - 1) + description: 0 first-year, 1 multi-year + access_ids: [] + origin_ids: + - 98 +- id: 251 + shortname: atte + longname: Adiabatic tendency of temperature + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 252 + shortname: athe + longname: Adiabatic tendency of humidity + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 253 + shortname: atze + longname: Adiabatic tendency of zonal wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 254 + shortname: atmw + longname: Adiabatic tendency of meridional wind + units: m s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 255 + shortname: '~' + longname: Indicates a missing value + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 3003 + shortname: ptend + longname: Pressure tendency + units: Pa s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3005 + shortname: icaht + longname: ICAO Standard Atmosphere reference height + units: m + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3008 + shortname: h + longname: Geometrical height above ground + units: m + description: '' + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3009 + shortname: hstdv + longname: Standard deviation of height + units: m + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3012 + shortname: vptmp + longname: Virtual potential temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 3014 + shortname: papt + longname: Pseudo-adiabatic potential temperature + units: K + description: '' + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3015 + shortname: tmax + longname: Maximum temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3016 + shortname: tmin + longname: Minimum temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3017 + shortname: dpt + longname: Dew point temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3018 + shortname: depr + longname: Dew point depression (or deficit) + units: K + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3019 + shortname: lapr + longname: Lapse rate + units: K m**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3020 + shortname: vis + longname: Visibility + units: m + description: 'A visibility parameter was introduced in the ECMWF Integrated Forecasting + System (IFS) from 12 May 2015. It uses model projections of water vapour, cloud, + rain and snow, and climatological aerosol fields to estimate the visibility that + would be recorded by weather observers. It is calculated in the IFS at 10 m above + the surface of the Earth.

Visibility is normally many kilometers, but + is reduced by several meteorological factors including water droplets (fog), precipitation, + humidity and aerosols.

Historically, visibility observations have been + estimated by human observers judging whether they can see distant objects. More + recently, visibility sensors measure the length of atmosphere over which a beam + of light travels before its luminous flux is reduced to 5% of its original value. ' + access_ids: + - dissemination + origin_ids: + - -20 + - 0 + - 34 +- id: 3021 + shortname: rdsp1 + longname: Radar spectra (1) + units: '~' + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3022 + shortname: rdsp2 + longname: Radar spectra (2) + units: '~' + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3023 + shortname: rdsp3 + longname: Radar spectra (3) + units: '~' + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3024 + shortname: pli + longname: Parcel lifted index (to 500 hPa) + units: K + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3025 + shortname: ta + longname: Temperature anomaly + units: K + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3026 + shortname: presa + longname: Pressure anomaly + units: Pa + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3027 + shortname: gpa + longname: Geopotential height anomaly + units: gpm + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3028 + shortname: wvsp1 + longname: Wave spectra (1) + units: '~' + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3029 + shortname: wvsp2 + longname: Wave spectra (2) + units: '~' + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3030 + shortname: wvsp3 + longname: Wave spectra (3) + units: '~' + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3031 + shortname: wdir + longname: Wind direction + units: Degree true + description: null + access_ids: [] + origin_ids: + - -20 + - 0 + - 34 +- id: 3037 + shortname: mntsf + longname: Montgomery stream Function + units: m**2 s**-2 + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 3038 + shortname: sgcvv + longname: Sigma coordinate vertical velocity + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3041 + shortname: absv + longname: Absolute vorticity + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3042 + shortname: absd + longname: Absolute divergence + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3045 + shortname: vucsh + longname: Vertical u-component shear + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3046 + shortname: vvcsh + longname: Vertical v-component shear + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3047 + shortname: dirc + longname: Direction of current + units: Degree true + description: '' + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3048 + shortname: spc + longname: Speed of current + units: m s**-1 + description: '' + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3053 + shortname: mixr + longname: Humidity mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3054 + shortname: pwat + longname: Precipitable water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 3055 + shortname: vp + longname: Vapour pressure + units: Pa + description: '' + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3056 + shortname: satd + longname: Saturation deficit + units: Pa + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3059 + shortname: prate + longname: Precipitation rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3060 + shortname: tstm + longname: Thunderstorm probability + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3062 + shortname: lsp + longname: Large-scale precipitation + units: kg m**-2 + description: '[NOTE: See 142 for the equivalent parameter in "m"]' + access_ids: [] + origin_ids: + - 0 +- id: 3063 + shortname: acpcp + longname: Convective precipitation (water) + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 3064 + shortname: srweq + longname: Snow fall rate water equivalent + units: kg m**-2 s**-1 + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 3066 + shortname: sde + longname: Snow depth + units: m + description: '' + access_ids: [] + origin_ids: + - -80 + - 0 + - 34 +- id: 3067 + shortname: mld + longname: Mixed layer depth + units: m + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3068 + shortname: tthdp + longname: Transient thermocline depth + units: m + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3069 + shortname: mthd + longname: Main thermocline depth + units: m + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3070 + shortname: mtha + longname: Main thermocline anomaly + units: m + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3072 + shortname: ccc + longname: Convective cloud cover + units: '%' + description: '' + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3073 + shortname: lcc + longname: Low cloud cover + units: '%' + description: '[NOTE: See 186 for the equivalent parameter in "(0-1)"]' + access_ids: + - dissemination + origin_ids: + - -20 + - 0 + - 34 +- id: 3074 + shortname: mcc + longname: Medium cloud cover + units: '%' + description: '[NOTE: See 187 for the equivalent parameter in "(0-1)"]' + access_ids: + - dissemination + origin_ids: + - -20 + - 0 + - 34 +- id: 3075 + shortname: hcc + longname: High cloud cover + units: '%' + description: 'Percentage of the sky hidden by high cloud. + +
[NOTE: See 188 for the equivalent parameter in "(0-1)"]' + access_ids: + - dissemination + origin_ids: + - -20 + - 0 + - 34 +- id: 3077 + shortname: bli + longname: Best lifted index (to 500 hPa) + units: K + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3079 + shortname: lssf + longname: Large scale snow + units: kg m**-2 + description: '' + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3080 + shortname: wtmp + longname: Water temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3082 + shortname: dslm + longname: Deviation of sea-level from mean + units: m + description: '' + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3086 + shortname: ssw + longname: Soil moisture content + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3088 + shortname: s + longname: Salinity + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3089 + shortname: den + longname: Density + units: kg m**-3 + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3091 + shortname: icec + longname: Ice cover (1=ice, 0=no ice) + units: (0 - 1) + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 3092 + shortname: icetk + longname: Ice thickness + units: m + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3093 + shortname: diced + longname: Direction of ice drift + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3094 + shortname: siced + longname: Speed of ice drift + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3095 + shortname: uice + longname: U-component of ice drift + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3096 + shortname: vice + longname: V-component of ice drift + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3097 + shortname: iceg + longname: Ice growth rate + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3098 + shortname: iced + longname: Ice divergence + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3099 + shortname: snom + longname: Snowmelt + units: kg m**-2 + description: "This parameter is the accumulated amount of water that has melted\ + \ from snow in the snow-covered area of a grid box, in the WMO standard units\ + \ of kg m-2.\r\nThis parameter is accumulated over a particular time period which\ + \ depends on the data extracted.\r\n[NOTE: See 45 for the equivalent parameter\ + \ in \"m of water equivalent\"]" + access_ids: [] + origin_ids: + - -20 + - 0 + - 34 +- id: 3100 + shortname: swh + longname: Significant height of combined wind waves and swell + units: m + description: null + access_ids: + - dissemination + origin_ids: + - 0 + - 34 +- id: 3101 + shortname: mdww + longname: Mean direction of wind waves + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3102 + shortname: shww + longname: Significant height of wind waves + units: m + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3103 + shortname: mpww + longname: Mean period of wind waves + units: s + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3104 + shortname: swdir + longname: Direction of swell waves + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3105 + shortname: swell + longname: Significant height of swell waves + units: m + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3106 + shortname: swper + longname: Mean period of swell waves + units: s + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3107 + shortname: mdps + longname: Primary wave direction + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3108 + shortname: mpps + longname: Primary wave mean period + units: s + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3109 + shortname: dirsw + longname: Secondary wave direction + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3110 + shortname: swp + longname: Secondary wave mean period + units: s + description: '' + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3111 + shortname: nswrs + longname: Net short-wave radiation flux (surface) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3112 + shortname: nlwrs + longname: Net long-wave radiation flux (surface) + units: W m**-2 + description: '' + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3113 + shortname: nswrt + longname: Net short-wave radiation flux(atmosph.top) + units: W m**-2 + description: '' + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3114 + shortname: nlwrt + longname: Net long-wave radiation flux(atmosph.top) + units: W m**-2 + description: '' + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3115 + shortname: lwavr + longname: Long wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3116 + shortname: swavr + longname: Short wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3117 + shortname: grad + longname: Global radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3119 + shortname: lwrad + longname: Radiance (with respect to wave number) + units: W m**-1 sr**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3120 + shortname: swrad + longname: Radiance (with respect to wave length) + units: W m**-3 sr**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3121 + shortname: lhf + longname: Latent heat flux + units: W m**-2 + description: '' + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3122 + shortname: shf + longname: Sensible heat flux + units: W m**-2 + description: '' + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3123 + shortname: bld + longname: Boundary layer dissipation + units: W m**-2 + description: '' + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3124 + shortname: uflx + longname: Momentum flux, u-component + units: N m**-2 + description: '' + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3125 + shortname: vflx + longname: Momentum flux, v-component + units: N m**-2 + description: '' + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3126 + shortname: wmixe + longname: Wind mixing energy + units: J + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 3127 + shortname: imgd + longname: Image data + units: '~' + description: '' + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 129001 + shortname: strfgrd + longname: Stream function gradient + units: m**2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129002 + shortname: vpotgrd + longname: Velocity potential gradient + units: m**2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129003 + shortname: ptgrd + longname: Potential temperature gradient + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129004 + shortname: eqptgrd + longname: Equivalent potential temperature gradient + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129005 + shortname: septgrd + longname: Saturated equivalent potential temperature gradient + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129011 + shortname: udvwgrd + longname: U component of divergent wind gradient + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129012 + shortname: vdvwgrd + longname: V component of divergent wind gradient + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129013 + shortname: urtwgrd + longname: U component of rotational wind gradient + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129014 + shortname: vrtwgrd + longname: V component of rotational wind gradient + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129021 + shortname: uctpgrd + longname: Unbalanced component of temperature gradient + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129022 + shortname: uclngrd + longname: Unbalanced component of logarithm of surface pressure gradient + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129023 + shortname: ucdvgrd + longname: Unbalanced component of divergence gradient + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129024 + shortname: '~' + longname: Reserved for future unbalanced components + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129025 + shortname: '~' + longname: Reserved for future unbalanced components + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129026 + shortname: clgrd + longname: Lake cover gradient + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129027 + shortname: cvlgrd + longname: Low vegetation cover gradient + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129028 + shortname: cvhgrd + longname: High vegetation cover gradient + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129029 + shortname: tvlgrd + longname: Type of low vegetation gradient + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129030 + shortname: tvhgrd + longname: Type of high vegetation gradient + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129031 + shortname: sicgrd + longname: Sea-ice cover gradient + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129032 + shortname: asngrd + longname: Snow albedo gradient + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129033 + shortname: rsngrd + longname: Snow density gradient + units: kg m**-3 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129034 + shortname: sstkgrd + longname: Sea surface temperature gradient + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129035 + shortname: istl1grd + longname: Ice surface temperature layer 1 gradient + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129036 + shortname: istl2grd + longname: Ice surface temperature layer 2 gradient + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129037 + shortname: istl3grd + longname: Ice surface temperature layer 3 gradient + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129038 + shortname: istl4grd + longname: Ice surface temperature layer 4 gradient + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129039 + shortname: swvl1grd + longname: Volumetric soil water layer 1 gradient + units: m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129040 + shortname: swvl2grd + longname: Volumetric soil water layer 2 gradient + units: m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129041 + shortname: swvl3grd + longname: Volumetric soil water layer 3 gradient + units: m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129042 + shortname: swvl4grd + longname: Volumetric soil water layer 4 gradient + units: m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129043 + shortname: sltgrd + longname: Soil type gradient + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129044 + shortname: esgrd + longname: Snow evaporation gradient + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129045 + shortname: smltgrd + longname: Snowmelt gradient + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129046 + shortname: sdurgrd + longname: Solar duration gradient + units: s + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129047 + shortname: dsrpgrd + longname: Direct solar radiation gradient + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129048 + shortname: magssgrd + longname: Magnitude of turbulent surface stress gradient + units: N m**-2 s + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129049 + shortname: 10fggrd + longname: 10 metre wind gust gradient + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129050 + shortname: lspfgrd + longname: Large-scale precipitation fraction gradient + units: s + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129051 + shortname: mx2t24grd + longname: Maximum 2 metre temperature gradient + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129052 + shortname: mn2t24grd + longname: Minimum 2 metre temperature gradient + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129053 + shortname: montgrd + longname: Montgomery potential gradient + units: m**2 s**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129054 + shortname: presgrd + longname: Pressure gradient + units: Pa + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129055 + shortname: mean2t24grd + longname: Mean 2 metre temperature in the last 24 hours gradient + units: K + description:

This parameter is only available in GRIB1.

+ access_ids: [] + origin_ids: + - 98 +- id: 129056 + shortname: mn2d24grd + longname: Mean 2 metre dewpoint temperature in the last 24 hours gradient + units: K + description:

This parameter is only available in GRIB1.

+ access_ids: [] + origin_ids: + - 98 +- id: 129057 + shortname: uvbgrd + longname: Downward UV radiation at the surface gradient + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129058 + shortname: pargrd + longname: Photosynthetically active radiation at the surface gradient + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129059 + shortname: capegrd + longname: Convective available potential energy gradient + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129060 + shortname: pvgrd + longname: Potential vorticity gradient + units: K m**2 kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129061 + shortname: tpogrd + longname: Total precipitation from observations gradient + units: Millimetres*100 + number of stations + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129062 + shortname: obctgrd + longname: Observation count gradient + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129063 + shortname: '~' + longname: Start time for skin temperature difference + units: s + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129064 + shortname: '~' + longname: Finish time for skin temperature difference + units: s + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129065 + shortname: '~' + longname: Skin temperature difference + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129066 + shortname: '~' + longname: Leaf area index, low vegetation + units: m**2 m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129067 + shortname: '~' + longname: Leaf area index, high vegetation + units: m**2 m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129070 + shortname: '~' + longname: Biome cover, low vegetation + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129071 + shortname: '~' + longname: Biome cover, high vegetation + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129078 + shortname: '~' + longname: Total column liquid water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129079 + shortname: '~' + longname: Total column ice water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129080 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129081 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129082 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129083 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129084 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129085 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129086 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129087 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129088 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129089 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129090 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129091 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129092 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129093 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129094 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129095 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129096 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129097 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129098 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129099 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129100 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129101 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129102 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129103 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129104 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129105 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129106 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129107 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129108 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129109 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129110 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129111 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129112 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129113 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129114 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129115 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129116 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129117 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129118 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129119 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129120 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129121 + shortname: mx2t6grd + longname: Maximum temperature at 2 metres gradient + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129122 + shortname: mn2t6grd + longname: Minimum temperature at 2 metres gradient + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129123 + shortname: 10fg6grd + longname: 10 metre wind gust in the last 6 hours gradient + units: m s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 129125 + shortname: '~' + longname: Vertically integrated total energy + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129126 + shortname: '~' + longname: Generic parameter for sensitive area prediction + units: Various + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129127 + shortname: atgrd + longname: Atmospheric tide gradient + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129128 + shortname: bvgrd + longname: Budget values gradient + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129129 + shortname: zgrd + longname: Geopotential gradient + units: m**2 s**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129130 + shortname: tgrd + longname: Temperature gradient + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129131 + shortname: ugrd + longname: U component of wind gradient + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129132 + shortname: vgrd + longname: V component of wind gradient + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129133 + shortname: qgrd + longname: Specific humidity gradient + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129134 + shortname: spgrd + longname: Surface pressure gradient + units: Pa + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129135 + shortname: wgrd + longname: vertical velocity (pressure) gradient + units: Pa s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129136 + shortname: tcwgrd + longname: Total column water gradient + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129137 + shortname: tcwvgrd + longname: Total column water vapour gradient + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129138 + shortname: vogrd + longname: Vorticity (relative) gradient + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129139 + shortname: stl1grd + longname: Soil temperature level 1 gradient + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129140 + shortname: swl1grd + longname: Soil wetness level 1 gradient + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129141 + shortname: sdgrd + longname: Snow depth gradient + units: m of water equivalent + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129142 + shortname: lspgrd + longname: Stratiform precipitation (Large-scale precipitation) gradient + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129143 + shortname: cpgrd + longname: Convective precipitation gradient + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129144 + shortname: sfgrd + longname: Snowfall (convective + stratiform) gradient + units: m of water equivalent + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129145 + shortname: bldgrd + longname: Boundary layer dissipation gradient + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129146 + shortname: sshfgrd + longname: Surface sensible heat flux gradient + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129147 + shortname: slhfgrd + longname: Surface latent heat flux gradient + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129148 + shortname: chnkgrd + longname: Charnock gradient + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129149 + shortname: snrgrd + longname: Surface net radiation gradient + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129150 + shortname: tnrgrd + longname: Top net radiation gradient + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129151 + shortname: mslgrd + longname: Mean sea level pressure gradient + units: Pa + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129152 + shortname: lnspgrd + longname: Logarithm of surface pressure gradient + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129153 + shortname: swhrgrd + longname: Short-wave heating rate gradient + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129154 + shortname: lwhrgrd + longname: Long-wave heating rate gradient + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129155 + shortname: dgrd + longname: Divergence gradient + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129156 + shortname: ghgrd + longname: Height gradient + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129157 + shortname: rgrd + longname: Relative humidity gradient + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129158 + shortname: tspgrd + longname: Tendency of surface pressure gradient + units: Pa s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129159 + shortname: blhgrd + longname: Boundary layer height gradient + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129160 + shortname: sdorgrd + longname: Standard deviation of orography gradient + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129161 + shortname: isorgrd + longname: Anisotropy of sub-gridscale orography gradient + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129162 + shortname: anorgrd + longname: Angle of sub-gridscale orography gradient + units: radians + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129163 + shortname: slorgrd + longname: Slope of sub-gridscale orography gradient + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129164 + shortname: tccgrd + longname: Total cloud cover gradient + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129165 + shortname: 10ugrd + longname: 10 metre U wind component gradient + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129166 + shortname: 10vgrd + longname: 10 metre V wind component gradient + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129167 + shortname: 2tgrd + longname: 2 metre temperature gradient + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129168 + shortname: 2dgrd + longname: 2 metre dewpoint temperature gradient + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129169 + shortname: ssrdgrd + longname: Surface solar radiation downwards gradient + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129170 + shortname: stl2grd + longname: Soil temperature level 2 gradient + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129171 + shortname: swl2grd + longname: Soil wetness level 2 gradient + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129172 + shortname: lsmgrd + longname: Land-sea mask gradient + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129173 + shortname: srgrd + longname: Surface roughness gradient + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129174 + shortname: algrd + longname: Albedo gradient + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129175 + shortname: strdgrd + longname: Surface thermal radiation downwards gradient + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129176 + shortname: ssrgrd + longname: Surface net solar radiation gradient + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129177 + shortname: strgrd + longname: Surface net thermal radiation gradient + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129178 + shortname: tsrgrd + longname: Top net solar radiation gradient + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129179 + shortname: ttrgrd + longname: Top net thermal radiation gradient + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129180 + shortname: ewssgrd + longname: East-West surface stress gradient + units: N m**-2 s + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129181 + shortname: nsssgrd + longname: North-South surface stress gradient + units: N m**-2 s + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129182 + shortname: egrd + longname: Evaporation gradient + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129183 + shortname: stl3grd + longname: Soil temperature level 3 gradient + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129184 + shortname: swl3grd + longname: Soil wetness level 3 gradient + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129185 + shortname: cccgrd + longname: Convective cloud cover gradient + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129186 + shortname: lccgrd + longname: Low cloud cover gradient + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129187 + shortname: mccgrd + longname: Medium cloud cover gradient + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129188 + shortname: hccgrd + longname: High cloud cover gradient + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129189 + shortname: sundgrd + longname: Sunshine duration gradient + units: s + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129190 + shortname: ewovgrd + longname: East-West component of sub-gridscale orographic variance gradient + units: m**2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129191 + shortname: nsovgrd + longname: North-South component of sub-gridscale orographic variance gradient + units: m**2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129192 + shortname: nwovgrd + longname: North-West/South-East component of sub-gridscale orographic variance gradient + units: m**2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129193 + shortname: neovgrd + longname: North-East/South-West component of sub-gridscale orographic variance gradient + units: m**2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129194 + shortname: btmpgrd + longname: Brightness temperature gradient + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129195 + shortname: lgwsgrd + longname: Longitudinal component of gravity wave stress gradient + units: N m**-2 s + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 129196 + shortname: mgwsgrd + longname: Meridional component of gravity wave stress gradient + units: N m**-2 s + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129197 + shortname: gwdgrd + longname: Gravity wave dissipation gradient + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129198 + shortname: srcgrd + longname: Skin reservoir content gradient + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129199 + shortname: veggrd + longname: Vegetation fraction gradient + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129200 + shortname: vsogrd + longname: Variance of sub-gridscale orography gradient + units: m**2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129201 + shortname: mx2tgrd + longname: Maximum temperature at 2 metres since previous post-processing gradient + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129202 + shortname: mn2tgrd + longname: Minimum temperature at 2 metres since previous post-processing gradient + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129203 + shortname: o3grd + longname: Ozone mass mixing ratio gradient + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129204 + shortname: pawgrd + longname: Precipitation analysis weights gradient + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129205 + shortname: rogrd + longname: Runoff gradient + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129206 + shortname: tco3grd + longname: Total column ozone gradient + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129207 + shortname: 10sigrd + longname: 10 metre wind speed gradient + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129208 + shortname: tsrcgrd + longname: Top net solar radiation, clear sky gradient + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129209 + shortname: ttrcgrd + longname: Top net thermal radiation, clear sky gradient + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129210 + shortname: ssrcgrd + longname: Surface net solar radiation, clear sky gradient + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129211 + shortname: strcgrd + longname: Surface net thermal radiation, clear sky gradient + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129212 + shortname: tisrgrd + longname: TOA incident solar radiation gradient + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129214 + shortname: dhrgrd + longname: Diabatic heating by radiation gradient + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129215 + shortname: dhvdgrd + longname: Diabatic heating by vertical diffusion gradient + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129216 + shortname: dhccgrd + longname: Diabatic heating by cumulus convection gradient + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129217 + shortname: dhlcgrd + longname: Diabatic heating large-scale condensation gradient + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129218 + shortname: vdzwgrd + longname: Vertical diffusion of zonal wind gradient + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129219 + shortname: vdmwgrd + longname: Vertical diffusion of meridional wind gradient + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129220 + shortname: ewgdgrd + longname: East-West gravity wave drag tendency gradient + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129221 + shortname: nsgdgrd + longname: North-South gravity wave drag tendency gradient + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129222 + shortname: ctzwgrd + longname: Convective tendency of zonal wind gradient + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129223 + shortname: ctmwgrd + longname: Convective tendency of meridional wind gradient + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129224 + shortname: vdhgrd + longname: Vertical diffusion of humidity gradient + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129225 + shortname: htccgrd + longname: Humidity tendency by cumulus convection gradient + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129226 + shortname: htlcgrd + longname: Humidity tendency by large-scale condensation gradient + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129227 + shortname: crnhgrd + longname: Change from removal of negative humidity gradient + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129228 + shortname: tpgrd + longname: Total precipitation gradient + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129229 + shortname: iewsgrd + longname: Instantaneous X surface stress gradient + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129230 + shortname: inssgrd + longname: Instantaneous Y surface stress gradient + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129231 + shortname: ishfgrd + longname: Instantaneous surface heat flux gradient + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129232 + shortname: iegrd + longname: Instantaneous moisture flux gradient + units: kg m**-2 s + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129233 + shortname: asqgrd + longname: Apparent surface humidity gradient + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129234 + shortname: lsrhgrd + longname: Logarithm of surface roughness length for heat gradient + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129235 + shortname: sktgrd + longname: Skin temperature gradient + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129236 + shortname: stl4grd + longname: Soil temperature level 4 gradient + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129237 + shortname: swl4grd + longname: Soil wetness level 4 gradient + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129238 + shortname: tsngrd + longname: Temperature of snow layer gradient + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129239 + shortname: csfgrd + longname: Convective snowfall gradient + units: m of water equivalent + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129240 + shortname: lsfgrd + longname: Large scale snowfall gradient + units: m of water equivalent + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129241 + shortname: acfgrd + longname: Accumulated cloud fraction tendency gradient + units: (-1 to 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129242 + shortname: alwgrd + longname: Accumulated liquid water tendency gradient + units: (-1 to 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129243 + shortname: falgrd + longname: Forecast albedo gradient + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129244 + shortname: fsrgrd + longname: Forecast surface roughness gradient + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129245 + shortname: flsrgrd + longname: Forecast logarithm of surface roughness for heat gradient + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129246 + shortname: clwcgrd + longname: Specific cloud liquid water content gradient + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129247 + shortname: ciwcgrd + longname: Specific cloud ice water content gradient + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129248 + shortname: ccgrd + longname: Cloud cover gradient + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129249 + shortname: aiwgrd + longname: Accumulated ice water tendency gradient + units: (-1 to 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129250 + shortname: icegrd + longname: Ice age gradient + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129251 + shortname: attegrd + longname: Adiabatic tendency of temperature gradient + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129252 + shortname: athegrd + longname: Adiabatic tendency of humidity gradient + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129253 + shortname: atzegrd + longname: Adiabatic tendency of zonal wind gradient + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129254 + shortname: atmwgrd + longname: Adiabatic tendency of meridional wind gradient + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 129255 + shortname: '~' + longname: Indicates a missing value + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 130208 + shortname: tsru + longname: Top solar radiation upward + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 130209 + shortname: ttru + longname: Top thermal radiation upward + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 130210 + shortname: tsuc + longname: Top solar radiation upward, clear sky + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 130211 + shortname: ttuc + longname: Top thermal radiation upward, clear sky + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 130212 + shortname: clw + longname: Cloud liquid water + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 34 + - 98 +- id: 130213 + shortname: cf + longname: Cloud fraction + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 130214 + shortname: dhr + longname: Diabatic heating by radiation + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 130215 + shortname: dhvd + longname: Diabatic heating by vertical diffusion + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 130216 + shortname: dhcc + longname: Diabatic heating by cumulus convection + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 130217 + shortname: dhlc + longname: Diabatic heating by large-scale condensation + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 130218 + shortname: vdzw + longname: Vertical diffusion of zonal wind + units: m**2 s**-3 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 130219 + shortname: vdmw + longname: Vertical diffusion of meridional wind + units: m**2 s**-3 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 130220 + shortname: ewgd + longname: East-West gravity wave drag + units: m**2 s**-3 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 130221 + shortname: nsgd + longname: North-South gravity wave drag + units: m**2 s**-3 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 130224 + shortname: vdh + longname: Vertical diffusion of humidity + units: kg kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 130225 + shortname: htcc + longname: Humidity tendency by cumulus convection + units: kg kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 130226 + shortname: htlc + longname: Humidity tendency by large-scale condensation + units: kg kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 130228 + shortname: att + longname: Adiabatic tendency of temperature + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 130229 + shortname: ath + longname: Adiabatic tendency of humidity + units: kg kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 130230 + shortname: atzw + longname: Adiabatic tendency of zonal wind + units: m**2 s**-3 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 130231 + shortname: atmwax + longname: Adiabatic tendency of meridional wind + units: m**2 s**-3 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 130232 + shortname: mvv + longname: Mean vertical velocity + units: Pa s**-1 + description:

Please use 235135 for the GRIB2 encoding of this parameter.

+ access_ids: [] + origin_ids: + - 98 +- id: 131001 + shortname: 2tag2 + longname: 2m temperature anomaly of at least +2K + units: '%' + description: This parameter gives the probability (in %) that the 2m temperature + anomaly will be +2K or above. It is derived from the range of possible outcomes + as predicted by the ECMWF + ensemble forecasting system. A higher probability indicates that more ensemble + members are predicting a 2m temperature anomaly of +2K or above.

An anomaly + is a difference from a defined long-term average. 2m temperature is calculated + by interpolating between the lowest model level and the Earth's surface, taking + account of the atmospheric conditions. See further + information. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 131002 + shortname: 2tag1 + longname: 2m temperature anomaly of at least +1K + units: '%' + description: This parameter gives the probability (in %) that the 2m temperature + anomaly will be +1K or above. It is derived from the range of possible outcomes + as predicted by the ECMWF + ensemble forecasting system. A higher probability indicates that more ensemble + members are predicting a 2m temperature anomaly of +1K or above.

An anomaly + is a difference from a defined long-term average. 2m temperature is calculated + by interpolating between the lowest model level and the Earth's surface, taking + account of the atmospheric conditions. See further + information. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 131003 + shortname: 2tag0 + longname: 2m temperature anomaly of at least 0K + units: '%' + description: This parameter gives the probability (in %) that the 2m temperature + anomaly will be 0K or above. It is derived from the range of possible outcomes + as predicted by the ECMWF + ensemble forecasting system. A higher probability indicates that more ensemble + members are predicting a 2m temperature anomaly of 0K or above.

An anomaly + is a difference from a defined long-term average. 2m temperature is calculated + by interpolating between the lowest model level and the Earth's surface, taking + account of the atmospheric conditions. See further + information. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 131004 + shortname: 2talm1 + longname: 2m temperature anomaly of at most -1K + units: '%' + description: This parameter gives the probability (in %) that the 2m temperature + anomaly will be -1K or below. It is derived from the range of possible outcomes + as predicted by the ECMWF + ensemble forecasting system. A higher probability indicates that more ensemble + members are predicting a 2m temperature anomaly of -1K or below.

An anomaly + is a difference from a defined long-term average. 2m temperature is calculated + by interpolating between the lowest model level and the Earth's surface, taking + account of the atmospheric conditions. See further + information. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 131005 + shortname: 2talm2 + longname: 2m temperature anomaly of at most -2K + units: '%' + description: This parameter gives the probability (in %) that the 2m temperature + anomaly will be -2K or below. It is derived from the range of possible outcomes + as predicted by the ECMWF + ensemble forecasting system. A higher probability indicates that more ensemble + members are predicting a 2m temperature anomaly of -2K or below.

An anomaly + is a difference from a defined long-term average. 2m temperature is calculated + by interpolating between the lowest model level and the Earth's surface, taking + account of the atmospheric conditions. See further + information. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 131006 + shortname: tpag20 + longname: Total precipitation anomaly of at least 20 mm + units: '%' + description: This parameter gives the probability (in %) that the total precipitation + anomaly will be 20 mm or above. It is derived from the range of possible outcomes + as predicted by the ECMWF + ensemble forecasting system. A higher probability indicates that more ensemble + members are predicting a total precipitation anomaly of 20mm or above. An anomaly + is a difference from a defined long-term average or climate.

In the ECMWF + Integrated Forecasting System (IFS), total precipitation is rain and snow that + falls to the Earth's surface. It is the sum of large-scale precipitation and convective + precipitation. Large-scale precipitation is generated by the cloud scheme in the + IFS. The cloud scheme represents the formation and dissipation of clouds and large-scale + precipitation due to changes in atmospheric quantities (such as pressure, temperature + and moisture) predicted directly by the IFS at spatial scales of a grid + box or larger. Convective precipitation is generated by the convection scheme + in the IFS. The convection scheme represents convection at spatial scales smaller + than the grid box. See further + information.

Precipitation parameters do not include fog, dew or + the precipitation that evaporates in the atmosphere before it lands at the surface + of the Earth. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 131007 + shortname: tpag10 + longname: Total precipitation anomaly of at least 10 mm + units: '%' + description: This parameter gives the probability (in %) that the total precipitation + anomaly will be 10 mm or above. It is derived from the range of possible outcomes + as predicted by the ECMWF + ensemble forecasting system. A higher probability indicates that more ensemble + members are predicting a total precipitation anomaly of 10mm or above. An anomaly + is a difference from a defined long-term average or climate.

In the ECMWF + Integrated Forecasting System (IFS), total precipitation is rain and snow that + falls to the Earth's surface. It is the sum of large-scale precipitation and convective + precipitation. Large-scale precipitation is generated by the cloud scheme in the + IFS. The cloud scheme represents the formation and dissipation of clouds and large-scale + precipitation due to changes in atmospheric quantities (such as pressure, temperature + and moisture) predicted directly by the IFS at spatial scales of a grid + box or larger. Convective precipitation is generated by the convection scheme + in the IFS. The convection scheme represents convection at spatial scales smaller + than the grid box. See further + information.

Precipitation parameters do not include fog, dew or + the precipitation that evaporates in the atmosphere before it lands at the surface + of the Earth. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 131008 + shortname: tpag0 + longname: Total precipitation anomaly of at least 0 mm + units: '%' + description: This parameter gives the probability (in %) that the total precipitation + anomaly will be 0 mm or above. It is derived from the range of possible outcomes + as predicted by the ECMWF + ensemble forecasting system. A higher probability indicates that more ensemble + members are predicting a total precipitation anomaly of 0mm or above. An anomaly + is a difference from a defined long-term average or climate.

In the ECMWF + Integrated Forecasting System (IFS), total precipitation is rain and snow that + falls to the Earth's surface. It is the sum of large-scale precipitation and convective + precipitation. Large-scale precipitation is generated by the cloud scheme in the + IFS. The cloud scheme represents the formation and dissipation of clouds and large-scale + precipitation due to changes in atmospheric quantities (such as pressure, temperature + and moisture) predicted directly by the IFS at spatial scales of a grid + box or larger. Convective precipitation is generated by the convection scheme + in the IFS. The convection scheme represents convection at spatial scales smaller + than the grid box. See further + information.

Precipitation parameters do not include fog, dew or + the precipitation that evaporates in the atmosphere before it lands at the surface + of the Earth. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 131009 + shortname: stag0 + longname: Surface temperature anomaly of at least 0K + units: '%' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 131010 + shortname: mslag0 + longname: Mean sea level pressure anomaly of at least 0 Pa + units: '%' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 131015 + shortname: h0dip + longname: Height of 0 degree isotherm probability + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 131016 + shortname: hslp + longname: Height of snowfall limit probability + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 131017 + shortname: saip + longname: Showalter index probability + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 131018 + shortname: whip + longname: Whiting index probability + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 131020 + shortname: talm2 + longname: Temperature anomaly less than -2 K + units: '%' + description: This parameter gives the probability (in %) that the temperature anomaly + is below -2 K. It is derived from the range of possible outcomes as predicted + by the ECMWF + ensemble forecasting system. A higher probability indicates that more ensemble + members are predicting a temperature anomaly below -2 K. An anomaly is a difference + from a defined long-term average. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 131021 + shortname: tag2 + longname: Temperature anomaly of at least +2 K + units: '%' + description: This parameter gives the probability (in %) that the temperature anomaly + is 2 K or above. It is derived from the range of possible outcomes as predicted + by the ECMWF + ensemble forecasting system. A higher probability indicates that more ensemble + members are predicting a temperature anomaly of 2 K or above. An anomaly is a + difference from a defined long-term average. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 131022 + shortname: talm8 + longname: Temperature anomaly less than -8 K + units: '%' + description: This parameter gives the probability (in %) that the temperature anomaly + is below -8 K. It is derived from the range of possible outcomes as predicted + by the ECMWF + ensemble forecasting system. A higher probability indicates that more ensemble + members are predicting a temperature anomaly below -8 K. An anomaly is a difference + from a defined long-term average. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 131023 + shortname: talm4 + longname: Temperature anomaly less than -4 K + units: '%' + description: This parameter gives the probability (in %) that the temperature anomaly + is below -4 K. It is derived from the range of possible outcomes as predicted + by the ECMWF + ensemble forecasting system. A higher probability indicates that more ensemble + members are predicting a temperature anomaly below -4 K. An anomaly is a difference + from a defined long-term average. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 131024 + shortname: tag4 + longname: Temperature anomaly greater than +4 K + units: '%' + description: This parameter gives the probability (in %) that the temperature anomaly + exceeds +4 K. It is derived from the range of possible outcomes as predicted by + the ECMWF + ensemble forecasting system. A higher probability indicates that more ensemble + members are predicting a temperature anomaly above +4 K. An anomaly is a difference + from a defined long-term average. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 131025 + shortname: tag8 + longname: Temperature anomaly greater than +8 K + units: '%' + description: This parameter gives the probability (in %) that the temperature anomaly + exceeds +8 K. It is derived from the range of possible outcomes as predicted by + the ECMWF + ensemble forecasting system. A higher probability indicates that more ensemble + members are predicting a temperature anomaly above +8 K. An anomaly is a difference + from a defined long-term average. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 131049 + shortname: 10gp + longname: 10 metre wind gust probability + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 131059 + shortname: capep + longname: Convective available potential energy probability + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 131060 + shortname: tpg1 + longname: Total precipitation of at least 1 mm + units: '%' + description: This parameter gives the probability (in %) that total precipitation + will be 1 mm or above. It is derived from the range of possible outcomes as predicted + by the ECMWF + ensemble forecasting system. A higher probability indicates that more ensemble + members are predicting total precipitation of 1 mm or above.

In the ECMWF + Integrated Forecasting System (IFS), total precipitation is rain and snow that + falls to the Earth's surface. For this parameter, it is accumulated over a particular + time period which depends on the data extracted.

Total precipitation + is the sum of large-scale precipitation and convective precipitation. Large-scale + precipitation is generated by the cloud scheme in the IFS. The cloud scheme represents + the formation and dissipation of clouds and large-scale precipitation due to changes + in atmospheric quantities (such as pressure, temperature and moisture) predicted + directly by the IFS at spatial scales of a grid + box or larger. Convective precipitation is generated by the convection scheme + in the IFS. The convection scheme represents convection at spatial scales smaller + than the grid box. See further + information. Precipitation parameters do not include fog, dew or the precipitation + that evaporates in the atmosphere before it lands at the surface of the Earth. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 131061 + shortname: tpg5 + longname: Total precipitation of at least 5 mm + units: '%' + description: This parameter gives the probability (in %) that total precipitation + will be 5 mm or above. It is derived from the range of possible outcomes as predicted + by the ECMWF + ensemble forecasting system. A higher probability indicates that more ensemble + members are predicting total precipitation of 5 mm or above.

In the ECMWF + Integrated Forecasting System (IFS), total precipitation is rain and snow that + falls to the Earth's surface. For this parameter, it is accumulated over a particular + time period which depends on the data extracted.

Total precipitation + is the sum of large-scale precipitation and convective precipitation. Large-scale + precipitation is generated by the cloud scheme in the IFS. The cloud scheme represents + the formation and dissipation of clouds and large-scale precipitation due to changes + in atmospheric quantities (such as pressure, temperature and moisture) predicted + directly by the IFS at spatial scales of a grid + box or larger. Convective precipitation is generated by the convection scheme + in the IFS. The convection scheme represents convection at spatial scales smaller + than the grid box. See further + information. Precipitation parameters do not include fog, dew or the precipitation + that evaporates in the atmosphere before it lands at the surface of the Earth. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 131062 + shortname: tpg10 + longname: Total precipitation of at least 10 mm + units: '%' + description: This parameter gives the probability (in %) that total precipitation + will be 10 mm or above. It is derived from the range of possible outcomes as + predicted by the ECMWF + ensemble forecasting system. A higher probability indicates that more ensemble + members are predicting total precipitation of 10 mm or above.

In the + ECMWF Integrated Forecasting System (IFS), total precipitation is rain and snow + that falls to the Earth's surface. For this parameter, it is accumulated over + a particular + time period which depends on the data extracted.

Total precipitation + is the sum of large-scale precipitation and convective precipitation. Large-scale + precipitation is generated by the cloud scheme in the IFS. The cloud scheme represents + the formation and dissipation of clouds and large-scale precipitation due to changes + in atmospheric quantities (such as pressure, temperature and moisture) predicted + directly by the IFS at spatial scales of a grid + box or larger. Convective precipitation is generated by the convection scheme + in the IFS. The convection scheme represents convection at spatial scales smaller + than the grid box. See further + information. Precipitation parameters do not include fog, dew or the precipitation + that evaporates in the atmosphere before it lands at the surface of the Earth. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 131063 + shortname: tpg20 + longname: Total precipitation of at least 20 mm + units: '%' + description: This parameter gives the probability (in %) that total precipitation + will be 20 mm or above. It is derived from the range of possible outcomes as + predicted by the ECMWF + ensemble forecasting system. A higher probability indicates that more ensemble + members are predicting total precipitation of 20 mm or above.

In the + ECMWF Integrated Forecasting System (IFS), total precipitation is rain and snow + that falls to the Earth's surface. For this parameter, it is accumulated over + a particular + time period which depends on the data extracted.

Total precipitation + is the sum of large-scale precipitation and convective precipitation. Large-scale + precipitation is generated by the cloud scheme in the IFS. The cloud scheme represents + the formation and dissipation of clouds and large-scale precipitation due to changes + in atmospheric quantities (such as pressure, temperature and moisture) predicted + directly by the IFS at spatial scales of a grid + box or larger. Convective precipitation is generated by the convection scheme + in the IFS. The convection scheme represents convection at spatial scales smaller + than the grid box. See further + information. Precipitation parameters do not include fog, dew or the precipitation + that evaporates in the atmosphere before it lands at the surface of the Earth. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 131064 + shortname: tpl01 + longname: Total precipitation less than 0.1 mm + units: '%' + description: This parameter gives the probability (in %) that total precipitation + will be below 0.1 mm. It is derived from the range of possible outcomes as predicted + by the ECMWF + ensemble forecasting system. A higher probability indicates that more ensemble + members are predicting total precipitation below 0.1 mm.

In the ECMWF + Integrated Forecasting System (IFS), total precipitation is rain and snow that + falls to the Earth's surface. For this parameter, it is accumulated over a particular + time period which depends on the data extracted.

Total precipitation + is the sum of large-scale precipitation and convective precipitation. Large-scale + precipitation is generated by the cloud scheme in the IFS. The cloud scheme represents + the formation and dissipation of clouds and large-scale precipitation due to changes + in atmospheric quantities (such as pressure, temperature and moisture) predicted + directly by the IFS at spatial scales of a grid + box or larger. Convective precipitation is generated by the convection scheme + in the IFS. The convection scheme represents convection at spatial scales smaller + than the grid box. See further + information. Precipitation parameters do not include fog, dew or the precipitation + that evaporates in the atmosphere before it lands at the surface of the Earth. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 131065 + shortname: tprl1 + longname: Total precipitation rate less than 1 mm/day + units: '%' + description: This parameter gives the probability (in %) that the total precipitation + rate will be less than 1 mm/day. It is derived from the range of possible outcomes + as predicted by the ECMWF + ensemble forecasting system. A higher probability indicates that more ensemble + members are predicting a total precipitation rate of less than 1 mm/day. An anomaly + is a difference from a defined long-term average or climate.

In the ECMWF + Integrated Forecasting System (IFS), total precipitation is rain and snow that + falls to the Earth's surface. It is the sum of large-scale precipitation and + convective precipitation. Large-scale precipitation is generated by the cloud + scheme in the IFS. The cloud scheme represents the formation and dissipation of + clouds and large-scale precipitation due to changes in atmospheric quantities + (such as pressure, temperature and moisture) predicted directly by the IFS at + spatial scales of a grid box or larger. Convective precipitation is generated + by the convection scheme in the IFS. The convection scheme represents convection + at spatial scales smaller than the grid box.See further + information. Precipitation parameters do not include fog, dew or the precipitation + that evaporates in the atmosphere before it lands at the surface of the Earth. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 131066 + shortname: tprg3 + longname: Total precipitation rate of at least 3 mm/day + units: '%' + description: This parameter gives the probability (in %) that the total precipitation + rate will 3 mm/day or above. It is derived from the range of possible outcomes + as predicted by the ECMWF + ensemble forecasting system. A higher probability indicates that more ensemble + members are predicting a total precipitation rate of 3 mm/day or above. An anomaly + is a difference from a defined long-term average or climate.

In the ECMWF + Integrated Forecasting System (IFS), total precipitation is rain and snow that + falls to the Earth's surface. It is the sum of large-scale precipitation and + convective precipitation. Large-scale precipitation is generated by the cloud + scheme in the IFS. The cloud scheme represents the formation and dissipation of + clouds and large-scale precipitation due to changes in atmospheric quantities + (such as pressure, temperature and moisture) predicted directly by the IFS at + spatial scales of a grid + box or larger. Convective precipitation is generated by the convection scheme + in the IFS. The convection scheme represents convection at spatial scales smaller + than the grid box.See further + information. Precipitation parameters do not include fog, dew or the precipitation + that evaporates in the atmosphere before it lands at the surface of the Earth. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 131067 + shortname: tprg5 + longname: Total precipitation rate of at least 5 mm/day + units: '%' + description: This parameter gives the probability (in %) that the total precipitation + rate will 5 mm/day or above. It is derived from the range of possible outcomes + as predicted by the ECMWF + ensemble forecasting system. A higher probability indicates that more ensemble + members are predicting a total precipitation rate of 5 mm/day or above. An anomaly + is a difference from a defined long-term average or climate.

In the ECMWF + Integrated Forecasting System (IFS), total precipitation is rain and snow that + falls to the Earth's surface. It is the sum of large-scale precipitation and + convective precipitation. Large-scale precipitation is generated by the cloud + scheme in the IFS. The cloud scheme represents the formation and dissipation of + clouds and large-scale precipitation due to changes in atmospheric quantities + (such as pressure, temperature and moisture) predicted directly by the IFS at + spatial scales of a grid + box or larger. Convective precipitation is generated by the convection scheme + in the IFS. The convection scheme represents convection at spatial scales smaller + than the grid box.See further + information. Precipitation parameters do not include fog, dew or the precipitation + that evaporates in the atmosphere before it lands at the surface of the Earth. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 131068 + shortname: 10spg10 + longname: 10 metre Wind speed of at least 10 m/s + units: '%' + description: This parameter gives the probability (in %) that the 10 m wind speed + will be 10 m s-1 or above. It is derived from the range of possible outcomes as + predicted by the ECMWF + ensemble forecasting system. A higher probability indicates that more ensemble + members are predicting a 10 m wind speed of 10 m s-1 or above.

10 metre + wind speed is the horizontal speed of the wind, or movement of air, at a height + of ten metres above the surface of the Earth. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 131069 + shortname: 10spg15 + longname: 10 metre Wind speed of at least 15 m/s + units: '%' + description: This parameter gives the probability (in %) that the 10 m wind speed + will be 15 m s-1 or above. It is derived from the range of possible outcomes as + predicted by the ECMWF + ensemble forecasting system. A higher probability indicates that more ensemble + members are predicting a 10 m wind speed of 15 m s-1 or above.

10 metre + wind speed is the horizontal speed of the wind, or movement of air, at a height + of ten metres above the surface of the Earth. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 131070 + shortname: 10fgg15 + longname: 10 metre wind gust of at least 15 m/s + units: '%' + description: 'This parameter gives the probability (in %) that the 10 m gust will + be 15 m s-1 or above. It is derived from the range of possible outcomes as predicted + by the ECMWF + ensemble forecasting system. A higher probability indicates that more ensemble + members are predicting a 10 m gust speed of 15 m s-1 or above.

The WMO + defines a wind gust as the maximum of the wind averaged over 3 second intervals. This + duration is shorter than a model + time step, and so the ECMWF Integrated Forecasting System deduces the magnitude + of a gust within each time step from the time-step-averaged surface stress, surface + friction, wind shear and stability. Then, the maximum wind gust is selected from + the gusts at each time step during a particular time period which depends on the + data extracted.

This parameter is calculated at a height of ten metres + above the surface of the Earth. ' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 131071 + shortname: 10fgg20 + longname: 10 metre wind gust of at least 20 m/s + units: '%' + description: 'This parameter gives the probability (in %) that the 10 m gust will + be 20 m s-1 or above. It is derived from the range of possible outcomes as predicted + by the ECMWF + ensemble forecasting system. A higher probability indicates that more ensemble + members are predicting a 10 m gust speed of 20 m s-1 or above.

The WMO + defines a wind gust as the maximum of the wind averaged over 3 second intervals. This + duration is shorter than a model + time step, and so the ECMWF Integrated Forecasting System deduces the magnitude + of a gust within each time step from the time-step-averaged surface stress, surface + friction, wind shear and stability. Then, the maximum wind gust is selected from + the gusts at each time step during a particular time period which depends on the + data extracted.

This parameter is calculated at a height of ten metres + above the surface of the Earth. ' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 131072 + shortname: 10fgg25 + longname: 10 metre wind gust of at least 25 m/s + units: '%' + description: This parameter gives the probability (in %) that the 10 m gust will + be 25 m s-1 or above. It is derived from the range of possible outcomes as predicted + by the ECMWF + ensemble forecasting system. A higher probability indicates that more ensemble + members are predicting a 10 m gust speed of 25 m s-1 or above.

The WMO + defines a wind gust as the maximum of the wind averaged over 3 second intervals. This + duration is shorter than a model + time step, and so the ECMWF Integrated Forecasting System deduces the magnitude + of a gust within each time step from the time-step-averaged surface stress, surface + friction, wind shear and stability. Then, the maximum wind gust is selected from + the gusts at each time step during a particular time period which depends on the + data extracted.

This parameter is calculated at a height of ten metres + above the surface of the Earth. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 131073 + shortname: 2tl273 + longname: 2 metre temperature less than 273.15 K + units: '%' + description: Probability + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 131074 + shortname: swhg2 + longname: Significant wave height of at least 2 m + units: '%' + description: This parameter gives the probability (in %) that the significant wave + height will be 2 m or above. It is derived from the range of possible outcomes + as predicted by the ECMWF + ensemble forecasting system. A higher probability indicates that more ensemble + members are predicting a significant wave height of 2 m or above.

The + significant wave height represents the average height of the highest third of + surface ocean/sea waves generated by wind and swell. It represents the vertical + distance between the wave crest and the wave trough.

The ocean/sea surface + wave field consists of a combination of waves with different heights, lengths + and directions (known as the two-dimensional wave spectrum). The wave spectrum + can be decomposed into wind-sea waves, which are directly affected by local winds, + and swell, the waves that were generated by the wind at a different location and + time. This parameter takes account of both.

More strictly, this significant + wave height is four times the square root of the integral over all directions + and all frequencies of the two-dimensional wave spectrum. See + further documentation.

Significant wave height can be used to assess + sea state and swell. For example, engineers use significant wave height to calculate + the load on structures in the open ocean, such as oil platforms, or in coastal + applications. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 131075 + shortname: swhg4 + longname: Significant wave height of at least 4 m + units: '%' + description: This parameter gives the probability (in %) that the significant wave + height will be 4 m or above. It is derived from the range of possible outcomes + as predicted by the ECMWF + ensemble forecasting system. A higher probability indicates that more ensemble + members are predicting a significant wave height of 4 m or above.

The + significant wave height represents the average height of the highest third of + surface ocean/sea waves generated by wind and swell. It represents the vertical + distance between the wave crest and the wave trough.

The ocean/sea surface + wave field consists of a combination of waves with different heights, lengths + and directions (known as the two-dimensional wave spectrum). The wave spectrum + can be decomposed into wind-sea waves, which are directly affected by local winds, + and swell, the waves that were generated by the wind at a different location and + time. This parameter takes account of both.

More strictly, this significant + wave height is four times the square root of the integral over all directions + and all frequencies of the two-dimensional wave spectrum. See + further documentation.

Significant wave height can be used to assess + sea state and swell. For example, engineers use significant wave height to calculate + the load on structures in the open ocean, such as oil platforms, or in coastal + applications. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 131076 + shortname: swhg6 + longname: Significant wave height of at least 6 m + units: '%' + description: This parameter gives the probability (in %) that the significant wave + height will be 6 m or above. It is derived from the range of possible outcomes + as predicted by the ECMWF + ensemble forecasting system. A higher probability indicates that more ensemble + members are predicting a significant wave height of 6 m or above.

The + significant wave height represents the average height of the highest third of + surface ocean/sea waves generated by wind and swell. It represents the vertical + distance between the wave crest and the wave trough.

The ocean/sea surface + wave field consists of a combination of waves with different heights, lengths + and directions (known as the two-dimensional wave spectrum). The wave spectrum + can be decomposed into wind-sea waves, which are directly affected by local winds, + and swell, the waves that were generated by the wind at a different location and + time. This parameter takes account of both.

More strictly, this significant + wave height is four times the square root of the integral over all directions + and all frequencies of the two-dimensional wave spectrum. See + further documentation.

Significant wave height can be used to assess + sea state and swell. For example, engineers use significant wave height to calculate + the load on structures in the open ocean, such as oil platforms, or in coastal + applications. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 131077 + shortname: swhg8 + longname: Significant wave height of at least 8 m + units: '%' + description: This parameter gives the probability (in %) that the significant wave + height will be 8 m or above. It is derived from the range of possible outcomes + as predicted by the ECMWF + ensemble forecasting system. A higher probability indicates that more ensemble + members are predicting a significant wave height of 8 m or above.

The + significant wave height represents the average height of the highest third of + surface ocean/sea waves generated by wind and swell. It represents the vertical + distance between the wave crest and the wave trough.

The ocean/sea surface + wave field consists of a combination of waves with different heights, lengths + and directions (known as the two-dimensional wave spectrum). The wave spectrum + can be decomposed into wind-sea waves, which are directly affected by local winds, + and swell, the waves that were generated by the wind at a different location and + time. This parameter takes account of both.

More strictly, this significant + wave height is four times the square root of the integral over all directions + and all frequencies of the two-dimensional wave spectrum. See + further documentation.

Significant wave height can be used to assess + sea state and swell. For example, engineers use significant wave height to calculate + the load on structures in the open ocean, such as oil platforms, or in coastal + applications. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 131078 + shortname: mwpg8 + longname: Mean wave period of at least 8 s + units: '%' + description: This parameter gives the probability (in %) that the mean wave period + will be 8 s or above. It is derived from the range of possible outcomes as predicted + by the ECMWF + ensemble forecasting system. A higher probability indicates that more ensemble + members are predicting a mean wave period of 8 s or above.

The wave period + is the average time it takes for two consecutive wave crests, on the surface of + the ocean/sea, to pass through a fixed point.

The ocean/sea surface + wave field consists of a combination of waves with different heights, lengths + and directions (known as the two-dimensional wave spectrum). This parameter is + derived from the mean over all frequencies and directions of the two-dimensional + wave spectrum.

The wave spectrum can be decomposed into wind-sea waves, + which are directly affected by local winds, and swell, the waves that were generated + by the wind at a different location and time. This parameter takes account of + both. See further + information. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 131079 + shortname: mwpg10 + longname: Mean wave period of at least 10 s + units: '%' + description: This parameter gives the probability (in %) that the mean wave period + will be 10 s or above. It is derived from the range of possible outcomes as predicted + by the ECMWF + ensemble forecasting system. A higher probability indicates that more ensemble + members are predicting a mean wave period of 10 s or above.

The wave + period is the average time it takes for two consecutive wave crests, on the surface + of the ocean/sea, to pass through a fixed point.

The ocean/sea surface + wave field consists of a combination of waves with different heights, lengths + and directions (known as the two-dimensional wave spectrum). This parameter is + derived from the mean over all frequencies and directions of the two-dimensional + wave spectrum.

The wave spectrum can be decomposed into wind-sea waves, + which are directly affected by local winds, and swell, the waves that were generated + by the wind at a different location and time. This parameter takes account of + both. See further + information. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 131080 + shortname: mwpg12 + longname: Mean wave period of at least 12 s + units: '%' + description: This parameter gives the probability (in %) that the mean wave period + will be 12 s or above. It is derived from the range of possible outcomes as predicted + by the ECMWF + ensemble forecasting system. A higher probability indicates that more ensemble + members are predicting a mean wave period of 12 s or above.

The wave + period is the average time it takes for two consecutive wave crests, on the surface + of the ocean/sea, to pass through a fixed point.

The ocean/sea surface + wave field consists of a combination of waves with different heights, lengths + and directions (known as the two-dimensional wave spectrum). This parameter is + derived from the mean over all frequencies and directions of the two-dimensional + wave spectrum.

The wave spectrum can be decomposed into wind-sea waves, + which are directly affected by local winds, and swell, the waves that were generated + by the wind at a different location and time. This parameter takes account of + both. See further + information. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 131081 + shortname: mwpg15 + longname: Mean wave period of at least 15 s + units: '%' + description: This parameter gives the probability (in %) that the mean wave period + will be 15 s or above. It is derived from the range of possible outcomes as predicted + by the ECMWF + ensemble forecasting system. A higher probability indicates that more ensemble + members are predicting a mean wave period of 15 s or above.

The wave + period is the average time it takes for two consecutive wave crests, on the surface + of the ocean/sea, to pass through a fixed point.

The ocean/sea surface + wave field consists of a combination of waves with different heights, lengths + and directions (known as the two-dimensional wave spectrum). This parameter is + derived from the mean over all frequencies and directions of the two-dimensional + wave spectrum.

The wave spectrum can be decomposed into wind-sea waves, + which are directly affected by local winds, and swell, the waves that were generated + by the wind at a different location and time. This parameter takes account of + both. See further + information. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 131082 + shortname: tpg40 + longname: Total precipitation of at least 40 mm + units: '%' + description: Probability + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 131083 + shortname: tpg60 + longname: Total precipitation of at least 60 mm + units: '%' + description: Probability + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 131084 + shortname: tpg80 + longname: Total precipitation of at least 80 mm + units: '%' + description: Probability + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 131085 + shortname: tpg100 + longname: Total precipitation of at least 100 mm + units: '%' + description: Probability + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 131086 + shortname: tpg150 + longname: Total precipitation of at least 150 mm + units: '%' + description: Probability + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 131087 + shortname: tpg200 + longname: Total precipitation of at least 200 mm + units: '%' + description: Probability + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 131088 + shortname: tpg300 + longname: Total precipitation of at least 300 mm + units: '%' + description: Probability + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 131089 + shortname: pts + longname: Probability of a tropical storm + units: '%' + description: This parameter is the potential tropical storm activity. It is derived + from the range of possible outcomes as predicted by the ECMWF + ensemble forecasting system. A higher probability indicates that more ensemble + members are predicting a tropical storm.

This parameter is calculated + from the number of ensemble members that have a tropical storm within a radius + of 300 km of a location, within 48 hours. This is called the 'strike probability'.

A + tropical storm is a circular pattern of wind centred around an area of non-frontal + low atmospheric pressure at mean sea-level that developed over the tropics or + sub-tropics. Its wind speeds near the surface of the Earth are greater than 17 + m s-1 and less than 32 m s-1. In the northern hemisphere it rotates in an anti-clockwise + direction near the surface, and in the southern hemisphere it rotates clockwise. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 131090 + shortname: ph + longname: Probability of a hurricane + units: '%' + description: This parameter is the potential hurricane or typhoon activity. It is + derived from the range of possible outcomes as predicted by the ECMWF + ensemble forecasting system. A higher probability indicates that more ensemble + members are predicting a hurricane or typhoon.

This parameter is calculated + from the number of ensemble members that have a hurricane or typhoon within a + radius of 300 km of a location, within 48 hours of the specified time. This is + called the 'strike probability'.

A hurricane is a circular pattern of + wind centred around an area of non-frontal low atmospheric pressure at mean sea-level + that develops over the tropics or sub-tropics. Its wind speeds near the surface + of the Earth are greater than 32 m s-1. In the northern hemisphere it rotates + in an anti-clockwise direction near the surface, and in the southern hemisphere + it rotates clockwise. In the western North Pacific it is called a typhoon. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 131091 + shortname: ptd + longname: Probability of a tropical depression + units: '%' + description: This parameter is the potential tropical depression activity. It is + derived from the range of possible outcomes as predicted by the ECMWF + ensemble forecasting system. A higher probability indicates that more ensemble + members are predicting a tropical depression.

This parameter is calculated + from the number of ensemble members that have a tropical depression within a radius + of 300 km of a location, within 48 hours of the specified time. This is sometimes + called the 'strike probability'..

A tropical depression is a circular + pattern of wind centred around an area of non-frontal low atmospheric pressure + at mean sea-level that developed over the tropics or sub-tropics. Its wind speeds + near the surface of the Earth are greater than 8 m s-1 and up to 17 m s-1. In + the northern hemisphere it rotates in an anti-clockwise direction near the surface, + and in the southern hemisphere it rotates clockwise. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 131092 + shortname: cpts + longname: Climatological probability of a tropical storm + units: '%' + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 131093 + shortname: cph + longname: Climatological probability of a hurricane + units: '%' + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 131094 + shortname: cptd + longname: Climatological probability of a tropical depression + units: '%' + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 131095 + shortname: pats + longname: Probability anomaly of a tropical storm + units: '%' + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 131096 + shortname: pah + longname: Probability anomaly of a hurricane + units: '%' + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 131097 + shortname: patd + longname: Probability anomaly of a tropical depression + units: '%' + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 131098 + shortname: tpg25 + longname: Total precipitation of at least 25 mm + units: '%' + description: '' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 131099 + shortname: tpg50 + longname: Total precipitation of at least 50 mm + units: '%' + description: '' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 131100 + shortname: 10fgg10 + longname: 10 metre wind gust of at least 10 m/s + units: '%' + description: '' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 131129 + shortname: zp + longname: Geopotential probability + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 131130 + shortname: tap + longname: Temperature anomaly probability + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 131139 + shortname: stl1p + longname: Soil temperature level 1 probability + units: '%' + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 131144 + shortname: sfp + longname: Snowfall (convective + stratiform) probability + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 131151 + shortname: mslpp + longname: Mean sea level pressure probability + units: '%' + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 131164 + shortname: tccp + longname: Total cloud cover probability + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 131165 + shortname: 10sp + longname: 10 metre speed probability + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 131167 + shortname: 2tp + longname: 2 metre temperature probability + units: '%' + description: This parameter is the probability (in %) that the 2 metre temperature + falls within a particular quantile of the probability distribution function (pdf) + for 2 metre temperature. It is derived from the range of possible outcomes as + predicted by the ECMWF + ensemble forecasting system.

The 2 metre temperature is the temperature + of air at 2 m above the surface of land, sea or in-land waters. It is the standard + for surface-level temperature measurements on land.

2m temperature is + calculated by interpolating between the lowest model level and the Earth's surface, + taking account of the atmospheric conditions. See + further information .

A quantile is the division of the pdf into + equally spaced interval. A higher probability indicates that more ensemble members + are predicting a 2 metre temperature in that part of the quantile range. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 131201 + shortname: mx2tp + longname: Maximum 2 metre temperature probability + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 131202 + shortname: mn2tp + longname: Minimum 2 metre temperature probability + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 131228 + shortname: tpp + longname: Total precipitation probability + units: '%' + description: This parameter is the probability (in %) that the total precipitation + falls within a particular quantile of the probability distribution function (pdf) + for total precipitation. It is derived from the range of possible outcomes as + predicted by the ECMWF + ensemble forecasting system.

The user decides how many quantiles + the pdf is divided into, and which one the probability describes, e.g. lowest + third, middle third or highest third. A higher probability indicates that more + ensemble members are predicting a total precipitation in the selected part of + the range.

In the ECMWF Integrated Forecasting System (IFS), total precipitation + is rain and snow that falls to the Earth's surface. It is the sum of large-scale + precipitation and convective precipitation. Large-scale precipitation is generated + by the cloud scheme in the IFS. The cloud scheme represents the formation and + dissipation of clouds and large-scale precipitation due to changes in atmospheric + quantities (such as pressure, temperature and moisture) predicted directly by + the IFS at spatial scales of a grid box or larger. Convective precipitation is + generated by the convection scheme in the IFS. The convection scheme represents + convection at spatial scales smaller than the grid box. See further + information. Precipitation parameters do not include fog, dew or the precipitation + that evaporates in the atmosphere before it lands at the surface of the Earth. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 131229 + shortname: swhp + longname: Significant wave height probability + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 131232 + shortname: mwpp + longname: Mean wave period probability + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 131255 + shortname: '~' + longname: Indicates a missing value + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 131256 + shortname: 10cogug25 + longname: 10 metre convective gust of at least 25 m/s + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 132044 + shortname: capesi + longname: Convective available potential energy shear index + units: Numeric + description:

From 48r1 this parameter is based on most unstable CAPE rather than + the previously used surface based CAPE.

High values of this parameter indicate + where deep, organised convection is more likely to occur, if it is initiated. + When air rises through a large depth of the atmosphere extensive condensation + can occur and heavy rainfall, thunderstorms and other severe weather can result. 

The + likelihood of severe weather and its level of intensity tend to increase with + increasing organisation of convection. Convective supercells are the most prominent + example. Such organised areas of convection tend to occur where wind changes rapidly + with height i.e., in areas with strong vertical wind shear.

This parameter + shows how extreme the ensemble forecast of convective available potential energy + shear (CAPES) is, relative to the model climate. It is one of the ECMWF Extreme + Forecast Indices (EFIs). Values range from -1 to +1. 

 

  • The + closer the EFI is to +1 or -1, the more extreme the forecast CAPES values are.
  • EFI + = 0 indicates that extreme CAPES values are unlikely, although convection can + still occur.
  • EFI = +1 occurs when all the ensemble members' forecast values + are above the maximum of the model climate. In this case, it means that very high + CAPES values are expected, relative to the model climate .
  • EFI = -1 occurs + when all the ensemble members' forecast values are below the minimum of the model + climate. In this case, it means that very low CAPES values are expected, relative + to the model climate.



See more + information about the EFI . See more + information about the ensemble forecast.

To help determine whether + convection will be initiated or not, the probability forecast for precipitation + (for example) can be used, in conjunction with this parameter.

The convective + available potential energy shear (CAPES) is the product of wind shear and the + square root of convective available potential energy (CAPE). The wind shear denotes + bulk shear which is a vector difference of winds at two different heights in the + atmosphere (925 hPa and 500 hPa). The square root of CAPE is proportional to the + maximum vertical velocity in convective updraughts.

+ access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 132045 + shortname: wvfi + longname: Water vapour flux index + units: Numeric + description: "Water Vapour Flux Index is a dimensionless parameter which represents\ + \ the Extreme Forecast Index (EFI) of the Water Vapour Flux (wvf) averaged for\ + \ a specified forecast period. It varies between -1 and 1. Shift of Tails (SOT)\ + \ for wvfi is also computed and it can be retrieved by specifying type=sot. For\ + \ details about wvfi please see:\r\n
\r\nLavers, D.A., E. Zsoter, D.S. Richardson,\ + \ and F. Pappenberger, 2017: An Assessment of the ECMWF Extreme Forecast Index\ + \ for Water Vapor Transport during Boreal Winter. Wea. Forecasting, 32, 1667–1674,\ + \ https://doi.org/10.1175/WAF-D-17-0073.1\r\n
\r\nLavers, D. A., F. Pappenberger,\ + \ D. S. Richardson, and E. Zsoter (2016), ECMWF Extreme Forecast Index for water\ + \ vapor transport: A forecast tool for atmospheric rivers and extreme precipitation,\ + \ Geophys. Res. Lett., 43, doi:10.1002/2016GL071320." + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 132049 + shortname: 10fgi + longname: 10 metre wind gust index + units: Numeric + description: This parameter indicates how extreme the ensemble forecast 10 metre + wind gust is, relative to the model climate. It is one of the ECMWF Extreme Forecast + Indices (EFIs). Values range from -1 to +1.

  • The closer the EFI + is to +1 or -1, the more likely an extreme event is.
  • EFI = 0 indicates + an extreme event is unlikely.
  • EFI = +1 occurs when all the ensemble members' + forecast values are above the maximum of the model climate. In this case, it means + that much stronger gusts are expected, relative to the model climate.
  • EFI + = -1 occurs when all the ensemble members' forecast values are below the minimum + of the model climate. In this case, it means that very calm conditions are expected, + relative to the model climate.
See more + information about the EFI. See more + information about the ensemble forecast.

The WMO defines a wind gust + as the maximum of the wind averaged over 3 second intervals. This duration is + shorter than a model + time step, and so the ECMWF Integrated Forecasting System deduces the magnitude + of a gust within each time step from the time-step-averaged surface stress, surface + friction, wind shear and stability. Then, the maximum wind gust is selected from + the gusts at each time step during a particular time period which depends on the + data extracted.

This parameter is calculated at a height of ten metres + above the surface of the Earth. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 132059 + shortname: capei + longname: Convective available potential energy index + units: Numeric + description:

From 48r1 this parameter is based on most unstable CAPE rather than + the previously used surface based CAPE.

High values of this parameter indicate + where deep convection is more likely to occur, if it is initiated. When air rises + through a large depth of the atmosphere, extensive condensation can occur and + heavy rainfall, thunderstorms and other severe weather can result. 

This + parameter shows how extreme the ensemble forecast of convective available potential + energy (CAPE) is, relative to the model climate. It is one of the ECMWF Extreme + Forecast Indices (EFIs). Values range from -1 to +1. 

 

  • The + closer the EFI is to +1 or -1, the more extreme the forecast CAPE values are.
  • EFI + = 0 indicates that extreme CAPE values are unlikely, although convection can still + occur.
  • EFI = +1 occurs when all the ensemble members' forecast values + are above the maximum of the model climate. In this case, it means that very high + CAPE values are expected, relative to the model climate.
  • EFI = -1 occurs + when all the ensemble members' forecast values are below the minimum of the model + climate. In this case, it means that very low CAPE values are expected, relative + to the model climate.

See more + information about the EFI . See more + information about the ensemble forecast .

To help determine whether + deep, moist convection will be initiated or not, the probability forecast for + precipitation (for example) can be used, in conjunction with this parameter.

+ access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 132144 + shortname: sfi + longname: Snowfall index + units: Numeric + description: This parameter indicates how extreme the ensemble forecast accumulated + total snowfall is relative to the model climate. It is one of the ECMWF Extreme + Forecast Indices (EFIs). Values range from -1 to +1.

  • The closer + the EFI is to +1 or -1, the more likely an extreme event is.
  • EFI = 0 indicates + an extreme event is unlikely.
  • EFI = +1 occurs when all the ensemble members' + forecast values are above the maximum of the model climate. In this case, it means + that heavy snowfall is expected, relative to the model climate.
  • EFI = + -1 occurs when all the ensemble members' forecast values are below the minimum + of the model climate. In this case, it means that little snowfall is expected, + relative to the model climate.


This parameter is based on the + accumulated total snow that has fallen to the Earth's surface. Snowfall is the + sum of large-scale snowfall and convective snowfall. Large-scale snowfall is generated + by the cloud scheme in the ECMWF Integrated Forecast System. The cloud scheme + represents the formation and dissipation of clouds and large-scale snowfall due + to changes in atmospheric quantities (such as pressure, temperature and moisture) + predicted directly by the IFS at spatial scales of a grid box or larger. Convective + snowfall is generated by the convection scheme in the IFS. The convection scheme + represents convection at spatial scales smaller than the grid box. See further + information.

See more + information about the EFI. See more + information about the ensemble forecast. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 132165 + shortname: 10wsi + longname: 10 metre speed index + units: Numeric + description: This parameter indicates how extreme the ensemble forecast 10 metre + wind speed is, relative to the model climate. It is one of the ECMWF Extreme Forecast + Indices (EFIs). Values range from -1 to +1.

  • The closer the EFI + is to +1 or -1, the more likely an extreme event is.
  • EFI = 0 indicates + an extreme event is unlikely.
  • EFI = +1 occurs when all the ensemble members' + forecast values are above the maximum of the model climate. In this case, it means + that very windy conditions are expected, relative to the model climate.
  • EFI + = -1 occurs when all the ensemble members' forecast values are below the minimum + of the model climate. In this case, it means that very calm conditions are expected, + relative to the model climate.


See more + information about the EFI. See + more information about the ensemble forecast .

The 10 metre speed + is the horizontal speed of the wind, or movement of air, at a height of ten metres + above the surface of the Earth. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 132167 + shortname: 2ti + longname: 2 metre temperature index + units: Numeric + description: This parameter indicates how extreme the ensemble forecast 2 metre + temperature is, relative to the model climate. It is one of the ECMWF Extreme + Forecast Indices (EFIs). Values range from -1 to +1.

  • The closer + the EFI is to +1 or -1, the more likely an extreme event is.
  • EFI = 0 indicates + an extreme event is unlikely.
  • EFI = +1 occurs when all the ensemble members' + forecast values are above the maximum of the model climate. In this case, it means + that very high temperatures are expected, relative to the model climate.
  • EFI + = -1 occurs when all the ensemble members' forecast values are below the minimum + of the model climate. In this case, it means that very low temperatures are expected, + relative to the model climate.
See more + information about the EFI. Seemore + information about the ensemble forecast.

2m temperature is calculated + by interpolating between the lowest model level and the Earth's surface, taking + account of the atmospheric conditions. See further + information. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 132201 + shortname: mx2ti + longname: Maximum temperature at 2 metres index + units: Numeric + description: This parameter indicates how extreme the ensemble forecast 2 metre + maximum temperature is relative to the model climate. It is one of the ECMWF Extreme + Forecast Indices (EFIs). Values range from -1 to +1.

  • The closer + the EFI is to +1 or -1, the more likely an extreme event is.
  • EFI = 0 indicates + an extreme event is unlikely.
  • EFI = +1 occurs when all the ensemble members' + forecast values are above the maximum of the model climate. In this case, it means + that very high maximum temperatures are expected, relative to the model climate.
  • EFI + = -1 occurs when all the ensemble members' forecast values are below the minimum + of the model climate. In this case, it means that very low maximum temperatures + are expected, relative to the model climate.
Here, maximum temperature + refers to the highest temperature of air at 2m above the surface of land, sea + or in-land waters since the parameter was last archived in a particular forecast.

2m + temperature is calculated by interpolating between the lowest model level and + the Earth's surface, taking account of the atmospheric conditions. See further + information. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 132202 + shortname: mn2ti + longname: Minimum temperature at 2 metres index + units: Numeric + description: This parameter indicates how extreme the ensemble forecast 2 metre + minimum temperature is relative to the model climate. It is one of the ECMWF Extreme + Forecast Indices (EFIs). Values range from -1 to +1.

  • The closer + the EFI is to +1 or -1, the more likely an extreme event is.
  • EFI = 0 indicates + an extreme event is unlikely.
  • EFI = +1 occurs when all the ensemble members' + forecast values are above the maximum of the model climate. In this case, it means + that very high minimum temperatures are expected, relative to the model climate.
  • EFI + = -1 occurs when all the ensemble members' forecast values are below the minimum + of the model climate. In this case, it means that very low minimum temperatures + are expected, relative to the model climate.
Here, maximum temperature + refers to the highest temperature of air at 2m above the surface of land, sea + or in-land waters since the parameter was last archived in a particular forecast.

2m + temperature is calculated by interpolating between the lowest model level and + the Earth's surface, taking account of the atmospheric conditions. See further + information. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 132216 + shortname: maxswhi + longname: Maximum of significant wave height index + units: Numeric + description: This parameter indicates how extreme the significant wave height is + relative to the model climate. It is part of the ECMWF Extreme Forecast Index + (EFI). Values range from -1 to +1.

  • The closer the EFI is to +1 + or -1, the more likely an extreme event is.
  • EFI = 0 indicates an extreme + event is unlikely.
  • EFI = +1 where all the ensemble members' forecast + values are above the maximum of the model climate. In this case, it means that + very high waves are expected, relative to the model climate.
  • EFI = -1 + where all the ensemble members' forecast values are below the minimum of the model + climate. In this case, it means that very calm conditions are expected, relative + to the model climate. See more + information about the EFI. See more + information about the ensemble forecast.


The significant + wave height represents the average height of the highest third of surface ocean/sea + waves, generated by local winds and associated with swell. See further + information. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 132228 + shortname: tpi + longname: Total precipitation index + units: Numeric + description: This parameter indicates how extreme the ensemble forecast total precipitation + is relative to the model climate. It is one of the ECMWF Extreme Forecast Indices + (EFIs). Values range from -1 to +1.

  • The closer the EFI is to + +1 or -1, the more likely an extreme event is.
  • EFI = 0 indicates an extreme + event is unlikely.
  • EFI = +1 occurs when all the ensemble members' forecast + values are above the maximum of the model climate. In this case, it means that + very wet conditions are expected, relative to the model climate.
  • EFI + = -1 occurs when all the ensemble members' forecast values are below the minimum + of the model climate. In this case, it means that very dry conditions are expected, + relative to the model climate.
Note that, because precipitation cannot + be less than zero, negative values of this parameter calculated for 24-hour (short-term) + precipitation do not provide sensible information (typically a dry day is not + extreme/unusual). For accumulation of precipitation over longer periods (10 to + 15 days for example), negative values indicate extended periods of dry weather.

See + more + information about the EFI. See + more information about the ensemble forecast . + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 133001 + shortname: 2tplm10 + longname: 2m temperature probability less than -10 C + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133002 + shortname: 2tplm5 + longname: 2m temperature probability less than -5 C + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133003 + shortname: 2tpl0 + longname: 2m temperature probability less than 0 C + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133004 + shortname: 2tpl5 + longname: 2m temperature probability less than 5 C + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133005 + shortname: 2tpl10 + longname: 2m temperature probability less than 10 C + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133006 + shortname: 2tpg25 + longname: 2m temperature probability greater than 25 C + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133007 + shortname: 2tpg30 + longname: 2m temperature probability greater than 30 C + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133008 + shortname: 2tpg35 + longname: 2m temperature probability greater than 35 C + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133009 + shortname: 2tpg40 + longname: 2m temperature probability greater than 40 C + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133010 + shortname: 2tpg45 + longname: 2m temperature probability greater than 45 C + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133011 + shortname: mn2tplm10 + longname: Minimum 2 metre temperature probability less than -10 C + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133012 + shortname: mn2tplm5 + longname: Minimum 2 metre temperature probability less than -5 C + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133013 + shortname: mn2tpl0 + longname: Minimum 2 metre temperature probability less than 0 C + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133014 + shortname: mn2tpl5 + longname: Minimum 2 metre temperature probability less than 5 C + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133015 + shortname: mn2tpl10 + longname: Minimum 2 metre temperature probability less than 10 C + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133016 + shortname: mx2tpg25 + longname: Maximum 2 metre temperature probability greater than 25 C + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133017 + shortname: mx2tpg30 + longname: Maximum 2 metre temperature probability greater than 30 C + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133018 + shortname: mx2tpg35 + longname: Maximum 2 metre temperature probability greater than 35 C + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133019 + shortname: mx2tpg40 + longname: Maximum 2 metre temperature probability greater than 40 C + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133020 + shortname: mx2tpg45 + longname: Maximum 2 metre temperature probability greater than 45 C + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133021 + shortname: 10spg10 + longname: 10 metre wind speed probability of at least 10 m/s + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133022 + shortname: 10spg15 + longname: 10 metre wind speed probability of at least 15 m/s + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133023 + shortname: 10spg20 + longname: 10 metre wind speed probability of at least 20 m/s + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133024 + shortname: 10spg35 + longname: 10 metre wind speed probability of at least 35 m/s + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133025 + shortname: 10spg50 + longname: 10 metre wind speed probability of at least 50 m/s + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133026 + shortname: 10gpg20 + longname: 10 metre wind gust probability of at least 20 m/s + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133027 + shortname: 10gpg35 + longname: 10 metre wind gust probability of at least 35 m/s + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133028 + shortname: 10gpg50 + longname: 10 metre wind gust probability of at least 50 m/s + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133029 + shortname: 10gpg75 + longname: 10 metre wind gust probability of at least 75 m/s + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133030 + shortname: 10gpg100 + longname: 10 metre wind gust probability of at least 100 m/s + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133031 + shortname: tppg1 + longname: Total precipitation probability of at least 1 mm + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133032 + shortname: tppg5 + longname: Total precipitation probability of at least 5 mm + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133033 + shortname: tppg10 + longname: Total precipitation probability of at least 10 mm + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133034 + shortname: tppg20 + longname: Total precipitation probability of at least 20 mm + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133035 + shortname: tppg40 + longname: Total precipitation probability of at least 40 mm + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133036 + shortname: tppg60 + longname: Total precipitation probability of at least 60 mm + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133037 + shortname: tppg80 + longname: Total precipitation probability of at least 80 mm + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133038 + shortname: tppg100 + longname: Total precipitation probability of at least 100 mm + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133039 + shortname: tppg150 + longname: Total precipitation probability of at least 150 mm + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133040 + shortname: tppg200 + longname: Total precipitation probability of at least 200 mm + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133041 + shortname: tppg300 + longname: Total precipitation probability of at least 300 mm + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133042 + shortname: sfpg1 + longname: Snowfall probability of at least 1 mm + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133043 + shortname: sfpg5 + longname: Snowfall probability of at least 5 mm + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133044 + shortname: sfpg10 + longname: Snowfall probability of at least 10 mm + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133045 + shortname: sfpg20 + longname: Snowfall probability of at least 20 mm + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133046 + shortname: sfpg40 + longname: Snowfall probability of at least 40 mm + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133047 + shortname: sfpg60 + longname: Snowfall probability of at least 60 mm + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133048 + shortname: sfpg80 + longname: Snowfall probability of at least 80 mm + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133049 + shortname: sfpg100 + longname: Snowfall probability of at least 100 mm + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133050 + shortname: sfpg150 + longname: Snowfall probability of at least 150 mm + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133051 + shortname: sfpg200 + longname: Snowfall probability of at least 200 mm + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133052 + shortname: sfpg300 + longname: Snowfall probability of at least 300 mm + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133053 + shortname: tccpg10 + longname: Total Cloud Cover probability greater than 10% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133054 + shortname: tccpg20 + longname: Total Cloud Cover probability greater than 20% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133055 + shortname: tccpg30 + longname: Total Cloud Cover probability greater than 30% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133056 + shortname: tccpg40 + longname: Total Cloud Cover probability greater than 40% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133057 + shortname: tccpg50 + longname: Total Cloud Cover probability greater than 50% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133058 + shortname: tccpg60 + longname: Total Cloud Cover probability greater than 60% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133059 + shortname: tccpg70 + longname: Total Cloud Cover probability greater than 70% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133060 + shortname: tccpg80 + longname: Total Cloud Cover probability greater than 80% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133061 + shortname: tccpg90 + longname: Total Cloud Cover probability greater than 90% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133062 + shortname: tccpg99 + longname: Total Cloud Cover probability greater than 99% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133063 + shortname: hccpg10 + longname: High Cloud Cover probability greater than 10% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133064 + shortname: hccpg20 + longname: High Cloud Cover probability greater than 20% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133065 + shortname: hccpg30 + longname: High Cloud Cover probability greater than 30% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133066 + shortname: hccpg40 + longname: High Cloud Cover probability greater than 40% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133067 + shortname: hccpg50 + longname: High Cloud Cover probability greater than 50% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133068 + shortname: hccpg60 + longname: High Cloud Cover probability greater than 60% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133069 + shortname: hccpg70 + longname: High Cloud Cover probability greater than 70% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133070 + shortname: hccpg80 + longname: High Cloud Cover probability greater than 80% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133071 + shortname: hccpg90 + longname: High Cloud Cover probability greater than 90% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133072 + shortname: hccpg99 + longname: High Cloud Cover probability greater than 99% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133073 + shortname: mccpg10 + longname: Medium Cloud Cover probability greater than 10% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133074 + shortname: mccpg20 + longname: Medium Cloud Cover probability greater than 20% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133075 + shortname: mccpg30 + longname: Medium Cloud Cover probability greater than 30% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133076 + shortname: mccpg40 + longname: Medium Cloud Cover probability greater than 40% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133077 + shortname: mccpg50 + longname: Medium Cloud Cover probability greater than 50% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133078 + shortname: mccpg60 + longname: Medium Cloud Cover probability greater than 60% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133079 + shortname: mccpg70 + longname: Medium Cloud Cover probability greater than 70% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133080 + shortname: mccpg80 + longname: Medium Cloud Cover probability greater than 80% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133081 + shortname: mccpg90 + longname: Medium Cloud Cover probability greater than 90% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133082 + shortname: mccpg99 + longname: Medium Cloud Cover probability greater than 99% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133083 + shortname: lccpg10 + longname: Low Cloud Cover probability greater than 10% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133084 + shortname: lccpg20 + longname: Low Cloud Cover probability greater than 20% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133085 + shortname: lccpg30 + longname: Low Cloud Cover probability greater than 30% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133086 + shortname: lccpg40 + longname: Low Cloud Cover probability greater than 40% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133087 + shortname: lccpg50 + longname: Low Cloud Cover probability greater than 50% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133088 + shortname: lccpg60 + longname: Low Cloud Cover probability greater than 60% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133089 + shortname: lccpg70 + longname: Low Cloud Cover probability greater than 70% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133090 + shortname: lccpg80 + longname: Low Cloud Cover probability greater than 80% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133091 + shortname: lccpg90 + longname: Low Cloud Cover probability greater than 90% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133092 + shortname: lccpg99 + longname: Low Cloud Cover probability greater than 99% + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 133093 + shortname: ptsa_gt_1stdev + longname: Probability of temperature standardized anomaly greater than 1 standard + deviation + units: '%' + description: Probability of temperature anomaly greater than 1 standard deviation + of the climatology. Climatology is derived from and updated simultaneously with + the operational re-forecasts. For the computation of the probability, the closest + preceding climatology to the forecast base time is used. + access_ids: + - dissemination + origin_ids: + - 0 +- id: 133094 + shortname: ptsa_gt_1p5stdev + longname: Probability of temperature standardized anomaly greater than 1.5 standard + deviation + units: '%' + description: Probability of temperature anomaly greater than 1.5 standard deviation + of the climatology. Climatology is derived from and updated simultaneously with + the operational re-forecasts. For the computation of the probability, the closest + preceding climatology to the forecast base time is used. + access_ids: + - dissemination + origin_ids: + - 0 +- id: 133095 + shortname: ptsa_gt_2stdev + longname: Probability of temperature standardized anomaly greater than 2 standard + deviation + units: '%' + description: Probability of temperature anomaly greater than 2 standard deviation + of the climatology. Climatology is derived from and updated simultaneously with + the operational re-forecasts. For the computation of the probability, the closest + preceding climatology to the forecast base time is used. + access_ids: + - dissemination + origin_ids: + - 0 +- id: 133096 + shortname: ptsa_lt_1stdev + longname: Probability of temperature standardized anomaly less than -1 standard + deviation + units: '%' + description: Probability of temperature anomaly less than -1 standard deviation + of the climatology. Climatology is derived from and updated simultaneously with + the operational re-forecasts. For the computation of the probability, the closest + preceding climatology to the forecast base time is used. + access_ids: + - dissemination + origin_ids: + - 0 +- id: 133097 + shortname: ptsa_lt_1p5stdev + longname: Probability of temperature standardized anomaly less than -1.5 standard + deviation + units: '%' + description: Probability of temperature anomaly less than -1.5 standard deviation + of the climatology. Climatology is derived from and updated simultaneously with + the operational re-forecasts. For the computation of the probability, the closest + preceding climatology to the forecast base time is used. + access_ids: + - dissemination + origin_ids: + - 0 +- id: 133098 + shortname: ptsa_lt_2stdev + longname: Probability of temperature standardized anomaly less than -2 standard + deviation + units: '%' + description: Probability of temperature anomaly less than -2 standard deviation + of the climatology. Climatology is derived from and updated simultaneously with + the operational re-forecasts. For the computation of the probability, the closest + preceding climatology to the forecast base time is used. + access_ids: + - dissemination + origin_ids: + - 0 +- id: 140080 + shortname: wx1 + longname: Wave experimental parameter 1 + units: '~' + description: output parameter from the wave model, not yet in finalised form for + operational production + access_ids: [] + origin_ids: + - 98 +- id: 140081 + shortname: wx2 + longname: Wave experimental parameter 2 + units: '~' + description: output parameter from the wave model, not yet in finalised form for + operational production + access_ids: [] + origin_ids: + - 98 +- id: 140082 + shortname: wx3 + longname: Wave experimental parameter 3 + units: '~' + description: output parameter from the wave model, not yet in finalised form for + operational production + access_ids: [] + origin_ids: + - 98 +- id: 140083 + shortname: wx4 + longname: Wave experimental parameter 4 + units: '~' + description: output parameter from the wave model, not yet in finalised form for + operational production + access_ids: [] + origin_ids: + - 98 +- id: 140084 + shortname: wx5 + longname: Wave experimental parameter 5 + units: '~' + description: output parameter from the wave model, not yet in finalised form for + operational production + access_ids: [] + origin_ids: + - 98 +- id: 140098 + shortname: weta + longname: Wave induced mean sea level correction + units: m + description: '' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140099 + shortname: wraf + longname: Ratio of wave angular and frequency width + units: Numeric + description: '' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140100 + shortname: wnslc + longname: Number of events in freak waves statistics + units: Numeric + description: '' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140101 + shortname: utaua + longname: U-component of atmospheric surface momentum flux + units: N m**-2 + description: '' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140102 + shortname: vtaua + longname: V-component of atmospheric surface momentum flux + units: N m**-2 + description: '' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140103 + shortname: utauo + longname: U-component of surface momentum flux into ocean + units: N m**-2 + description: '' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140104 + shortname: vtauo + longname: V-component of surface momentum flux into ocean + units: N m**-2 + description: '' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140105 + shortname: wphio + longname: Wave turbulent energy flux into ocean + units: W m**-2 + description: '' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140106 + shortname: wdw1 + longname: Wave directional width of first swell partition + units: radians + description: '' + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 140107 + shortname: wfw1 + longname: Wave frequency width of first swell partition + units: dimensionless + description: '' + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 140108 + shortname: wdw2 + longname: Wave directional width of second swell partition + units: radians + description: '' + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 140109 + shortname: wfw2 + longname: Wave frequency width of second swell partition + units: dimensionless + description: '' + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 140110 + shortname: wdw3 + longname: Wave directional width of third swell partition + units: radians + description: '' + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 140111 + shortname: wfw3 + longname: Wave frequency width of third swell partition + units: dimensionless + description: '' + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 140112 + shortname: wefxm + longname: Wave energy flux magnitude + units: W m**-1 + description: This parameter is the amount of energy from ocean/sea waves which are + generated by local winds and associated with swell. It is the magnitude of the + energy flux per unit length of wave crest, also known as the wave power per unit + length of wave crest.

In deep water, the wave energy flux magnitude + can be estimated from the mean wave period and the significant wave height. In + the ECMWF Integrated Forecasting System, it is calculated by integrating the full + two-dimensional wave spectrum multiplied by the wave group velocity (the velocity + of the envelope of a group of waves of nearly equal frequencies). + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140113 + shortname: wefxd + longname: Wave energy flux mean direction + units: Degree true + description: This parameter is the direction of the flux of energy of ocean/sea + waves which are generated by local winds and associated with swell.

It + is the spectral mean direction calculated by integrating the full two-dimensional + wave energy spectrum multiplied by the wave group velocity (the velocity of the + envelope of a group of waves of nearly equal frequencies).

The units + are degrees true which means the direction relative to the geographic location + of the north pole. It is the direction that waves are coming FROM, so zero means + 'coming from the north' and 90 'coming from the east'. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140114 + shortname: h1012 + longname: Significant wave height of all waves with periods within the inclusive + range from 10 to 12 seconds + units: m + description: This parameter represents the average height of the highest third of + surface ocean/sea waves that have a period between 10 and 12 seconds. It includes + all waves generated by local winds and associated with swell. Wave height represents + the vertical distance between the wave crest and the wave trough.

The + ocean/sea surface wave field consists of a combination of waves with different + heights, lengths and directions (known as the two-dimensional wave spectrum). + The wave spectrum can be decomposed into wind-sea waves, which are directly affected + by local winds, and swell, the waves that were generated by the wind at a different + location and time.

More strictly, this parameter is four times the square + root of the integral over all directions of the two-dimensional wave spectrum + and all frequencies between 1/12 and 1/10 hertz (i.e. periods between 10 and 12 + seconds). See + further documentation.

This parameter can be used to assess sea + state and swell. For example, engineers use significant wave height to calculate + the load on structures in the open ocean, such as oil platforms, or in coastal + applications. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140115 + shortname: h1214 + longname: Significant wave height of all waves with periods within the inclusive + range from 12 to 14 seconds + units: m + description: This parameter represents the average height of the highest third of + surface ocean/sea waves that have a period between 12 and 14 seconds. It includes + all waves generated by local winds and associated with swell. Wave height represents + the vertical distance between the wave crest and the wave trough.

The + ocean/sea surface wave field consists of a combination of waves with different + heights, lengths and directions (known as the two-dimensional wave spectrum). + The wave spectrum can be decomposed into wind-sea waves, which are directly affected + by local winds, and swell, the waves that were generated by the wind at a different + location and time.

More strictly, this parameter is four times the square + root of the integral over all directions of the two-dimensional wave spectrum + and all frequencies between 1/14 and 1/12 hertz (i.e. periods between 12 and 14 + seconds). See + further documentation.

This parameter can be used to assess sea + state and swell. For example, engineers use significant wave height to calculate + the load on structures in the open ocean, such as oil platforms, or in coastal + applications. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140116 + shortname: h1417 + longname: Significant wave height of all waves with periods within the inclusive + range from 14 to 17 seconds + units: m + description: This parameter represents the average height of the highest third of + surface ocean/sea waves that have a period between 14 and 17 seconds. It includes + all waves generated by local winds and associated with swell. Wave height represents + the vertical distance between the wave crest and the wave trough.

The + ocean/sea surface wave field consists of a combination of waves with different + heights, lengths and directions (known as the two-dimensional wave spectrum). + The wave spectrum can be decomposed into wind-sea waves, which are directly affected + by local winds, and swell, the waves that were generated by the wind at a different + location and time.

More strictly, this parameter is four times the square + root of the integral over all directions of the two-dimensional wave spectrum + and all frequencies between 1/17 and 1/14 hertz (i.e. periods between 14 and 17 + seconds). See + further documentation.

This parameter can be used to assess sea + state and swell. For example, engineers use significant wave height to calculate + the load on structures in the open ocean, such as oil platforms, or in coastal + applications. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140117 + shortname: h1721 + longname: Significant wave height of all waves with periods within the inclusive + range from 17 to 21 seconds + units: m + description: This parameter represents the average height of the highest third of + surface ocean/sea waves that have a period between 17 and 21 seconds. It includes + all waves generated by local winds and associated with swell. Wave height represents + the vertical distance between the wave crest and the wave trough.

The + ocean/sea surface wave field consists of a combination of waves with different + heights, lengths and directions (known as the two-dimensional wave spectrum). + The wave spectrum can be decomposed into wind-sea waves, which are directly affected + by local winds, and swell, the waves that were generated by the wind at a different + location and time.

More strictly, this parameter is four times the square + root of the integral over all directions of the two-dimensional wave spectrum + and all frequencies between 1/21 and 1/17 hertz (i.e. periods between 17 and 21 + seconds). See + further documentation.

This parameter can be used to assess sea + state and swell. For example, engineers use significant wave height to calculate + the load on structures in the open ocean, such as oil platforms, or in coastal + applications. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140118 + shortname: h2125 + longname: Significant wave height of all waves with periods within the inclusive + range from 21 to 25 seconds + units: m + description: This parameter represents the average height of the highest third of + surface ocean/sea waves that have a period between 21 and 25 seconds. It includes + all waves generated by local winds and associated with swell. Wave height represents + the vertical distance between the wave crest and the wave trough.

The + ocean/sea surface wave field consists of a combination of waves with different + heights, lengths and directions (known as the two-dimensional wave spectrum). + The wave spectrum can be decomposed into wind-sea waves, which are directly affected + by local winds, and swell, the waves that were generated by the wind at a different + location and time.

More strictly, this parameter is four times the square + root of the integral over all directions of the two-dimensional wave spectrum + and all frequencies between 1/25 and 1/21 hertz (i.e. periods between 21 and 25 + seconds). See + further documentation.

This parameter can be used to assess sea + state and swell. For example, engineers use significant wave height to calculate + the load on structures in the open ocean, such as oil platforms, or in coastal + applications. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140119 + shortname: h2530 + longname: Significant wave height of all waves with periods within the inclusive + range from 25 to 30 seconds + units: m + description: This parameter represents the average height of the highest third of + surface ocean/sea waves that have a period between 25 and 30 seconds. It includes + all waves generated by local winds and associated with swell. Wave height represents + the vertical distance between the wave crest and the wave trough.

The + ocean/sea surface wave field consists of a combination of waves with different + heights, lengths and directions (known as the two-dimensional wave spectrum). + The wave spectrum can be decomposed into wind-sea waves, which are directly affected + by local winds, and swell, the waves that were generated by the wind at a different + location and time.

More strictly, this parameter is four times the square + root of the integral over all directions of the two-dimensional wave spectrum + and all frequencies between 1/30 and 1/25 hertz (i.e. periods between 25 and 30 + seconds). See + further documentation.

This parameter can be used to assess sea + state and swell. For example, engineers use significant wave height to calculate + the load on structures in the open ocean, such as oil platforms, or in coastal + applications. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140120 + shortname: sh10 + longname: Significant wave height of all waves with period larger than 10s + units: m + description: This parameter represents the average height of the highest third of + surface ocean/sea waves that have a period of longer than 10 seconds. It includes + all waves generated by local winds and associated with swell. Wave height represents + the vertical distance between the wave crest and the wave trough.

The + ocean/sea surface wave field consists of a combination of waves with different + heights, lengths and directions (known as the two-dimensional wave spectrum). + The wave spectrum can be decomposed into wind-sea waves, which are directly affected + by local winds, and swell, the waves that were generated by the wind at a different + location and time.

More strictly, this parameter is four times the square + root of the integral over all directions of the two-dimensional wave spectrum + and over frequencies less than 0.1 hertz (i.e. periods longer than 10 seconds). + See + further documentation.

This parameter can be used to assess sea + state and swell. For example, engineers use significant wave height to calculate + the load on structures in the open ocean, such as oil platforms, or in coastal + applications. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140121 + shortname: swh1 + longname: Significant wave height of first swell partition + units: m + description: This parameter represents the average height of the highest third of + surface ocean/sea waves associated with the first swell partition. Wave height + represents the vertical distance between the wave crest and the wave trough.

The + ocean/sea surface wave field consists of a combination of waves with different + heights, lengths and directions (known as the two-dimensional wave spectrum). + The wave spectrum can be decomposed into wind-sea waves, which are directly affected + by local winds, and swell, the waves that were generated by the wind at a different + location and time.

In many situations, swell can be made up of different + swell systems, for example, from two distant and separate storms. To account for + this, the swell spectrum is partitioned into up to three parts. The swell partitions + are labelled first, second and third based on their respective wave height. Therefore, + there is no guarantee of spatial coherence (the first might be from one system + at one location and another system at the neighbouring location). See further + information.

More strictly, this parameter is four times the square + root of the integral over all directions and all frequencies of the first swell + partition of the two-dimensional swell spectrum. The swell spectrum is obtained + by only considering the components of the two-dimensional wave spectrum that are + not under the influence of the local wind.

This parameter can be used + to assess swell. For example, engineers use significant wave height to calculate + the load on structures in the open ocean, such as oil platforms, or in coastal + applications. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140122 + shortname: mwd1 + longname: Mean wave direction of first swell partition + units: degrees + description: This parameter is the mean direction of waves in the first swell partition.

The + ocean/sea surface wave field consists of a combination of waves with different + heights, lengths and directions (known as the two-dimensional wave spectrum). + The wave spectrum can be decomposed into wind-sea waves, which are directly affected + by local winds, and swell, the waves that were generated by the wind at a different + location and time.

In many situations, swell can be made up of different + swell systems, for example, from two distant and separate storms. To account for + this, the swell spectrum is partitioned into up to three parts. The swell partitions + are labelled first, second and third based on their respective wave height. Therefore, + there is no guarantee of spatial coherence (the first swell partition might be + from one system at one location and a different system at the neighbouring location). + See further + information.

The units are degrees true which means the direction + relative to the geographic location of the north pole. It is the direction that + waves are coming FROM, so zero means 'coming from the north' and 90 'coming from + the east'. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140123 + shortname: mwp1 + longname: Mean wave period of first swell partition + units: s + description: This parameter is the mean period of waves in the first swell partition. + The wave period is the average time it takes for two consecutive wave crests, + on the surface of the ocean/sea, to pass through a fixed point.

The ocean/sea + surface wave field consists of a combination of waves with different heights, + lengths and directions (known as the two-dimensional wave spectrum). The wave + spectrum can be decomposed into wind-sea waves, which are directly affected by + local winds, and swell, the waves that were generated by the wind at a different + location and time.

In many situations, swell can be made up of different + swell systems, for example, from two distant and separate storms. To account for + this, the swell spectrum is partitioned into up to three parts. The swell partitions + are labelled first, second and third based on their respective wave height. Therefore, + there is no guarantee of spatial coherence (the first swell partition might be + from one system at one location and a different system at the neighbouring location). + See further + information. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140124 + shortname: swh2 + longname: Significant wave height of second swell partition + units: m + description: This parameter represents the average height of the highest third of + surface ocean/sea waves associated with the second swell partition. Wave height + represents the vertical distance between the wave crest and the wave trough.

The + ocean/sea surface wave field consists of a combination of waves with different + heights, lengths and directions (known as the two-dimensional wave spectrum). + The wave spectrum can be decomposed into wind-sea waves, which are directly affected + by local winds, and swell, the waves that were generated by the wind at a different + location and time.

In many situations, swell can be made up of different + swell systems, for example, from two distant and separate storms. To account for + this, the swell spectrum is partitioned into up to three parts. The swell partitions + are labelled first, second and third based on their respective wave height. Therefore, + there is no guarantee of spatial coherence (the second might be from one system + at one location and another system at the neighbouring location). See further + information.

More strictly, this parameter is four times the square + root of the integral over all directions and all frequencies of the first swell + partition of the two-dimensional swell spectrum. The swell spectrum is obtained + by only considering the components of the two-dimensional wave spectrum that are + not under the influence of the local wind.

This parameter can be used + to assess swell. For example, engineers use significant wave height to calculate + the load on structures in the open ocean, such as oil platforms, or in coastal + applications. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140125 + shortname: mwd2 + longname: Mean wave direction of second swell partition + units: degrees + description: This parameter is the mean direction of waves in the second swell partition.

The + ocean/sea surface wave field consists of a combination of waves with different + heights, lengths and directions (known as the two-dimensional wave spectrum). + The wave spectrum can be decomposed into wind-sea waves, which are directly affected + by local winds, and swell, the waves that were generated by the wind at a different + location and time.

In many situations, swell can be made up of different + swell systems, for example, from two distant and separate storms. To account for + this, the swell spectrum is partitioned into up to three parts. The swell partitions + are labelled first, second and third based on their respective wave height. Therefore, + there is no guarantee of spatial coherence (the second swell partition might be + from one system at one location and a different system at the neighbouring location). + See further + information.

The units are degrees true which means the direction + relative to the geographic location of the north pole. It is the direction that + waves are coming FROM, so zero means 'coming from the north' and 90 'coming from + the east'. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140126 + shortname: mwp2 + longname: Mean wave period of second swell partition + units: s + description: This parameter is the mean period of waves in the second swell partition. + The wave period is the average time it takes for two consecutive wave crests, + on the surface of the ocean/sea, to pass through a fixed point.

The ocean/sea + surface wave field consists of a combination of waves with different heights, + lengths and directions (known as the two-dimensional wave spectrum). The wave + spectrum can be decomposed into wind-sea waves, which are directly affected by + local winds, and swell, the waves that were generated by the wind at a different + location and time.

In many situations, swell can be made up of different + swell systems, for example, from two distant and separate storms. To account for + this, the swell spectrum is partitioned into up to three parts. The swell partitions + are labelled first, second and third based on their respective wave height. Therefore, + there is no guarantee of spatial coherence (the second swell partition might be + from one system at one location and a different system at the neighbouring location). + See further + information. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140127 + shortname: swh3 + longname: Significant wave height of third swell partition + units: m + description: This parameter represents the average height of the highest third of + surface ocean/sea waves associated with the third swell partition. Wave height + represents the vertical distance between the wave crest and the wave trough.

The + ocean/sea surface wave field consists of a combination of waves with different + heights, lengths and directions (known as the two-dimensional wave spectrum). + The wave spectrum can be decomposed into wind-sea waves, which are directly affected + by local winds, and swell, the waves that were generated by the wind at a different + location and time.

In many situations, swell can be made up of different + swell systems, for example, from two distant and separate storms. To account for + this, the swell spectrum is partitioned into up to three parts. The swell partitions + are labelled first, second and third based on their respective wave height. Therefore, + there is no guarantee of spatial coherence (the third might be from one system + at one location and another system at the neighbouring location). See further + information.

More strictly, this parameter is four times the square + root of the integral over all directions and all frequencies of the first swell + partition of the two-dimensional swell spectrum. The swell spectrum is obtained + by only considering the components of the two-dimensional wave spectrum that are + not under the influence of the local wind.

This parameter can be used + to assess swell. For example, engineers use significant wave height to calculate + the load on structures in the open ocean, such as oil platforms, or in coastal + applications. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140128 + shortname: mwd3 + longname: Mean wave direction of third swell partition + units: degrees + description: This parameter is the mean direction of waves in the third swell partition.

The + ocean/sea surface wave field consists of a combination of waves with different + heights, lengths and directions (known as the two-dimensional wave spectrum). + The wave spectrum can be decomposed into wind-sea waves, which are directly affected + by local winds, and swell, the waves that were generated by the wind at a different + location and time.

In many situations, swell can be made up of different + swell systems, for example, from two distant and separate storms. To account for + this, the swell spectrum is partitioned into up to three parts. The swell partitions + are labelled first, second and third based on their respective wave height. Therefore, + there is no guarantee of spatial coherence (the third swell partition might be + from one system at one location and a different system at the neighbouring location). + See further + information.

The units are degrees true which means the direction + relative to the geographic location of the north pole. It is the direction that + waves are coming FROM, so zero means 'coming from the north' and 90 'coming from + the east'. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140129 + shortname: mwp3 + longname: Mean wave period of third swell partition + units: s + description: This parameter is the mean period of waves in the third swell partition. + The wave period is the average time it takes for two consecutive wave crests, + on the surface of the ocean/sea, to pass through a fixed point.

The ocean/sea + surface wave field consists of a combination of waves with different heights, + lengths and directions (known as the two-dimensional wave spectrum). The wave + spectrum can be decomposed into wind-sea waves, which are directly affected by + local winds, and swell, the waves that were generated by the wind at a different + location and time.

In many situations, swell can be made up of different + swell systems, for example, from two distant and separate storms. To account for + this, the swell spectrum is partitioned into up to three parts. The swell partitions + are labelled first, second and third based on their respective wave height. Therefore, + there is no guarantee of spatial coherence (the third swell partition might be + from one system at one location and a different system at the neighbouring location). + See further + information. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140131 + shortname: tdcmax + longname: Time domain maximum individual crest height + units: m + description: "The detailed description of this parameter can be found in the appendix\ + \ section of the following publication:\r\nFrancesco Barbariol, Jean-Raymond Bidlot,\ + \ Luigi Cavaleri, Mauro Sclavo, Jim Thomson, Alvise Benetazzo\r\nmaximum wave\ + \ heights from global model reanalysis\r\nProgress in Oceanography (IF4.08), Pub\ + \ Date : 2019-07-01, DOI: 10.1016/j.pocean.2019.03.009\r\n \r\nSee equation 2." + access_ids: + - dissemination + origin_ids: + - 0 +- id: 140132 + shortname: tdhmax + longname: Time domain maximum individual wave height + units: m + description: "The detailed description of this parameter can be found in the appendix\ + \ section of the following publication:\r\nFrancesco Barbariol, Jean-Raymond Bidlot,\ + \ Luigi Cavaleri, Mauro Sclavo, Jim Thomson, Alvise Benetazzo\r\nmaximum wave\ + \ heights from global model reanalysis\r\nProgress in Oceanography (IF4.08), Pub\ + \ Date : 2019-07-01, DOI: 10.1016/j.pocean.2019.03.009\r\n \r\nSee equation 5." + access_ids: + - dissemination + origin_ids: + - 0 +- id: 140133 + shortname: stcmax + longname: Space time maximum individual crest height + units: m + description: "The detailed description of this parameter can be found in the appendix\ + \ section of the following publication:\r\nFrancesco Barbariol, Jean-Raymond Bidlot,\ + \ Luigi Cavaleri, Mauro Sclavo, Jim Thomson, Alvise Benetazzo\r\nmaximum wave\ + \ heights from global model reanalysis\r\nProgress in Oceanography (IF4.08), Pub\ + \ Date : 2019-07-01, DOI: 10.1016/j.pocean.2019.03.009\r\n \r\nSee equation 10." + access_ids: + - dissemination + origin_ids: + - 0 +- id: 140134 + shortname: sthmax + longname: Space time maximum individual wave height + units: m + description: "The detailed description of this parameter can be found in the appendix\ + \ section of the following publication:\r\nFrancesco Barbariol, Jean-Raymond Bidlot,\ + \ Luigi Cavaleri, Mauro Sclavo, Jim Thomson, Alvise Benetazzo\r\nmaximum wave\ + \ heights from global model reanalysis\r\nProgress in Oceanography (IF4.08), Pub\ + \ Date : 2019-07-01, DOI: 10.1016/j.pocean.2019.03.009\r\n \r\nSee equation 11." + access_ids: + - dissemination + origin_ids: + - 0 +- id: 140135 + shortname: pp1dw + longname: Peak wave period of wind waves + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 140136 + shortname: pp1ds + longname: Peak wave period of total swell + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 140137 + shortname: pp1d1 + longname: Peak wave period of first swell partition + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 140138 + shortname: pp1d2 + longname: Peak wave period of second swell partition + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 140139 + shortname: pp1d3 + longname: Peak wave period of third swell partition + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 140140 + shortname: pwd + longname: Peak wave direction (total) + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 140141 + shortname: pwdw + longname: Peak wave direction of wind waves + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 140142 + shortname: pwds + longname: Peak wave direction of total swell + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 140143 + shortname: pwd1 + longname: Peak wave direction of first swell partition + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 140144 + shortname: pwd2 + longname: Peak wave direction of second swell partition + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 140145 + shortname: pwd3 + longname: Peak wave direction of third swell partition + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 140146 + shortname: wcfr + longname: Whitecap fraction + units: Fraction + description: null + access_ids: [] + origin_ids: + - 0 +- id: 140147 + shortname: bfi2d + longname: Benjamin-Feir index 2D + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 140148 + shortname: ctc + longname: Crest-trough correlation + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 140149 + shortname: xwrs + longname: X component of the wave radiative stress to sea ice + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 140150 + shortname: ywrs + longname: Y component of the wave radiative stress to sea ice + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 140200 + shortname: maxswh + longname: Maximum of significant wave height + units: m + description: This parameter is used to give the significant wave height climate + distribution as obtained from the wave ensemble forecast hindcast runs + access_ids: [] + origin_ids: + - 98 +- id: 140207 + shortname: wss + longname: Wave Spectral Skewness + units: Numeric + description: This parameter is a statistical measure used to forecast extreme or + freak ocean/sea waves. It describes the nature of the sea surface elevation and + how it is affected by waves generated by local winds and associated with swell. +

Under typical conditions, the sea surface elevation, as described by + its probability density function, has a near normal distribution in the statistical + sense. However, under certain wave conditions the probability density function + of the sea surface elevation can deviate considerably from normality, signalling + increased probability of freak waves.

This parameter gives one measure + of the deviation from normality. It is a measure of the asymmetry of the probability + density function of the sea surface elevation. So, a positive/negative skewness (typical + range -0.2 to 0.12) means more frequent occurrences of extreme values above/below + the mean, relative to a normal distribution. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140208 + shortname: wstar + longname: Free convective velocity over the oceans + units: m s**-1 + description: This parameter is an estimate of the vertical velocity of updraughts + generated by free convection. Free convection is fluid motion induced by buoyancy + forces, which are driven by density gradients. The free convective velocity is + used to estimate the impact of wind gusts on ocean wave growth.

It is + calculated at the height of the lowest temperature inversion (the height above + the surface of the Earth where the temperature increases with height).

This + parameter is one of the parameters used to force the wave model, therefore it + is only calculated over water bodies represented in the ocean wave model. It is + interpolated from the atmospheric model horizontal grid onto the horizontal grid + used by the ocean wave model. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140209 + shortname: rhoao + longname: Air density over the oceans + units: kg m**-3 + description: This parameter is the mass of air per cubic metre over the oceans, + derived from the temperature, specific humidity and pressure at the lowest model + level in the atmospheric model.

This parameter is one of the parameters + used to force the wave model, therefore it is only calculated over water bodies + represented in the ocean wave model. It is interpolated from the atmospheric model + horizontal grid onto the horizontal grid used by the ocean wave model. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140210 + shortname: mswsi + longname: Mean square wave strain in sea ice + units: '~' + description: 'When waves propagate into a sea ice field, they generate mechanical + strain + + onto the floating ice sheets. This can be estimated in mean square sense by computing + + the following integral over frequency (f):
+ + Int {F(f) E(f)^2 df},
+ + where
+ + F(f) is the frequency wave spectrum.
+ + E(f) is the strain in the ice:
+ + E(f) = h k_ice^3 / (2k)
+ + with h the ice thickness, k the wave number in the water, k_ice is the wave number + under the ice.' + access_ids: [] + origin_ids: + - 98 +- id: 140211 + shortname: phiaw + longname: Normalized energy flux into waves + units: Numeric + description: 'This parameter is the normalised vertical flux of energy from wind + into the ocean waves. A positive flux implies a flux into the waves.

The + energy flux has units of Watts per metre squared, and this is normalised by being + divided by the product of air density and the cube of the friction velocity. + +
Parameters are normalised by being divided by the product of air density and + the square of the friction velocity.' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140212 + shortname: phioc + longname: Normalized energy flux into ocean + units: Numeric + description: 'This parameter is the normalised vertical flux of turbulent kinetic + energy from ocean waves into the ocean. The energy flux is calculated from an + estimation of white capping waves across the surface of the ocean. A white capping + wave is one that appears white at its crest as it breaks, due to air being mixed + into the water. When waves break in this way, there is a transfer of energy from + the waves to the ocean. A negative flux implies a flux from the waves into the + ocean.

The energy flux has units of Watts per metre squared, and this + is normalised by being divided by the product of air density and the cube of the + friction velocity. + +
Parameters are normalised by being divided by the product of air density and + the square of the friction velocity.' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140213 + shortname: tla + longname: Turbulent Langmuir number + units: '~' + description: 'Square root of the ratio of friction velocity to the surface Stokes + drift. + + This parameter is currently not produced.' + access_ids: [] + origin_ids: + - 98 +- id: 140214 + shortname: tauoc + longname: Normalized stress into ocean + units: Numeric + description: 'This parameter is the normalised surface stress, or momentum flux, + from the air into the ocean due to turbulence at the air-sea interface and breaking + waves. It does not include the flux used to generate waves. The ECMWF convention + for vertical fluxes is positive downwards.

The stress has units of Newtons + per metre squared, and this is normalised by being divided by the product of air + density and the square of the friction velocity. + +
Parameters are normalised by being divided by the product of air density and + the square of the friction velocity.' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140215 + shortname: ust + longname: U-component surface stokes drift + units: m s**-1 + description: This parameter is the eastward component of the surface Stokes drift. + The Stokes drift is the net drift velocity due to surface wind waves. It is confined + to the upper few metres of the ocean water column, with the largest value at the + surface.

For example, a fluid particle near the surface will slowly move + in the direction of wave propagation. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140216 + shortname: vst + longname: V-component surface stokes drift + units: m s**-1 + description: This parameter is the northward component of the surface Stokes drift. + The Stokes drift is the net drift velocity due to surface wind waves. It is confined + to the upper few metres of the ocean water column, with the largest value at the + surface.

For example, a fluid particle near the surface will slowly move + in the direction of wave propagation. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140217 + shortname: tmax + longname: Period corresponding to maximum individual wave height + units: s + description: This parameter is the period of the expected highest individual wave + within a 20-minute time window. It can be used as a guide to the characteristics + of extreme or freak waves. Wave period is the average time it takes for two consecutive + wave crests, on the surface of the ocean/sea, to pass through a fixed point.

Occasionally + waves of different periods reinforce and interact non-linearly giving a wave height + considerably larger than the significant wave height. If the maximum individual + wave height is more than twice the significant wave height, then the wave is considered + to be a freak wave. The significant wave height represents the average height + of the highest third of surface ocean/sea waves, generated by local winds and + associated with swell.

The ocean/sea surface wave field consists of + a combination of waves with different heights, lengths and directions (known as + the two-dimensional wave spectrum). This parameter is derived statistically from + the two-dimensional wave spectrum. See further + information.

The wave spectrum can be decomposed into wind-sea waves, + which are directly affected by local winds, and swell, the waves that were generated + by the wind at a different location and time. This parameter takes account of + both. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140218 + shortname: hmax + longname: Envelop-maximum individual wave height + units: m + description:

This parameter is an estimate of the height of the expected highest + individual wave within a 20 minute time window. It can be used as a guide to the + likelihood of extreme or freak waves.

The interactions between waves are + non-linear and occasionally concentrate wave energy giving a wave height considerably + larger than the significant wave height. If the maximum individual wave height + is more than twice the significant wave height, then the wave is considered as + a freak wave. The significant wave height represents the average height of the + highest third of surface ocean/sea waves, generated by local winds and associated + with swell. 

The ocean/sea surface wave field consists of a combination + of waves with different heights, lengths and directions (known as the two-dimensional + wave spectrum). This parameter is derived statistically from the two-dimensional + wave spectrum. See further + information.

The wave spectrum can be decomposed into wind-sea waves, + which are directly affected by local winds, and swell, the waves that were generated + by the wind at a different location and time. This parameter takes account of + both.

+ access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140219 + shortname: wmb + longname: Model bathymetry + units: m + description: This parameter is the depth of water from the surface to the bottom + of the ocean. It is used by the ocean wave model to specify the propagation properties + of the different waves that could be present.

Note that the ocean wave + model grid is too coarse to resolve some small islands and mountains on the bottom + of the ocean, but they can have an impact on surface ocean waves. The ocean wave + model has been modified to reduce the wave energy flowing around or over features + at spatial scales smaller than the grid box. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140220 + shortname: mp1 + longname: Mean wave period based on first moment + units: s + description: This parameter is the reciprocal of the mean frequency of the wave + components that represent the sea state. All wave components have been averaged + proportionally to their respective amplitude. This parameter can be used to estimate + the magnitude of Stokes drift transport in deep water.

The ocean/sea + surface wave field consists of a combination of waves with different heights, + lengths and directions (known as the two-dimensional wave spectrum). Moments are + statistical quantities derived from the two-dimensional wave spectrum. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140221 + shortname: mp2 + longname: Mean zero-crossing wave period + units: s + description: This parameter represents the mean length of time between occasions + where the sea/ocean surface crosses mean sea level. In combination with wave + height information, it could be used to assess the length of time that a coastal + structure might be under water, for example.

The ocean/sea surface wave + field consists of a combination of waves with different heights, lengths and directions + (known as the two-dimensional wave spectrum). In the ECMWF Integrated Forecasting + System this parameter is calculated from the characteristics of the two-dimensional + wave spectrum. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140222 + shortname: wdw + longname: Wave spectral directional width + units: radians + description: This parameter indicates whether waves (generated by local winds and + associated with swell) are coming from similar directions or from a wide range + of directions.

The ocean/sea surface wave field consists of a combination + of waves with different heights, lengths and directions (known as the two-dimensional + wave spectrum). Many ECMWF wave parameters (such as the mean wave period) give + information averaged over all wave frequencies and directions, so do not give + any information about the distribution of wave energy across frequencies and directions. + This parameter gives more information about the nature of the two-dimensional + wave spectrum. This parameter is a measure of the range of wave directions for + each frequency integrated across the two-dimensional spectrum.

This parameter + takes values between 0 and the square root of 2. Where 0 corresponds to a uni-directional + spectrum (i.e., all wave frequencies from the same direction) and the square root + of 2 indicates a uniform spectrum (i.e., all wave frequencies from a different + direction). + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140223 + shortname: p1ww + longname: Mean wave period based on first moment for wind waves + units: s + description: This parameter is the reciprocal of the mean frequency of the wave + components generated by local winds. All wave components have been averaged proportionally + to their respective amplitude. This parameter can be used to estimate the magnitude + of Stokes drift transport in deep water associated with wind waves.

The + ocean/sea surface wave field consists of a combination of waves with different + heights, lengths and directions (known as the two-dimensional wave spectrum). + The wave spectrum can be decomposed into wind-sea waves, which are directly affected + by local winds, and swell, the waves that were generated by the wind at a different + location and time.This parameter takes account of wind-sea waves only. Moments + are statistical quantities derived from the two-dimensional wave spectrum. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140224 + shortname: p2ww + longname: Mean wave period based on second moment for wind waves + units: s + description: This parameter is equivalent to the zero-crossing mean wave period + for waves generated by local winds. The zero-crossing mean wave period represents + the mean length of time between occasions where the sea/ocean surface crosses + a defined zeroth level (such as mean sea level).

The ocean/sea surface + wave field consists of a combination of waves with different heights, lengths + and directions (known as the two-dimensional wave spectrum). The wave spectrum + can be decomposed into wind-sea waves, which are directly affected by local winds, + and swell, the waves that were generated by the wind at a different location and + time. Moments are statistical quantities derived from the two-dimensional wave + spectrum. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140225 + shortname: dwww + longname: Wave spectral directional width for wind waves + units: radians + description: This parameter indicates whether waves generated by the local wind + are coming from similar directions or from a wide range of directions.

The + ocean/sea surface wave field consists of a combination of waves with different + heights, lengths and directions (known as the two-dimensional wave spectrum). + The wave spectrum can be decomposed into wind-sea waves, which are directly affected + by local winds, and swell, the waves that were generated by the wind at a different + location and time. This parameter takes account of wind-sea waves only.

Many + ECMWF wave parameters (such as the mean wave period) give information averaged + over all wave frequencies and directions, so do not give any information about + the distribution of wave energy across frequencies and directions. This parameter + gives more information about the nature of the two-dimensional wave spectrum. + This parameter is a measure of the range of wave directions for each frequency + integrated across the two-dimensional spectrum.

This parameter takes + values between 0 and the square root of 2. Where 0 corresponds to a uni-directional + spectrum (i.e., all wave frequencies from the same direction) and the square root + of 2 indicates a uniform spectrum (i.e., all wave frequencies from a different + direction). + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140226 + shortname: p1ps + longname: Mean wave period based on first moment for swell + units: s + description: This parameter is the reciprocal of the mean frequency of the wave + components associated with swell. All wave components have been averaged proportionally + to their respective amplitude. This parameter can be used to estimate the magnitude + of Stokes drift transport in deep water associated with swell.

The ocean/sea + surface wave field consists of a combination of waves with different heights, + lengths and directions (known as the two-dimensional wave spectrum). The wave + spectrum can be decomposed into wind-sea waves, which are directly affected by + local winds, and swell, the waves that were generated by the wind at a different + location and time.This parameter takes account of all swell only. Moments are + statistical quantities derived from the two-dimensional wave spectrum. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140227 + shortname: p2ps + longname: Mean wave period based on second moment for swell + units: s + description: This parameter is equivalent to the zero-crossing mean wave period + for swell. The zero-crossing mean wave period represents the mean length of time + between occasions where the sea/ocean surface crosses a defined zeroth level (such + as mean sea level).

The ocean/sea surface wave field consists of a + combination of waves with different heights, lengths and directions (known as + the two-dimensional wave spectrum). The wave spectrum can be decomposed into wind-sea + waves, which are directly affected by local winds, and swell, the waves that were + generated by the wind at a different location and time. Moments are statistical + quantities derived from the two-dimensional wave spectrum. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140228 + shortname: dwps + longname: Wave spectral directional width for swell + units: radians + description: This parameter indicates whether waves associated with swell are coming + from similar directions or from a wide range of directions.

The ocean/sea + surface wave field consists of a combination of waves with different heights, + lengths and directions (known as the two-dimensional wave spectrum). The wave + spectrum can be decomposed into wind-sea waves, which are directly affected by + local winds, and swell, the waves that were generated by the wind at a different + location and time. This parameter takes account of all swell only.

Many + ECMWF wave parameters (such as the mean wave period) give information averaged + over all wave frequencies and directions, so do not give any information about + the distribution of wave energy across frequencies and directions. This parameter + gives more information about the nature of the two-dimensional wave spectrum. + This parameter is a measure of the range of wave directions for each frequency + integrated across the two-dimensional spectrum.

This parameter takes + values between 0 and the square root of 2. Where 0 corresponds to a uni-directional + spectrum (i.e., all wave frequencies from the same direction) and the square root + of 2 indicates a uniform spectrum (i.e., all wave frequencies from a different + direction). + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140229 + shortname: swh + longname: Significant height of combined wind waves and swell + units: m + description: This parameter represents the average height of the highest third of + surface ocean/sea waves generated by wind and swell. It represents the vertical + distance between the wave crest and the wave trough.

The ocean/sea surface + wave field consists of a combination of waves with different heights, lengths + and directions (known as the two-dimensional wave spectrum).

The wave + spectrum can be decomposed into wind-sea waves, which are directly affected by + local winds, and swell, the waves that were generated by the wind at a different + location and time. This parameter takes account of both.

More strictly, + this parameter is four times the square root of the integral over all directions + and all frequencies of the two-dimensional wave spectrum. See + further documentation.

This parameter can be used to assess sea + state and swell. For example, engineers use significant wave height to calculate + the load on structures in the open ocean, such as oil platforms, or in coastal + applications. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140230 + shortname: mwd + longname: Mean wave direction + units: Degree true + description: This parameter is the mean direction of ocean/sea surface waves. The + ocean/sea surface wave field consists of a combination of waves with different + heights, lengths and directions (known as the two-dimensional wave spectrum). + This parameter is a mean over all frequencies and directions of the two-dimensional + wave spectrum.

The wave spectrum can be decomposed into wind-sea waves, + which are directly affected by local winds, and swell, the waves that were generated + by the wind at a different location and time. This parameter takes account of + both. See + further documentation.

This parameter can be used to assess sea + state and swell. For example, engineers use this type of wave information when + designing structures in the open ocean, such as oil platforms, or in coastal applications. +

The units are degree true which means the direction relative to the + geographic location of the north pole. Zero means 'coming from the north' and + 90 'coming from the east'. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140231 + shortname: pp1d + longname: Peak wave period + units: s + description: This parameter represents the period of the most energetic ocean waves + generated by local winds and associated with swell. The wave period is the average + time it takes for two consecutive wave crests, on the surface of the ocean/sea, + to pass through a fixed point.

The ocean/sea surface wave field consists + of a combination of waves with different heights, lengths and directions (known + as the two-dimensional wave spectrum). This parameter is calculated from the reciprocal + of the frequency corresponding to the largest value (peak) of the frequency wave + spectrum. The frequency wave spectrum is obtained by integrating the two-dimensional + wave spectrum over all directions.

The wave spectrum can be decomposed + into wind-sea waves, which are directly affected by local winds, and swell, the + waves that were generated by the wind at a different location and time. This parameter + takes account of both. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140232 + shortname: mwp + longname: Mean wave period + units: s + description: This parameter is the average time it takes for two consecutive wave + crests, on the surface of the ocean/sea, to pass through a fixed point. The ocean/sea + surface wave field consists of a combination of waves with different heights, + lengths and directions (known as the two-dimensional wave spectrum). This parameter + is a mean over all frequencies and directions of the two-dimensional wave spectrum. +

The wave spectrum can be decomposed into wind-sea waves, which are directly + affected by local winds, and swell, the waves that were generated by the wind + at a different location and time. This parameter takes account of both. See + further documentation.

This parameter can be used to assess sea + state and swell. For example, engineers use such wave information when designing + structures in the open ocean, such as oil platforms, or in coastal applications. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140233 + shortname: cdww + longname: Coefficient of drag with waves + units: dimensionless + description: This parameter is the resistance that ocean waves exert on the atmosphere. + It is sometimes also called a 'friction coefficient'.

It is calculated + by the wave model as the ratio of the square of the friction velocity, to the + square of the neutral wind speed at a height of 10 metres above the surface of + the Earth.

The neutral wind is calculated from the surface stress and + the corresponding roughness length by assuming that the air is neutrally stratified. + The neutral wind is, by definition, in the direction of the surface stress. The + size of the roughness length depends on the sea state. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140234 + shortname: shww + longname: Significant height of wind waves + units: m + description: This parameter represents the average height of the highest third of + surface ocean/sea waves generated by the local wind. It represents the vertical + distance between the wave crest and the wave trough.

The ocean/sea surface + wave field consists of a combination of waves with different heights, lengths + and directions (known as the two-dimensional wave spectrum). The wave spectrum + can be decomposed into wind-sea waves, which are directly affected by local winds, + and swell, the waves that were generated by the wind at a different location and + time. This parameter takes account of wind-sea waves only.

More strictly, + this parameter is four times the square root of the integral over all directions + and all frequencies of the two-dimensional wind-sea wave spectrum. The wind-sea + wave spectrum is obtained by only considering the components of the two-dimensional + wave spectrum that are still under the influence of the local wind. See + further documentation.

This parameter can be used to assess wind-sea + waves. For example, engineers use significant wave height to calculate the load + on structures in the open ocean, such as oil platforms, or in coastal applications. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140235 + shortname: mdww + longname: Mean direction of wind waves + units: degrees + description: The mean direction of waves generated by local winds.

The + ocean/sea surface wave field consists of a combination of waves with different + heights, lengths and directions (known as the two-dimensional wave spectrum). + The wave spectrum can be decomposed into wind-sea waves, which are directly affected + by local winds, and swell, the waves that were generated by the wind at a different + location and time.This parameter takes account of wind-sea waves only. It is the + mean over all frequencies and directions of the total wind-sea wave spectrum. + See further + information.

The units are degrees true which means the direction + relative to the geographic location of the north pole. It is the direction that + waves are coming FROM, so zero means 'coming from the north' and 90 'coming from + the east'. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140236 + shortname: mpww + longname: Mean period of wind waves + units: s + description: This parameter is the average time it takes for two consecutive wave + crests, on the surface of the ocean/sea generated by local winds, to pass through + a fixed point.

The ocean/sea surface wave field consists of a combination + of waves with different heights, lengths and directions (known as the two-dimensional + wave spectrum). The wave spectrum can be decomposed into wind-sea waves, which + are directly affected by local winds, and swell, the waves that were generated + by the wind at a different location and time. This parameter takes account of + wind-sea waves only. It is the mean over all frequencies and directions of the + total wind-sea spectrum. See further + information. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140237 + shortname: shts + longname: Significant height of total swell + units: m + description: This parameter represents the average height of the highest third of + surface ocean/sea waves associated with swell. It represents the vertical distance + between the wave crest and the wave trough.

The ocean/sea surface wave + field consists of a combination of waves with different heights, lengths and directions + (known as the two-dimensional wave spectrum). The wave spectrum can be decomposed + into wind-sea waves, which are directly affected by local winds, and swell, the + waves that were generated by the wind at a different location and time. This parameter + takes account of total swell only.

More strictly, this parameter is four + times the square root of the integral over all directions and all frequencies + of the two-dimensional total swell spectrum. The total swell spectrum is obtained + by only considering the components of the two-dimensional wave spectrum that are + not under the influence of the local wind. See + further documentation.

This parameter can be used to assess swell. + For example, engineers use significant wave height to calculate the load on structures + in the open ocean, such as oil platforms, or in coastal applications. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140238 + shortname: mdts + longname: Mean direction of total swell + units: degrees + description: This parameter is the mean direction of waves associated with swell.

The + ocean/sea surface wave field consists of a combination of waves with different + heights, lengths and directions (known as the two-dimensional wave spectrum). + The wave spectrum can be decomposed into wind-sea waves, which are directly affected + by local winds, and swell, the waves that were generated by the wind at a different + location and time.This parameter takes account of all swell only. It is the mean + over all frequencies and directions of the total swell spectrum. See further + information.

The units are degrees true which means the direction + relative to the geographic location of the north pole. It is the direction that + waves are coming FROM, so zero means 'coming from the north' and 90 'coming from + the east'. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140239 + shortname: mpts + longname: Mean period of total swell + units: s + description: This parameter is the average time it takes for two consecutive wave + crests, on the surface of the ocean/sea associated with swell, to pass through + a fixed point.

The ocean/sea surface wave field consists of a combination + of waves with different heights, lengths and directions (known as the two-dimensional + wave spectrum). The wave spectrum can be decomposed into wind-sea waves, which + are directly affected by local winds, and swell, the waves that were generated + by the wind at a different location and time. This parameter takes account of + all swell only. It is the mean over all frequencies and directions of the total + swell spectrum. See further + information. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140240 + shortname: sdhs + longname: Standard deviation wave height + units: m + description:

Used only for post processed wave climate fields before ERA-interim.

This + parameter is only available in GRIB1.

+ access_ids: [] + origin_ids: + - 98 +- id: 140241 + shortname: mu10 + longname: Mean of 10 metre wind speed + units: m s**-1 + description:

Used only for post processed wave climate fields before ERA-interim.

This + parameter is only available in GRIB1.

+ access_ids: [] + origin_ids: + - 98 +- id: 140242 + shortname: mdwi + longname: Mean wind direction + units: degrees + description:

Used only for post processed wave climate fields before ERA-interim.

This + parameter is only available in GRIB1.

+ access_ids: [] + origin_ids: + - 98 +- id: 140243 + shortname: sdu + longname: Standard deviation of 10 metre wind speed + units: m s**-1 + description:

Used only for post processed wave climate fields before ERA-interim.

This + parameter is only available in GRIB1.

+ access_ids: [] + origin_ids: + - 98 +- id: 140244 + shortname: msqs + longname: Mean square slope of waves + units: dimensionless + description: This parameter can be related analytically to the average slope of + combined wind-sea and swell waves. It can also be expressed as a function of wind + speed under some statistical assumptions. The higher the slope, the steeper the + waves. This parameter indicates the roughness of the sea/ocean surface which affects + the interaction between ocean and atmosphere. See further + information.

The ocean/sea surface wave field consists of a combination + of waves with different heights, lengths and directions (known as the two-dimensional + wave spectrum). This parameter is derived statistically from the two-dimensional + wave spectrum. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140245 + shortname: wind + longname: 10 metre wind speed + units: m s**-1 + description: 'This parameter is the horizontal speed of the ''neutral wind'', at + a height of ten metres above the surface of the Earth. The units of this parameter + are metres per second.

The neutral wind is calculated from the surface + stress and the corresponding roughness length by assuming that the air is neutrally + stratified. The neutral wind is, by definition, in the direction of the surface + stress. The size of the roughness length depends on sea state.

This parameter + is the wind speed used to force the wave model, therefore it is only calculated + over water bodies represented in the ocean wave model. It is interpolated from + the atmospheric model''s horizontal grid onto the horizontal grid used by the + ocean wave model. ' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140246 + shortname: awh + longname: Altimeter wave height + units: m + description: ' Gridded altimeter wave height data as presented to the wave model + data assimilation scheme. This parameter only exists as type analysis.' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140247 + shortname: acwh + longname: Altimeter corrected wave height + units: m + description: ' Gridded bias corrected altimeter wave height data as presented to + the wave model data assimilation scheme. This parameter only exists as type analysis.' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140248 + shortname: arrc + longname: Altimeter range relative correction + units: '~' + description: Gridded altimeter range correction as determined from the wave model.
This + parameter only exists as type analysis. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140249 + shortname: dwi + longname: 10 metre wind direction + units: degrees + description: This parameter is the direction from which the 'neutral wind' blows, + in degrees clockwise from true north, at a height of ten metres above the surface + of the Earth.

The neutral wind is calculated from the surface stress + and roughness length by assuming that the air is neutrally stratified. The neutral + wind is, by definition, in the direction of the surface stress. The size of the + roughness length depends on the sea state.

This parameter is the wind + direction used to force the wave model, therefore it is only calculated over water + bodies represented in the ocean wave model. It is interpolated from the atmospheric + model's horizontal grid onto the horizontal grid used by the ocean wave model. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140250 + shortname: 2dsp + longname: 2D wave spectra (multiple) + units: m**2 s radian**-1 + description: This parameter has not been used since 1998. It has been replaced by + 2D wave spectra (single) + access_ids: [] + origin_ids: + - 98 +- id: 140251 + shortname: 2dfd + longname: 2D wave spectra (single) + units: m**2 s radian**-1 + description: The ocean/sea surface wave field consists of a combination of waves + with different heights, lengths and directions (known as the two-dimensional wave + spectrum). This parameter represents the wave energy for each frequency and direction + at each model grid point i.e., it describes the contribution to the frequency + and direction of the two-dimensional wave spectrum.

Strictly, this parameter + is the base ten logarithm of the spectral density of ocean waves in two dimensions + (across the horizontal surface of the ocean). Therefore, all values (except missing + data) need to be raised to the power of ten to give the spectral density. 'Missing + data' is indicated by a value of 0. The spectral density describes the combination + of waves with different heights, lengths and directions. See + further documentation. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140252 + shortname: wsk + longname: Wave spectral kurtosis + units: dimensionless + description: This parameter is a statistical measure used to forecast extreme or + freak ocean/sea waves. It describes the nature of the sea surface elevation and + how it is affected by waves generated by local winds and associated with swell. +

Under typical conditions, the sea surface elevation, as described by + its probability density function, has a near normal distribution in the statistical + sense. However, under certain wave conditions the probability density function + of the sea surface elevation can deviate considerably from normality, signalling + increased probability of freak waves.

This parameter gives one measure + of the deviation from normality. It shows how much of the probability density + function of the sea surface elevation exists in the tails of the distribution. + So, a positive kurtosis (typical range 0.0 to 0.06) means more frequent occurrences + of very extreme values (either above or below the mean), relative to a normal + distribution. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140253 + shortname: bfi + longname: Benjamin-Feir index + units: dimensionless + description: This parameter is used to calculate the likelihood of freak ocean waves, + which are waves that are higher than twice the mean height of the highest third + of waves. Large values of this parameter (in practice of the order 1) indicate + increased probability of the occurrence of freak waves.

The ocean/sea + surface wave field consists of a combination of waves with different heights, + lengths and directions (known as the two-dimensional wave spectrum). This parameter + is derived from the statistics of the two-dimensional wave spectrum. More precisely, + it is the square of the ratio of the integral ocean wave steepness and the relative + width of the frequency spectrum of the waves.

Further information on + the calculation of this parameter is given in Section 10.6 of the ECMWF + Wave Model documentation. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140254 + shortname: wsp + longname: Wave spectral peakedness + units: dimensionless + description: This parameter is a statistical measure used to forecast extreme or + freak waves. It is a measure of the relative width of the ocean/sea wave frequency + spectrum (i.e., whether the ocean/sea wave field is made up of a narrow or broad + range of frequencies).

The ocean/sea surface wave field consists of a + combination of waves with different heights, lengths and directions (known as + the two-dimensional wave spectrum). When the wave field is more focussed around + a narrow range of frequencies, the probability of freak/extreme waves increases. +

This parameter is Goda's peakedness factor and is used to calculate + the Benjamin-Feir Index (BFI). The BFI is in turn used to estimate the probability + and nature of extreme/freak waves. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 140255 + shortname: '~' + longname: Indicates a missing value + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 141098 + shortname: avg_weta + longname: Time-mean wave induced mean sea level correction + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141099 + shortname: avg_wraf + longname: Time-mean ratio of wave angular and frequency width + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141100 + shortname: avg_wnslc + longname: Time-mean number of events in freak waves statistics + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141101 + shortname: avg_utaua + longname: Time-mean U-component of atmospheric surface momentum flux + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141102 + shortname: avg_vtaua + longname: Time-mean V-component of atmospheric surface momentum flux + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141103 + shortname: avg_utauo + longname: Time-mean U-component of surface momentum flux into ocean + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141104 + shortname: avg_vtauo + longname: Time-mean V-component of surface momentum flux into ocean + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141105 + shortname: avg_wphio + longname: Time-mean wave turbulent energy flux into ocean + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141106 + shortname: avg_wdw1 + longname: Time-mean wave directional width of first swell partition + units: radians + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141107 + shortname: avg_wfw1 + longname: Time-mean wave frequency width of first swell partition + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141108 + shortname: avg_wdw2 + longname: Time-mean wave directional width of second swell partition + units: radians + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141109 + shortname: avg_wfw2 + longname: Time-mean wave frequency width of second swell partition + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141110 + shortname: avg_wdw3 + longname: Time-mean wave directional width of third swell partition + units: radians + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141111 + shortname: avg_wfw3 + longname: Time-mean wave frequency width of third swell partition + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141112 + shortname: avg_wefxm + longname: Time-mean wave energy flux magnitude + units: W m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141113 + shortname: avg_wefxd + longname: Time-mean wave energy flux mean direction + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141114 + shortname: avg_h1012 + longname: Time-mean significant wave height of all waves with periods within the + inclusive range from 10 to 12 seconds + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141115 + shortname: avg_h1214 + longname: Time-mean significant wave height of all waves with periods within the + inclusive range from 12 to 14 seconds + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141116 + shortname: avg_h1417 + longname: Time-mean significant wave height of all waves with periods within the + inclusive range from 14 to 17 seconds + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141117 + shortname: avg_h1721 + longname: Time-mean significant wave height of all waves with periods within the + inclusive range from 17 to 21 seconds + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141118 + shortname: avg_h2125 + longname: Time-mean significant wave height of all waves with periods within the + inclusive range from 21 to 25 seconds + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141119 + shortname: avg_h2530 + longname: Time-mean significant wave height of all waves with periods within the + inclusive range from 25 to 30 seconds + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141120 + shortname: avg_sh10 + longname: Time-mean significant wave height of all waves with period larger than + 10s + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141121 + shortname: avg_swh1 + longname: Time-mean significant wave height of first swell partition + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141122 + shortname: avg_mwd1 + longname: Time-mean mean wave direction of first swell partition + units: degrees + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141123 + shortname: avg_mwp1 + longname: Time-mean mean wave period of first swell partition + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141124 + shortname: avg_swh2 + longname: Time-mean significant wave height of second swell partition + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141125 + shortname: avg_mwd2 + longname: Time-mean mean wave direction of second swell partition + units: degrees + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141126 + shortname: avg_mwp2 + longname: Time-mean mean wave period of second swell partition + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141127 + shortname: avg_swh3 + longname: Time-mean significant wave height of third swell partition + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141128 + shortname: avg_mwd3 + longname: Time-mean mean wave direction of third swell partition + units: degrees + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141129 + shortname: avg_mwp3 + longname: Time-mean mean wave period of third swell partition + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141131 + shortname: avg_tdcmax + longname: Time-mean time domain maximum individual crest height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141132 + shortname: avg_tdhmax + longname: Time-mean time domain maximum individual wave height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141133 + shortname: avg_stcmax + longname: Time-mean space time maximum individual crest height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141134 + shortname: avg_sthmax + longname: Time-mean space time maximum individual wave height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141135 + shortname: avg_pp1dw + longname: Time-mean peak wave period of wind waves + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141136 + shortname: avg_pp1ds + longname: Time-mean peak wave period of total swell + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141137 + shortname: avg_pp1d1 + longname: Time-mean peak wave period of first swell partition + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141138 + shortname: avg_pp1d2 + longname: Time-mean peak wave period of second swell partition + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141139 + shortname: avg_pp1d3 + longname: Time-mean peak wave period of third swell partition + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141140 + shortname: avg_pwd + longname: Time-mean peak wave direction (total) + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141141 + shortname: avg_pwdw + longname: Time-mean peak wave direction of wind waves + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141142 + shortname: avg_pwds + longname: Time-mean peak wave direction of total swell + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141143 + shortname: avg_pwd1 + longname: Time-mean peak wave direction of first swell partition + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141144 + shortname: avg_pwd2 + longname: Time-mean peak wave direction of second swell partition + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141145 + shortname: avg_pwd3 + longname: Time-mean peak wave direction of third swell partition + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141146 + shortname: avg_wcfr + longname: Time-mean whitecap fraction + units: Fraction + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141147 + shortname: avg_bfi2d + longname: Time-mean Benjamin-Feir index 2D + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141148 + shortname: avg_ctc + longname: Time-mean crest-trough correlation + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141149 + shortname: avg_xwrs + longname: Time-mean X component of the wave radiative stress to sea ice + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141150 + shortname: avg_ywrs + longname: Time-mean Y component of the wave radiative stress to sea ice + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141207 + shortname: avg_wss + longname: Time-mean wave Spectral Skewness + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141208 + shortname: avg_wstar + longname: Time-mean free convective velocity over the oceans + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141209 + shortname: avg_rhoao + longname: Time-mean air density over the oceans + units: kg m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141211 + shortname: avg_phiaw + longname: Time-mean normalized energy flux into waves + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141212 + shortname: avg_phioc + longname: Time-mean normalized energy flux into ocean + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141214 + shortname: avg_tauoc + longname: Time-mean normalized stress into ocean + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141215 + shortname: avg_ust + longname: Time-mean U-component surface stokes drift + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141216 + shortname: avg_vst + longname: Time-mean V-component surface stokes drift + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141217 + shortname: avg_tmax + longname: Time-mean period corresponding to maximum individual wave height + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141218 + shortname: avg_hmax + longname: Time-mean envelop-maximum individual wave height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141220 + shortname: avg_mp1 + longname: Time-mean mean wave period based on first moment + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141221 + shortname: avg_mp2 + longname: Time-mean mean zero-crossing wave period + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141222 + shortname: avg_wdw + longname: Time-mean wave spectral directional width + units: radians + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141223 + shortname: avg_p1ww + longname: Time-mean mean wave period based on first moment for wind waves + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141224 + shortname: avg_p2ww + longname: Time-mean mean wave period based on second moment for wind waves + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141225 + shortname: avg_dwww + longname: Time-mean wave spectral directional width for wind waves + units: radians + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141226 + shortname: avg_p1ps + longname: Time-mean mean wave period based on first moment for swell + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141227 + shortname: avg_p2ps + longname: Time-mean mean wave period based on second moment for swell + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141228 + shortname: avg_dwps + longname: Time-mean wave spectral directional width for swell + units: radians + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141229 + shortname: avg_swh + longname: Time-mean significant height of combined wind waves and swell + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141230 + shortname: avg_mwd + longname: Time-mean mean wave direction + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141231 + shortname: avg_pp1d + longname: Time-mean peak wave period + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141232 + shortname: avg_mwp + longname: Time-mean mean wave period + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141233 + shortname: avg_cdww + longname: Time-mean coefficient of drag with waves + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141234 + shortname: avg_shww + longname: Time-mean significant height of wind waves + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141235 + shortname: avg_mdww + longname: Time-mean mean direction of wind waves + units: degrees + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141236 + shortname: avg_mpww + longname: Time-mean mean period of wind waves + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141237 + shortname: avg_shts + longname: Time-mean significant height of total swell + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141238 + shortname: avg_mdts + longname: Time-mean mean direction of total swell + units: degrees + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141239 + shortname: avg_mpts + longname: Time-mean mean period of total swell + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141244 + shortname: avg_msqs + longname: Time-mean mean square slope of waves + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141245 + shortname: avg_wind + longname: Time-mean 10 metre wind speed + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141249 + shortname: avg_dwi + longname: Time-mean 10 metre wind direction + units: degrees + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141252 + shortname: avg_wsk + longname: Time-mean wave spectral kurtosis + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141253 + shortname: avg_bfi + longname: Time-mean benjamin-Feir index + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 141254 + shortname: avg_wsp + longname: Time-mean wave spectral peakedness + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143098 + shortname: max_weta + longname: Time-maximum wave induced mean sea level correction + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143099 + shortname: max_wraf + longname: Time-maximum ratio of wave angular and frequency width + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143100 + shortname: max_wnslc + longname: Time-maximum number of events in freak waves statistics + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143101 + shortname: max_utaua + longname: Time-maximum U-component of atmospheric surface momentum flux + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143102 + shortname: max_vtaua + longname: Time-maximum V-component of atmospheric surface momentum flux + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143103 + shortname: max_utauo + longname: Time-maximum U-component of surface momentum flux into ocean + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143104 + shortname: max_vtauo + longname: Time-maximum V-component of surface momentum flux into ocean + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143105 + shortname: max_wphio + longname: Time-maximum wave turbulent energy flux into ocean + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143106 + shortname: max_wdw1 + longname: Time-maximum wave directional width of first swell partition + units: radians + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143107 + shortname: max_wfw1 + longname: Time-maximum wave frequency width of first swell partition + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143108 + shortname: max_wdw2 + longname: Time-maximum wave directional width of second swell partition + units: radians + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143109 + shortname: max_wfw2 + longname: Time-maximum wave frequency width of second swell partition + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143110 + shortname: max_wdw3 + longname: Time-maximum wave directional width of third swell partition + units: radians + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143111 + shortname: max_wfw3 + longname: Time-maximum wave frequency width of third swell partition + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143112 + shortname: max_wefxm + longname: Time-maximum wave energy flux magnitude + units: W m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143113 + shortname: max_wefxd + longname: Time-maximum wave energy flux mean direction + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143114 + shortname: max_h1012 + longname: Time-maximum significant wave height of all waves with periods within + the inclusive range from 10 to 12 seconds + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143115 + shortname: max_h1214 + longname: Time-maximum significant wave height of all waves with periods within + the inclusive range from 12 to 14 seconds + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143116 + shortname: max_h1417 + longname: Time-maximum significant wave height of all waves with periods within + the inclusive range from 14 to 17 seconds + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143117 + shortname: max_h1721 + longname: Time-maximum significant wave height of all waves with periods within + the inclusive range from 17 to 21 seconds + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143118 + shortname: max_h2125 + longname: Time-maximum significant wave height of all waves with periods within + the inclusive range from 21 to 25 seconds + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143119 + shortname: max_h2530 + longname: Time-maximum significant wave height of all waves with periods within + the inclusive range from 25 to 30 seconds + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143120 + shortname: max_sh10 + longname: Time-maximum significant wave height of all waves with period larger than + 10s + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143121 + shortname: max_swh1 + longname: Time-maximum significant wave height of first swell partition + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143122 + shortname: max_mwd1 + longname: Time-maximum mean wave direction of first swell partition + units: degrees + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143123 + shortname: max_mwp1 + longname: Time-maximum mean wave period of first swell partition + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143124 + shortname: max_swh2 + longname: Time-maximum significant wave height of second swell partition + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143125 + shortname: max_mwd2 + longname: Time-maximum mean wave direction of second swell partition + units: degrees + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143126 + shortname: max_mwp2 + longname: Time-maximum mean wave period of second swell partition + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143127 + shortname: max_swh3 + longname: Time-maximum significant wave height of third swell partition + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143128 + shortname: max_mwd3 + longname: Time-maximum mean wave direction of third swell partition + units: degrees + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143129 + shortname: max_mwp3 + longname: Time-maximum mean wave period of third swell partition + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143131 + shortname: max_tdcmax + longname: Time-maximum time domain maximum individual crest height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143132 + shortname: max_tdhmax + longname: Time-maximum time domain maximum individual wave height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143133 + shortname: max_stcmax + longname: Time-maximum space time maximum individual crest height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143134 + shortname: max_sthmax + longname: Time-maximum space time maximum individual wave height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143135 + shortname: max_pp1dw + longname: Time-maximum peak wave period of wind waves + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143136 + shortname: max_pp1ds + longname: Time-maximum peak wave period of total swell + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143137 + shortname: max_pp1d1 + longname: Time-maximum peak wave period of first swell partition + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143138 + shortname: max_pp1d2 + longname: Time-maximum peak wave period of second swell partition + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143139 + shortname: max_pp1d3 + longname: Time-maximum peak wave period of third swell partition + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143140 + shortname: max_pwd + longname: Time-maximum peak wave direction (total) + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143141 + shortname: max_pwdw + longname: Time-maximum peak wave direction of wind waves + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143142 + shortname: max_pwds + longname: Time-maximum peak wave direction of total swell + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143143 + shortname: max_pwd1 + longname: Time-maximum peak wave direction of first swell partition + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143144 + shortname: max_pwd2 + longname: Time-maximum peak wave direction of second swell partition + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143145 + shortname: max_pwd3 + longname: Time-maximum peak wave direction of third swell partition + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143146 + shortname: max_wcfr + longname: Time-maximum whitecap fraction + units: Fraction + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143147 + shortname: max_bfi2d + longname: Time-maximum Benjamin-Feir index 2D + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143148 + shortname: max_ctc + longname: Time-maximum crest-trough correlation + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143149 + shortname: max_xwrs + longname: Time-maximum X component of the wave radiative stress to sea ice + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143150 + shortname: max_ywrs + longname: Time-maximum Y component of the wave radiative stress to sea ice + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143207 + shortname: max_wss + longname: Time-maximum wave Spectral Skewness + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143208 + shortname: max_wstar + longname: Time-maximum free convective velocity over the oceans + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143209 + shortname: max_rhoao + longname: Time-maximum air density over the oceans + units: kg m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143211 + shortname: max_phiaw + longname: Time-maximum normalized energy flux into waves + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143212 + shortname: max_phioc + longname: Time-maximum normalized energy flux into ocean + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143214 + shortname: max_tauoc + longname: Time-maximum normalized stress into ocean + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143215 + shortname: max_ust + longname: Time-maximum U-component surface stokes drift + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143216 + shortname: max_vst + longname: Time-maximum V-component surface stokes drift + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143217 + shortname: max_tmax + longname: Time-maximum period corresponding to maximum individual wave height + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143218 + shortname: max_hmax + longname: Time-maximum envelop-maximum individual wave height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143220 + shortname: max_mp1 + longname: Time-maximum mean wave period based on first moment + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143221 + shortname: max_mp2 + longname: Time-maximum mean zero-crossing wave period + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143222 + shortname: max_wdw + longname: Time-maximum wave spectral directional width + units: radians + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143223 + shortname: max_p1ww + longname: Time-maximum mean wave period based on first moment for wind waves + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143224 + shortname: max_p2ww + longname: Time-maximum mean wave period based on second moment for wind waves + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143225 + shortname: max_dwww + longname: Time-maximum wave spectral directional width for wind waves + units: radians + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143226 + shortname: max_p1ps + longname: Time-maximum mean wave period based on first moment for swell + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143227 + shortname: max_p2ps + longname: Time-maximum mean wave period based on second moment for swell + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143228 + shortname: max_dwps + longname: Time-maximum wave spectral directional width for swell + units: radians + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143229 + shortname: max_swh + longname: Time-maximum significant height of combined wind waves and swell + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143230 + shortname: max_mwd + longname: Time-maximum mean wave direction + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143231 + shortname: max_pp1d + longname: Time-maximum peak wave period + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143232 + shortname: max_mwp + longname: Time-maximum mean wave period + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143233 + shortname: max_cdww + longname: Time-maximum coefficient of drag with waves + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143234 + shortname: max_shww + longname: Time-maximum significant height of wind waves + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143235 + shortname: max_mdww + longname: Time-maximum mean direction of wind waves + units: degrees + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143236 + shortname: max_mpww + longname: Time-maximum mean period of wind waves + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143237 + shortname: max_shts + longname: Time-maximum significant height of total swell + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143238 + shortname: max_mdts + longname: Time-maximum mean direction of total swell + units: degrees + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143239 + shortname: max_mpts + longname: Time-maximum mean period of total swell + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143244 + shortname: max_msqs + longname: Time-maximum mean square slope of waves + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143245 + shortname: max_wind + longname: Time-maximum 10 metre wind speed + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143249 + shortname: max_dwi + longname: Time-maximum 10 metre wind direction + units: degrees + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143252 + shortname: max_wsk + longname: Time-maximum wave spectral kurtosis + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143253 + shortname: max_bfi + longname: Time-maximum benjamin-Feir index + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 143254 + shortname: max_wsp + longname: Time-maximum wave spectral peakedness + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144098 + shortname: min_weta + longname: Time-minimum wave induced mean sea level correction + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144099 + shortname: min_wraf + longname: Time-minimum ratio of wave angular and frequency width + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144100 + shortname: min_wnslc + longname: Time-minimum number of events in freak waves statistics + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144101 + shortname: min_utaua + longname: Time-minimum U-component of atmospheric surface momentum flux + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144102 + shortname: min_vtaua + longname: Time-minimum V-component of atmospheric surface momentum flux + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144103 + shortname: min_utauo + longname: Time-minimum U-component of surface momentum flux into ocean + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144104 + shortname: min_vtauo + longname: Time-minimum V-component of surface momentum flux into ocean + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144105 + shortname: min_wphio + longname: Time-minimum wave turbulent energy flux into ocean + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144106 + shortname: min_wdw1 + longname: Time-minimum wave directional width of first swell partition + units: radians + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144107 + shortname: min_wfw1 + longname: Time-minimum wave frequency width of first swell partition + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144108 + shortname: min_wdw2 + longname: Time-minimum wave directional width of second swell partition + units: radians + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144109 + shortname: min_wfw2 + longname: Time-minimum wave frequency width of second swell partition + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144110 + shortname: min_wdw3 + longname: Time-minimum wave directional width of third swell partition + units: radians + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144111 + shortname: min_wfw3 + longname: Time-minimum wave frequency width of third swell partition + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144112 + shortname: min_wefxm + longname: Time-minimum wave energy flux magnitude + units: W m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144113 + shortname: min_wefxd + longname: Time-minimum wave energy flux mean direction + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144114 + shortname: min_h1012 + longname: Time-minimum significant wave height of all waves with periods within + the inclusive range from 10 to 12 seconds + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144115 + shortname: min_h1214 + longname: Time-minimum significant wave height of all waves with periods within + the inclusive range from 12 to 14 seconds + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144116 + shortname: min_h1417 + longname: Time-minimum significant wave height of all waves with periods within + the inclusive range from 14 to 17 seconds + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144117 + shortname: min_h1721 + longname: Time-minimum significant wave height of all waves with periods within + the inclusive range from 17 to 21 seconds + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144118 + shortname: min_h2125 + longname: Time-minimum significant wave height of all waves with periods within + the inclusive range from 21 to 25 seconds + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144119 + shortname: min_h2530 + longname: Time-minimum significant wave height of all waves with periods within + the inclusive range from 25 to 30 seconds + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144120 + shortname: min_sh10 + longname: Time-minimum significant wave height of all waves with period larger than + 10s + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144121 + shortname: min_swh1 + longname: Time-minimum significant wave height of first swell partition + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144122 + shortname: min_mwd1 + longname: Time-minimum mean wave direction of first swell partition + units: degrees + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144123 + shortname: min_mwp1 + longname: Time-minimum mean wave period of first swell partition + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144124 + shortname: min_swh2 + longname: Time-minimum significant wave height of second swell partition + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144125 + shortname: min_mwd2 + longname: Time-minimum mean wave direction of second swell partition + units: degrees + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144126 + shortname: min_mwp2 + longname: Time-minimum mean wave period of second swell partition + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144127 + shortname: min_swh3 + longname: Time-minimum significant wave height of third swell partition + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144128 + shortname: min_mwd3 + longname: Time-minimum mean wave direction of third swell partition + units: degrees + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144129 + shortname: min_mwp3 + longname: Time-minimum mean wave period of third swell partition + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144131 + shortname: min_tdcmax + longname: Time-minimum time domain maximum individual crest height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144132 + shortname: min_tdhmax + longname: Time-minimum time domain maximum individual wave height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144133 + shortname: min_stcmax + longname: Time-minimum space time maximum individual crest height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144134 + shortname: min_sthmax + longname: Time-minimum space time maximum individual wave height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144135 + shortname: min_pp1dw + longname: Time-minimum peak wave period of wind waves + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144136 + shortname: min_pp1ds + longname: Time-minimum peak wave period of total swell + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144137 + shortname: min_pp1d1 + longname: Time-minimum peak wave period of first swell partition + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144138 + shortname: min_pp1d2 + longname: Time-minimum peak wave period of second swell partition + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144139 + shortname: min_pp1d3 + longname: Time-minimum peak wave period of third swell partition + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144140 + shortname: min_pwd + longname: Time-minimum peak wave direction (total) + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144141 + shortname: min_pwdw + longname: Time-minimum peak wave direction of wind waves + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144142 + shortname: min_pwds + longname: Time-minimum peak wave direction of total swell + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144143 + shortname: min_pwd1 + longname: Time-minimum peak wave direction of first swell partition + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144144 + shortname: min_pwd2 + longname: Time-minimum peak wave direction of second swell partition + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144145 + shortname: min_pwd3 + longname: Time-minimum peak wave direction of third swell partition + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144146 + shortname: min_wcfr + longname: Time-minimum whitecap fraction + units: Fraction + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144147 + shortname: min_bfi2d + longname: Time-minimum Benjamin-Feir index 2D + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144148 + shortname: min_ctc + longname: Time-minimum crest-trough correlation + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144149 + shortname: min_xwrs + longname: Time-minimum X component of the wave radiative stress to sea ice + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144150 + shortname: min_ywrs + longname: Time-minimum Y component of the wave radiative stress to sea ice + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144207 + shortname: min_wss + longname: Time-minimum wave Spectral Skewness + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144208 + shortname: min_wstar + longname: Time-minimum free convective velocity over the oceans + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144209 + shortname: min_rhoao + longname: Time-minimum air density over the oceans + units: kg m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144211 + shortname: min_phiaw + longname: Time-minimum normalized energy flux into waves + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144212 + shortname: min_phioc + longname: Time-minimum normalized energy flux into ocean + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144214 + shortname: min_tauoc + longname: Time-minimum normalized stress into ocean + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144215 + shortname: min_ust + longname: Time-minimum U-component surface stokes drift + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144216 + shortname: min_vst + longname: Time-minimum V-component surface stokes drift + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144217 + shortname: min_tmax + longname: Time-minimum period corresponding to maximum individual wave height + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144218 + shortname: min_hmax + longname: Time-minimum envelop-maximum individual wave height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144220 + shortname: min_mp1 + longname: Time-minimum mean wave period based on first moment + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144221 + shortname: min_mp2 + longname: Time-minimum mean zero-crossing wave period + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144222 + shortname: min_wdw + longname: Time-minimum wave spectral directional width + units: radians + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144223 + shortname: min_p1ww + longname: Time-minimum mean wave period based on first moment for wind waves + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144224 + shortname: min_p2ww + longname: Time-minimum mean wave period based on second moment for wind waves + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144225 + shortname: min_dwww + longname: Time-minimum wave spectral directional width for wind waves + units: radians + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144226 + shortname: min_p1ps + longname: Time-minimum mean wave period based on first moment for swell + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144227 + shortname: min_p2ps + longname: Time-minimum mean wave period based on second moment for swell + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144228 + shortname: min_dwps + longname: Time-minimum wave spectral directional width for swell + units: radians + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144229 + shortname: min_swh + longname: Time-minimum significant height of combined wind waves and swell + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144230 + shortname: min_mwd + longname: Time-minimum mean wave direction + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144231 + shortname: min_pp1d + longname: Time-minimum peak wave period + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144232 + shortname: min_mwp + longname: Time-minimum mean wave period + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144233 + shortname: min_cdww + longname: Time-minimum coefficient of drag with waves + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144234 + shortname: min_shww + longname: Time-minimum significant height of wind waves + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144235 + shortname: min_mdww + longname: Time-minimum mean direction of wind waves + units: degrees + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144236 + shortname: min_mpww + longname: Time-minimum mean period of wind waves + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144237 + shortname: min_shts + longname: Time-minimum significant height of total swell + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144238 + shortname: min_mdts + longname: Time-minimum mean direction of total swell + units: degrees + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144239 + shortname: min_mpts + longname: Time-minimum mean period of total swell + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144244 + shortname: min_msqs + longname: Time-minimum mean square slope of waves + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144245 + shortname: min_wind + longname: Time-minimum 10 metre wind speed + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144249 + shortname: min_dwi + longname: Time-minimum 10 metre wind direction + units: degrees + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144252 + shortname: min_wsk + longname: Time-minimum wave spectral kurtosis + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144253 + shortname: min_bfi + longname: Time-minimum benjamin-Feir index + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 144254 + shortname: min_wsp + longname: Time-minimum wave spectral peakedness + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145098 + shortname: std_weta + longname: Time-standard-deviation wave induced mean sea level correction + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145099 + shortname: std_wraf + longname: Time-standard-deviation ratio of wave angular and frequency width + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145100 + shortname: std_wnslc + longname: Time-standard-deviation number of events in freak waves statistics + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145101 + shortname: std_utaua + longname: Time-standard-deviation U-component of atmospheric surface momentum flux + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145102 + shortname: std_vtaua + longname: Time-standard-deviation V-component of atmospheric surface momentum flux + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145103 + shortname: std_utauo + longname: Time-standard-deviation U-component of surface momentum flux into ocean + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145104 + shortname: std_vtauo + longname: Time-standard-deviation V-component of surface momentum flux into ocean + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145105 + shortname: std_wphio + longname: Time-standard-deviation wave turbulent energy flux into ocean + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145106 + shortname: std_wdw1 + longname: Time-standard-deviation wave directional width of first swell partition + units: radians + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145107 + shortname: std_wfw1 + longname: Time-standard-deviation wave frequency width of first swell partition + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145108 + shortname: std_wdw2 + longname: Time-standard-deviation wave directional width of second swell partition + units: radians + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145109 + shortname: std_wfw2 + longname: Time-standard-deviation wave frequency width of second swell partition + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145110 + shortname: std_wdw3 + longname: Time-standard-deviation wave directional width of third swell partition + units: radians + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145111 + shortname: std_wfw3 + longname: Time-standard-deviation wave frequency width of third swell partition + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145112 + shortname: std_wefxm + longname: Time-standard-deviation wave energy flux magnitude + units: W m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145113 + shortname: std_wefxd + longname: Time-standard-deviation wave energy flux mean direction + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145114 + shortname: std_h1012 + longname: Time-standard-deviation significant wave height of all waves with periods + within the inclusive range from 10 to 12 seconds + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145115 + shortname: std_h1214 + longname: Time-standard-deviation significant wave height of all waves with periods + within the inclusive range from 12 to 14 seconds + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145116 + shortname: std_h1417 + longname: Time-standard-deviation significant wave height of all waves with periods + within the inclusive range from 14 to 17 seconds + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145117 + shortname: std_h1721 + longname: Time-standard-deviation significant wave height of all waves with periods + within the inclusive range from 17 to 21 seconds + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145118 + shortname: std_h2125 + longname: Time-standard-deviation significant wave height of all waves with periods + within the inclusive range from 21 to 25 seconds + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145119 + shortname: std_h2530 + longname: Time-standard-deviation significant wave height of all waves with periods + within the inclusive range from 25 to 30 seconds + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145120 + shortname: std_sh10 + longname: Time-standard-deviation significant wave height of all waves with period + larger than 10s + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145121 + shortname: std_swh1 + longname: Time-standard-deviation significant wave height of first swell partition + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145122 + shortname: std_mwd1 + longname: Time-standard-deviation mean wave direction of first swell partition + units: degrees + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145123 + shortname: std_mwp1 + longname: Time-standard-deviation mean wave period of first swell partition + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145124 + shortname: std_swh2 + longname: Time-standard-deviation significant wave height of second swell partition + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145125 + shortname: std_mwd2 + longname: Time-standard-deviation mean wave direction of second swell partition + units: degrees + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145126 + shortname: std_mwp2 + longname: Time-standard-deviation mean wave period of second swell partition + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145127 + shortname: std_swh3 + longname: Time-standard-deviation significant wave height of third swell partition + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145128 + shortname: std_mwd3 + longname: Time-standard-deviation mean wave direction of third swell partition + units: degrees + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145129 + shortname: std_mwp3 + longname: Time-standard-deviation mean wave period of third swell partition + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145131 + shortname: std_tdcmax + longname: Time-standard-deviation time domain maximum individual crest height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145132 + shortname: std_tdhmax + longname: Time-standard-deviation time domain maximum individual wave height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145133 + shortname: std_stcmax + longname: Time-standard-deviation space time maximum individual crest height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145134 + shortname: std_sthmax + longname: Time-standard-deviation space time maximum individual wave height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145135 + shortname: std_pp1dw + longname: Time-standard-deviation peak wave period of wind waves + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145136 + shortname: std_pp1ds + longname: Time-standard-deviation peak wave period of total swell + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145137 + shortname: std_pp1d1 + longname: Time-standard-deviation peak wave period of first swell partition + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145138 + shortname: std_pp1d2 + longname: Time-standard-deviation peak wave period of second swell partition + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145139 + shortname: std_pp1d3 + longname: Time-standard-deviation peak wave period of third swell partition + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145140 + shortname: std_pwd + longname: Time-standard-deviation peak wave direction (total) + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145141 + shortname: std_pwdw + longname: Time-standard-deviation peak wave direction of wind waves + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145142 + shortname: std_pwds + longname: Time-standard-deviation peak wave direction of total swell + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145143 + shortname: std_pwd1 + longname: Time-standard-deviation peak wave direction of first swell partition + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145144 + shortname: std_pwd2 + longname: Time-standard-deviation peak wave direction of second swell partition + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145145 + shortname: std_pwd3 + longname: Time-standard-deviation peak wave direction of third swell partition + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145146 + shortname: std_wcfr + longname: Time-standard-deviation whitecap fraction + units: Fraction + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145147 + shortname: std_bfi2d + longname: Time-standard-deviation Benjamin-Feir index 2D + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145148 + shortname: std_ctc + longname: Time-standard-deviation crest-trough correlation + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145149 + shortname: std_xwrs + longname: Time-standard-deviation X component of the wave radiative stress to sea + ice + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145150 + shortname: std_ywrs + longname: Time-standard-deviation Y component of the wave radiative stress to sea + ice + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145207 + shortname: std_wss + longname: Time-standard-deviation wave Spectral Skewness + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145208 + shortname: std_wstar + longname: Time-standard-deviation free convective velocity over the oceans + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145209 + shortname: std_rhoao + longname: Time-standard-deviation air density over the oceans + units: kg m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145211 + shortname: std_phiaw + longname: Time-standard-deviation normalized energy flux into waves + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145212 + shortname: std_phioc + longname: Time-standard-deviation normalized energy flux into ocean + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145214 + shortname: std_tauoc + longname: Time-standard-deviation normalized stress into ocean + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145215 + shortname: std_ust + longname: Time-standard-deviation U-component surface stokes drift + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145216 + shortname: std_vst + longname: Time-standard-deviation V-component surface stokes drift + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145217 + shortname: std_tmax + longname: Time-standard-deviation period corresponding to maximum individual wave + height + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145218 + shortname: std_hmax + longname: Time-standard-deviation envelop-maximum individual wave height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145220 + shortname: std_mp1 + longname: Time-standard-deviation mean wave period based on first moment + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145221 + shortname: std_mp2 + longname: Time-standard-deviation mean zero-crossing wave period + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145222 + shortname: std_wdw + longname: Time-standard-deviation wave spectral directional width + units: radians + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145223 + shortname: std_p1ww + longname: Time-standard-deviation mean wave period based on first moment for wind + waves + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145224 + shortname: std_p2ww + longname: Time-standard-deviation mean wave period based on second moment for wind + waves + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145225 + shortname: std_dwww + longname: Time-standard-deviation wave spectral directional width for wind waves + units: radians + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145226 + shortname: std_p1ps + longname: Time-standard-deviation mean wave period based on first moment for swell + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145227 + shortname: std_p2ps + longname: Time-standard-deviation mean wave period based on second moment for swell + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145228 + shortname: std_dwps + longname: Time-standard-deviation wave spectral directional width for swell + units: radians + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145229 + shortname: std_swh + longname: Time-standard-deviation significant height of combined wind waves and + swell + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145230 + shortname: std_mwd + longname: Time-standard-deviation mean wave direction + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145231 + shortname: std_pp1d + longname: Time-standard-deviation peak wave period + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145232 + shortname: std_mwp + longname: Time-standard-deviation mean wave period + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145233 + shortname: std_cdww + longname: Time-standard-deviation coefficient of drag with waves + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145234 + shortname: std_shww + longname: Time-standard-deviation significant height of wind waves + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145235 + shortname: std_mdww + longname: Time-standard-deviation mean direction of wind waves + units: degrees + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145236 + shortname: std_mpww + longname: Time-standard-deviation mean period of wind waves + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145237 + shortname: std_shts + longname: Time-standard-deviation significant height of total swell + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145238 + shortname: std_mdts + longname: Time-standard-deviation mean direction of total swell + units: degrees + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145239 + shortname: std_mpts + longname: Time-standard-deviation mean period of total swell + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145244 + shortname: std_msqs + longname: Time-standard-deviation mean square slope of waves + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145245 + shortname: std_wind + longname: Time-standard-deviation 10 metre wind speed + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145249 + shortname: std_dwi + longname: Time-standard-deviation 10 metre wind direction + units: degrees + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145252 + shortname: std_wsk + longname: Time-standard-deviation wave spectral kurtosis + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145253 + shortname: std_bfi + longname: Time-standard-deviation benjamin-Feir index + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 145254 + shortname: std_wsp + longname: Time-standard-deviation wave spectral peakedness + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 150129 + shortname: ocpt + longname: Ocean potential temperature + units: deg C + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 150130 + shortname: ocs + longname: Ocean salinity + units: psu + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 150131 + shortname: ocpd + longname: Ocean potential density + units: kg m**-3 -1000 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 150133 + shortname: '~' + longname: Ocean U wind component + units: m s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 150134 + shortname: '~' + longname: Ocean V wind component + units: m s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 150135 + shortname: ocw + longname: Ocean W wind component + units: m s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 150137 + shortname: rn + longname: Richardson number + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 150139 + shortname: uv + longname: U*V product + units: m s**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 150140 + shortname: ut + longname: U*T product + units: m s**-1 deg C + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 150141 + shortname: vt + longname: V*T product + units: m s**-1 deg C + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 150142 + shortname: uu + longname: U*U product + units: m s**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 150143 + shortname: vv + longname: V*V product + units: m s**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 150144 + shortname: '~' + longname: UV - U~V~ + units: m s**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 150145 + shortname: '~' + longname: UT - U~T~ + units: m s**-1 deg C + description: null + access_ids: [] + origin_ids: + - 98 +- id: 150146 + shortname: '~' + longname: VT - V~T~ + units: m s**-1 deg C + description: null + access_ids: [] + origin_ids: + - 98 +- id: 150147 + shortname: '~' + longname: UU - U~U~ + units: m s**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 150148 + shortname: '~' + longname: VV - V~V~ + units: m s**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 150152 + shortname: sl + longname: Sea level + units: m + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 150153 + shortname: '~' + longname: Barotropic stream function + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 150154 + shortname: mld + longname: Mixed layer depth + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 150155 + shortname: '~' + longname: Depth + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 150168 + shortname: '~' + longname: U stress + units: Pa + description: null + access_ids: [] + origin_ids: + - 98 +- id: 150169 + shortname: '~' + longname: V stress + units: Pa + description: null + access_ids: [] + origin_ids: + - 98 +- id: 150170 + shortname: '~' + longname: Turbulent kinetic energy input + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 150171 + shortname: nsf + longname: Net surface heat flux + units: '~' + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 150172 + shortname: '~' + longname: Surface solar radiation + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 150173 + shortname: '~' + longname: P-E + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 150180 + shortname: '~' + longname: Diagnosed sea surface temperature error + units: deg C + description: null + access_ids: [] + origin_ids: + - 98 +- id: 150181 + shortname: '~' + longname: Heat flux correction + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 150182 + shortname: '~' + longname: Observed sea surface temperature + units: deg C + description: null + access_ids: [] + origin_ids: + - 98 +- id: 150183 + shortname: '~' + longname: Observed heat flux + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 150255 + shortname: '~' + longname: Indicates a missing value + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151126 + shortname: mswpt300m + longname: Mean sea water potential temperature in the upper 300 m + units: K + description: Average sea water potential temperature in the upper 300 metres + access_ids: [] + origin_ids: + - -40 +- id: 151127 + shortname: mswt300m + longname: Mean sea water temperature in the upper 300 m + units: K + description: Average sea water temperature in the upper 300 metres. + access_ids: [] + origin_ids: + - 0 +- id: 151128 + shortname: '~' + longname: In situ Temperature + units: deg C + description: In situ Temperature + access_ids: [] + origin_ids: + - 98 +- id: 151129 + shortname: thetao + longname: Sea water potential temperature + units: deg C + description: null + access_ids: [] + origin_ids: + - -80 + - 98 +- id: 151130 + shortname: so + longname: Sea water practical salinity + units: psu + description: null + access_ids: + - dissemination + origin_ids: + - -80 + - 98 +- id: 151131 + shortname: ocu + longname: Eastward surface sea water velocity + units: m s**-1 + description:

This parameter is the eastward component of the sea water velocity. + It is the horizontal speed of water moving towards the east. A negative value + thus indicates sea water movement towards the west.

This parameter can + be combined with the northward sea water velocity to give the speed and direction + of the sea water.

+ access_ids: + - dissemination + origin_ids: + - -40 + - 98 +- id: 151132 + shortname: ocv + longname: Northward surface sea water velocity + units: m s**-1 + description:

This parameter is the northward component of the sea water velocity. + It is the horizontal speed of water moving towards the north. A negative value + thus indicates sea water movement towards the south.

This parameter can + be combined with the eastward sea water velocity to give the speed and direction + of the sea water.

+ access_ids: + - dissemination + origin_ids: + - -40 + - 98 +- id: 151133 + shortname: wo + longname: Upward sea water velocity + units: m s**-1 + description: Ocean current vertical component + access_ids: [] + origin_ids: + - -80 + - 98 +- id: 151134 + shortname: mst + longname: Modulus of strain rate tensor + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151135 + shortname: vvs + longname: Vertical viscosity + units: m**2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151136 + shortname: vdf + longname: Vertical diffusivity + units: m**2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151137 + shortname: dep + longname: Bottom level Depth + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151138 + shortname: sigmat + longname: Sea water sigma theta + units: kg m**-3 + description: null + access_ids: [] + origin_ids: + - -80 + - 98 +- id: 151139 + shortname: rn + longname: Richardson number + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151140 + shortname: uv + longname: UV product + units: m**2 s**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151141 + shortname: ut + longname: UT product + units: m s**-1 degC + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151142 + shortname: vt + longname: VT product + units: m s**-1 deg C + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151143 + shortname: uu + longname: UU product + units: m**2 s**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151144 + shortname: vv + longname: VV product + units: m**2 s**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151145 + shortname: zos + longname: Sea surface height + units: m + description: null + access_ids: + - dissemination + origin_ids: + - -40 + - 98 +- id: 151146 + shortname: sl_1 + longname: Sea level previous timestep + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151147 + shortname: stfbarot + longname: Ocean barotropic stream function + units: m**3 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151148 + shortname: mld + longname: Mixed layer depth + units: m + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 151149 + shortname: btp + longname: Bottom Pressure (equivalent height) + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151150 + shortname: sh + longname: Steric height + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151151 + shortname: crl + longname: Curl of Wind Stress + units: N m**-3 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151152 + shortname: '~' + longname: Divergence of wind stress + units: Nm**-3 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151153 + shortname: taueo + longname: Surface downward eastward stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - -80 + - 98 +- id: 151154 + shortname: tauno + longname: Surface downward northward stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - -80 + - 98 +- id: 151155 + shortname: tki + longname: Turbulent kinetic energy input + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151156 + shortname: nsf + longname: Net surface heat flux + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151157 + shortname: asr + longname: Absorbed solar radiation + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151158 + shortname: pme + longname: Precipitation - evaporation + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151159 + shortname: sst + longname: Specified sea surface temperature + units: deg C + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151160 + shortname: shf + longname: Specified surface heat flux + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151161 + shortname: dte + longname: Diagnosed sea surface temperature error + units: deg C + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151162 + shortname: hfc + longname: Heat flux correction + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151163 + shortname: t20d + longname: Depth of 20C isotherm + units: m + description: null + access_ids: + - dissemination + origin_ids: + - -40 + - 98 +- id: 151164 + shortname: tav300 + longname: Average potential temperature in the upper 300m + units: degrees C + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 151165 + shortname: uba1 + longname: Vertically integrated zonal velocity (previous time step) + units: m**2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151166 + shortname: vba1 + longname: Vertically Integrated meridional velocity (previous time step) + units: m**2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151167 + shortname: ztr + longname: Vertically integrated zonal volume transport + units: m**2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151168 + shortname: mtr + longname: Vertically integrated meridional volume transport + units: m**2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151169 + shortname: zht + longname: Vertically integrated zonal heat transport + units: J m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151170 + shortname: mht + longname: Vertically integrated meridional heat transport + units: J m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151171 + shortname: umax + longname: U velocity maximum + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151172 + shortname: dumax + longname: Depth of the velocity maximum + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151173 + shortname: smax + longname: Salinity maximum + units: psu + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151174 + shortname: dsmax + longname: Depth of salinity maximum + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151175 + shortname: sav300 + longname: Average sea water practical salinity in the upper 300m + units: psu + description: null + access_ids: + - dissemination + origin_ids: + - -40 + - 98 +- id: 151176 + shortname: ldp + longname: Layer Thickness at scalar points + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151177 + shortname: ldu + longname: Layer Thickness at vector points + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151178 + shortname: pti + longname: Potential temperature increment + units: deg C + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151179 + shortname: ptae + longname: Potential temperature analysis error + units: deg C + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151180 + shortname: bpt + longname: Background potential temperature + units: deg C + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151181 + shortname: apt + longname: Analysed potential temperature + units: deg C + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151182 + shortname: ptbe + longname: Potential temperature background error + units: deg C + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151183 + shortname: as + longname: Analysed salinity + units: psu + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151184 + shortname: sali + longname: Salinity increment + units: psu + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151185 + shortname: ebt + longname: Estimated Bias in Temperature + units: deg C + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151186 + shortname: ebs + longname: Estimated Bias in Salinity + units: psu + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151187 + shortname: uvi + longname: Zonal Velocity increment (from balance operator) + units: m s**-1 per time step + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151188 + shortname: vvi + longname: Meridional Velocity increment (from balance operator) + units: '~' + description: Meridional Velocity increment (from balance operator) + access_ids: [] + origin_ids: + - 98 +- id: 151189 + shortname: tos + longname: Sea surface temperature in degC + units: deg C + description: '' + access_ids: [] + origin_ids: [] +- id: 151190 + shortname: subi + longname: Salinity increment (from salinity data) + units: psu per time step + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151191 + shortname: sale + longname: Salinity analysis error + units: psu + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151192 + shortname: bsal + longname: Background Salinity + units: psu + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151193 + shortname: '~' + longname: Reserved + units: '~' + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 151194 + shortname: salbe + longname: Salinity background error + units: psu + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151199 + shortname: ebta + longname: Estimated temperature bias from assimilation + units: deg C + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151200 + shortname: ebsa + longname: Estimated salinity bias from assimilation + units: psu + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151201 + shortname: lti + longname: Temperature increment from relaxation term + units: deg C per time step + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151202 + shortname: lsi + longname: Salinity increment from relaxation term + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151203 + shortname: bzpga + longname: Bias in the zonal pressure gradient (applied) + units: Pa m**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151204 + shortname: bmpga + longname: Bias in the meridional pressure gradient (applied) + units: Pa m**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151205 + shortname: ebtl + longname: Estimated temperature bias from relaxation + units: deg C + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151206 + shortname: ebsl + longname: Estimated salinity bias from relaxation + units: psu + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151207 + shortname: fgbt + longname: First guess bias in temperature + units: deg C + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151208 + shortname: fgbs + longname: First guess bias in salinity + units: psu + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151209 + shortname: bpa + longname: Applied bias in pressure + units: Pa + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151210 + shortname: fgbp + longname: FG bias in pressure + units: Pa + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151211 + shortname: pta + longname: Bias in temperature(applied) + units: deg C + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151212 + shortname: psa + longname: Bias in salinity (applied) + units: psu + description: null + access_ids: [] + origin_ids: + - 98 +- id: 151213 + shortname: hfds + longname: Surface downward heat flux in sea water + units: W m**-2 + description: '' + access_ids: [] + origin_ids: [] +- id: 151214 + shortname: hc300m + longname: Ocean heat content 0-300m + units: J m**-2 + description: '' + access_ids: [] + origin_ids: [] +- id: 151219 + shortname: sos + longname: Sea surface practical salinity + units: psu + description: Sea surface practical salinity. + access_ids: [] + origin_ids: + - -40 +- id: 151222 + shortname: tauvo + longname: Surface downward y stress + units: N m**-2 + description: '' + access_ids: [] + origin_ids: [] +- id: 151223 + shortname: tauuo + longname: Surface downward x stress + units: N m**-2 + description: '' + access_ids: [] + origin_ids: [] +- id: 151224 + shortname: mlotdev + longname: Ocean mixed layer thickness defined by vertical tracer diffusivity threshold + units: m + description: '' + access_ids: [] + origin_ids: [] +- id: 151225 + shortname: mlotst010 + longname: Ocean mixed layer thickness defined by sigma theta 0.01 kg/m3 + units: m + description: '' + access_ids: [] + origin_ids: + - -40 +- id: 151228 + shortname: mlott02 + longname: Ocean mixed layer thickness defined by temperature 0.2C + units: m + description: '' + access_ids: [] + origin_ids: [] +- id: 151235 + shortname: sc300m + longname: Integrated salinity 0-300m + units: psu*m + description: '' + access_ids: [] + origin_ids: [] +- id: 151250 + shortname: voy + longname: Sea water y velocity + units: m s**-1 + description: '' + access_ids: [] + origin_ids: [] +- id: 151251 + shortname: uox + longname: Sea water x velocity + units: m s**-1 + description: '' + access_ids: [] + origin_ids: [] +- id: 151255 + shortname: '~' + longname: Indicates a missing value + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160049 + shortname: 10fgrea + longname: 10 metre wind gust during averaging time + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160135 + shortname: wrea + longname: vertical velocity (pressure) + units: Pa s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160137 + shortname: pwcrea + longname: Precipitable water content + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160140 + shortname: swl1rea + longname: Soil wetness level 1 + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160141 + shortname: sdrea + longname: Snow depth + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160142 + shortname: lsprea + longname: Large-scale precipitation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160143 + shortname: cprea + longname: Convective precipitation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160144 + shortname: sfrea + longname: Snowfall + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160156 + shortname: ghrea + longname: Height + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160157 + shortname: rrea + longname: Relative humidity + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160171 + shortname: swl2rea + longname: Soil wetness level 2 + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160180 + shortname: ewssrea + longname: East-West surface stress + units: N m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160181 + shortname: nsssrea + longname: North-South surface stress + units: N m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160182 + shortname: erea + longname: Evaporation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160184 + shortname: swl3rea + longname: Soil wetness level 3 + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160198 + shortname: srcon + longname: Skin reservoir content + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 160199 + shortname: vegrea + longname: Percentage of vegetation + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 + - 34 + - 98 +- id: 160205 + shortname: rorea + longname: Runoff + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160207 + shortname: tzrea + longname: Covariance of temperature and geopotential + units: K m**2 s**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160209 + shortname: qzrea + longname: Covariance of specific humidity and geopotential + units: m**2 s**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160210 + shortname: qtrea + longname: Covariance of specific humidity and temperature + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160212 + shortname: uzrea + longname: Covariance of U component and geopotential + units: m**3 s**-3 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160213 + shortname: utrea + longname: Covariance of U component and temperature + units: K m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160214 + shortname: uqrea + longname: Covariance of U component and specific humidity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160216 + shortname: vzrea + longname: Covariance of V component and geopotential + units: m**3 s**-3 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160217 + shortname: vtrea + longname: Covariance of V component and temperature + units: K m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160218 + shortname: vqrea + longname: Covariance of V component and specific humidity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160219 + shortname: vurea + longname: Covariance of V component and U component + units: m**2 s**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160221 + shortname: wzrea + longname: Covariance of W component and geopotential + units: Pa m**2 s**-3 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160222 + shortname: wtrea + longname: Covariance of W component and temperature + units: K Pa s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160223 + shortname: wqrea + longname: Covariance of W component and specific humidity + units: Pa s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160224 + shortname: wurea + longname: Covariance of W component and U component + units: Pa m s**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160225 + shortname: wvrea + longname: Covariance of W component and V component + units: Pa m s**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160231 + shortname: ishfrea + longname: Instantaneous surface heat flux + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160239 + shortname: csfrea + longname: Convective snowfall + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160240 + shortname: lsfrea + longname: Large scale snowfall + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160241 + shortname: clwcerrea + longname: Cloud liquid water content + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160242 + shortname: ccrea + longname: Cloud cover + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160243 + shortname: falrea + longname: Forecast albedo + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160246 + shortname: 10wsrea + longname: 10 metre wind speed + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160247 + shortname: moflrea + longname: Momentum flux + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160249 + shortname: '~' + longname: Gravity wave dissipation flux + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 160254 + shortname: hsdrea + longname: Heaviside beta function + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162031 + shortname: viwgd + longname: Total column vertically-integrated divergence of water geopotential flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 162032 + shortname: viee + longname: Total column vertically-integrated eastward enthalpy flux + units: W m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 162033 + shortname: vien + longname: Total column vertically-integrated northward enthalpy flux + units: W m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 162034 + shortname: vied + longname: Total column vertically-integrated divergence of enthalpy flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 162035 + shortname: viwed + longname: Total column vertically-integrated divergence of water enthalpy flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 162036 + shortname: viwvd + longname: Total column vertically-integrated divergence of water vapour flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 162037 + shortname: viclwd + longname: Total column vertically-integrated divergence of cloud liquid water flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 162038 + shortname: viciwd + longname: Total column vertically-integrated divergence of cloud ice water flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 162039 + shortname: vird + longname: Total column vertically-integrated divergence of rain flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 162040 + shortname: visd + longname: Total column vertically-integrated divergence of snow flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 162041 + shortname: viclwe + longname: Total column vertically-integrated eastward cloud liquid water flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 162042 + shortname: viclwn + longname: Total column vertically-integrated northward cloud liquid water flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 162043 + shortname: viciwe + longname: Total column vertically-integrated eastward cloud ice water flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 162044 + shortname: viciwn + longname: Total column vertically-integrated northward cloud ice water flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 162045 + shortname: wvf + longname: Water vapour flux + units: kg m**-1 s**-1 + description: Water Vapour Flux represents the magnitude of the combined vertical + integrals of the eastward and northward water vapour flux components. The average + value of each component over a specified forecast period (e.g. 24 hours) is computed + using the instantaneous values from each output forecast step; these are then + combined to make the total wvf, which is then used to compute the model climate + and the Extreme Forecast Index (EFI) for Water Vapour Flux (wvfi) + access_ids: [] + origin_ids: + - 98 +- id: 162046 + shortname: vire + longname: Total column vertically-integrated eastward rain flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 162047 + shortname: virn + longname: Total column vertically-integrated northward rain flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 162048 + shortname: vise + longname: Total column vertically-integrated eastward snow flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 162049 + shortname: visn + longname: Total column vertically-integrated northward snow flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 162050 + shortname: vions + longname: Total column vertically-integrated net source of ozone + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 162051 + shortname: '~' + longname: Surface geopotential + units: m**2 s**-2 + description: null + access_ids: [] + origin_ids: + - -80 + - 98 +- id: 162053 + shortname: vima + longname: Total column vertically-integrated mass of atmosphere + units: kg m**-2 + description: This parameter is the total mass of air for a column extending from + the surface of the Earth to the top of the atmosphere, per square metre.

This + parameter is calculated by dividing surface pressure by the Earth's gravitational + acceleration, g (=9.80665 m s-2), and has units of kilograms per square + metre.

This parameter can be used to study the atmospheric mass budget. + See further information. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 162054 + shortname: vit + longname: Total column vertically-integrated temperature + units: K kg m**-2 + description:

This parameter is the mass-weighted vertical integral of temperature + for a column of air extending from the surface of the Earth to the top of the + atmosphere.

This parameter can be used to study the atmospheric energy + budget. + See further documentation.

+ access_ids: [] + origin_ids: + - -80 + - 98 +- id: 162055 + shortname: viwv + longname: Total column vertically-integrated water vapour + units: kg m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 162056 + shortname: vilw + longname: Total column vertically-integrated cloud liquid water + units: kg m**-2 + description: '' + access_ids: [] + origin_ids: + - -80 + - 98 +- id: 162057 + shortname: viiw + longname: Total column vertically-integrated cloud frozen water + units: kg m**-2 + description: '' + access_ids: [] + origin_ids: + - -80 + - 98 +- id: 162058 + shortname: vioz + longname: Total column vertically-integrated ozone + units: kg m**-2 + description: '' + access_ids: [] + origin_ids: + - -80 + - 98 +- id: 162059 + shortname: vike + longname: Total column vertically-integrated kinetic energy + units: J m**-2 + description: '' + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 162060 + shortname: vithe + longname: Total column vertically-integrated enthalpy + units: J m**-2 + description: This parameter is the mass-weighted vertical integral of thermal energy + for a column of air extending from the surface of the Earth to the top of the + atmosphere. Thermal energy is calculated from the product of temperature and the + specific heat capacity of air at constant pressure.

The thermal energy + is equal to enthalpy, which is the sum of the internal energy and the energy associated + with the pressure of the air on its surroundings.

Internal energy is + the energy contained within a system i.e., the microscopic energy of the air molecules, + rather than the macroscopic energy associated with, for example, wind, or gravitational + potential energy. The energy associated with the pressure of the air on its surroundings + is the energy required to make room for the system by displacing its surroundings + and is calculated from the product of pressure and volume.

This parameter + can be used to study the atmospheric energy budget.

Total atmospheric + energy is made up of internal, potential, kinetic and latent energy. + See further documentation. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 162061 + shortname: vipie + longname: Total column vertically-integrated potential + internal energy + units: J m**-2 + description: This parameter is the mass weighted vertical integral of potential + and internal energy for a column of air extending from the surface of the Earth + to the top of the atmosphere.

The potential energy of an air parcel + is the amount of work that would have to be done, against the force of gravity, + to lift the air to that location from mean sea level. Internal energy is the energy + contained within a system i.e., the microscopic energy of the air molecules, rather + than the macroscopic energy associated with, for example, wind, or gravitational + potential energy.

This parameter can be used to study the atmospheric + energy budget.

Total atmospheric energy is made up of internal, potential, + kinetic and latent energy. + See further documentation. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 162062 + shortname: vipile + longname: Total column vertically-integrated potential+internal+latent energy + units: J m**-2 + description: This parameter is the mass weighted vertical integral of potential, + internal and latent energy for a column of air extending from the surface of the + Earth to the top of the atmosphere.

The potential energy of an air parcel + is the amount of work that would have to be done, against the force of gravity, + to lift the air to that location from mean sea level. Internal energy is the energy + contained within a system i.e., the microscopic energy of the air molecules, rather + than the macroscopic energy associated with, for example, wind, or gravitational + potential energy.

The latent energy refers to the energy associated with + the water vapour in the atmosphere and is equal to the energy required to convert + liquid water into water vapour.

This parameter can be used to study the + atmospheric energy budget.

Total atmospheric energy is made up of internal, + potential, kinetic and latent energy. + See further documentation. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 162063 + shortname: vitoe + longname: Total column vertically-integrated total energy + units: J m**-2 + description: '' + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 162064 + shortname: viec + longname: Total column vertically-integrated energy conversion + units: W m**-2 + description: This parameter is one contribution to the amount of energy being converted + between kinetic energy, and internal plus potential energy, for a column of air + extending from the surface of the Earth to the top of the atmosphere. Negative + values indicate a conversion to kinetic energy from potential plus internal energy.

This + parameter can be used to study the atmospheric energy budget. The circulation + of the atmosphere can also be considered in terms of energy conversions.

+ See further documentation. + access_ids: [] + origin_ids: + - -80 + - 98 +- id: 162065 + shortname: vimae + longname: Total column vertically-integrated eastward mass flux + units: kg m**-1 s**-1 + description:

This parameter is the horizontal rate of flow of mass, in the eastward + direction, per metre across the flow, for a column of air extending from the surface + of the Earth to the top of the atmosphere. Positive values indicate a flux from + west to east.

This parameter can be used to study the atmospheric mass + and energy budgets. + See further information.

+ access_ids: [] + origin_ids: + - -80 + - 0 + - 98 +- id: 162066 + shortname: viman + longname: Total column vertically-integrated northward mass flux + units: kg m**-1 s**-1 + description:

This parameter is the horizontal rate of flow of mass, in the northward + direction, per metre across the flow, for a column of air extending from the surface + of the Earth to the top of the atmosphere. Positive values indicate a flux from + south to north.

This parameter can be used to study the atmospheric mass + and energy budgets. + See further information.

+ access_ids: [] + origin_ids: + - -80 + - 0 + - 98 +- id: 162067 + shortname: vikee + longname: Total column vertically-integrated eastward kinetic energy flux + units: W m**-1 + description:

This parameter is the horizontal rate of flow of kinetic energy, + in the eastward direction, per metre across the flow, for a column of air extending + from the surface of the Earth to the top of the atmosphere. Positive values indicate + a flux from west to east.

Atmospheric kinetic energy is the energy of the + atmosphere due to its motion. Only horizontal motion is considered in the calculation + of this parameter.

This parameter can be used to study the atmospheric + energy budget.

See + further documentation.

+ access_ids: [] + origin_ids: + - -80 + - 0 + - 98 +- id: 162068 + shortname: viken + longname: Total column vertically-integrated northward kinetic energy flux + units: W m**-1 + description:

This parameter is the horizontal rate of flow of kinetic energy, + in the northward direction, per metre across the flow, for a column of air extending + from the surface of the Earth to the top of the atmosphere. Positive values indicate + a flux from south to north.

Atmospheric kinetic energy is the energy of + the atmosphere due to its motion. Only horizontal motion is considered in the + calculation of this parameter.

This parameter can be used to study the + atmospheric energy budget.

See + further documentation.

+ access_ids: [] + origin_ids: + - -80 + - 0 + - 98 +- id: 162069 + shortname: vithee + longname: Total column vertically-integrated eastward heat flux + units: W m**-1 + description: This parameter is the horizontal rate of flow of heat in the eastward + direction, per meter across the flow, for a column of air extending from the surface + of the Earth to the top of the atmosphere. Positive values indicate a flux from + west to east.

Heat (or thermal energy) is equal to enthalpy, which is + the sum of the internal energy and the energy associated with the pressure of + the air on its surroundings.

Internal energy is the energy contained + within a system i.e., the microscopic energy of the air molecules, rather than + the macroscopic energy associated with, for example, wind, or gravitational potential + energy. The energy associated with the pressure of the air on its surroundings + is the energy required to make room for the system by displacing its surroundings + and is calculated from the product of pressure and volume.

This parameter + can be used to study the atmospheric energy budget.

+ See further documentation. + access_ids: [] + origin_ids: + - 0 + - 34 + - 98 +- id: 162070 + shortname: vithen + longname: Total column vertically-integrated northward heat flux + units: W m**-1 + description: This parameter is the horizontal rate of flow of heat in the northward + direction, per meter across the flow, for a column of air extending from the surface + of the Earth to the top of the atmosphere. Positive values indicate a flux from + south to north.

Heat (or thermal energy) is equal to enthalpy, which + is the sum of the internal energy and the energy associated with the pressure + of the air on its surroundings.

Internal energy is the energy contained + within a system i.e., the microscopic energy of the air molecules, rather than + the macroscopic energy associated with, for example, wind, or gravitational potential + energy. The energy associated with the pressure of the air on its surroundings + is the energy required to make room for the system by displacing its surroundings + and is calculated from the product of pressure and volume.

This parameter + can be used to study the atmospheric energy budget.

+ See further documentation. + access_ids: [] + origin_ids: + - 0 + - 34 + - 98 +- id: 162071 + shortname: viwve + longname: Total column vertically-integrated eastward water vapour flux + units: kg m**-1 s**-1 + description: This parameter is the horizontal rate of flow of water vapour, in the + eastward direction, per metre across the flow, for a column of air extending from + the surface of the Earth to the top of the atmosphere. Positive values indicate + a flux from west to east. + access_ids: + - dissemination + origin_ids: + - 0 + - 34 + - 98 +- id: 162072 + shortname: viwvn + longname: Total column vertically-integrated northward water vapour flux + units: kg m**-1 s**-1 + description: This parameter is the horizontal rate of flow of water vapour, in the + northward direction, per metre across the flow, for a column of air extending + from the surface of the Earth to the top of the atmosphere. Positive values indicate + a flux from south to north. + access_ids: + - dissemination + origin_ids: + - 0 + - 34 + - 98 +- id: 162073 + shortname: vige + longname: Total column vertically-integrated eastward geopotential flux + units: W m**-1 + description: null + access_ids: [] + origin_ids: + - -80 + - 0 + - 98 +- id: 162074 + shortname: vign + longname: Total column vertically-integrated northward geopotential flux + units: W m**-1 + description:

This parameter is the horizontal rate of flow of geopotential in + the northward direction, per metre across the flow, for a column of air extending + from the surface of the Earth to the top of the atmosphere. Positive values indicate + a flux from south to north.

Geopotential is the gravitational potential + energy of a unit mass, at a particular location, relative to mean sea level. It + is also the amount of work that would have to be done, against the force of gravity, + to lift a unit mass to that location from mean sea level.

This parameter + can be used to study the atmospheric energy budget. + See further information.

+ access_ids: [] + origin_ids: + - -80 + - 0 + - 98 +- id: 162075 + shortname: vitee + longname: Total column vertically-integrated eastward total energy flux + units: W m**-1 + description:

This parameter is the horizontal rate of flow of total energy in + the eastward direction, per metre across the flow, for a column of air extending + from the surface of the Earth to the top of the atmosphere. Positive values indicate + a flux from west to east.

Total atmospheric energy is made up of internal, + potential, kinetic and latent energy.

This parameter can be used to study + the atmospheric energy budget.

See + further documentation.

+ access_ids: [] + origin_ids: + - -80 + - 0 + - 98 +- id: 162076 + shortname: viten + longname: Total column vertically-integrated northward total energy flux + units: W m**-1 + description:

This parameter is the horizontal rate of flow of total energy in + the northward direction, per metre across the flow, for a column of air extending + from the surface of the Earth to the top of the atmosphere. Positive values indicate + a flux from south to north.

Total atmospheric energy is made up of internal, + potential, kinetic and latent energy.

This parameter can be used to study + the atmospheric energy budget.

See + further documentation.

+ access_ids: [] + origin_ids: + - -80 + - 0 + - 98 +- id: 162077 + shortname: vioze + longname: Total column vertically-integrated eastward ozone flux + units: kg m**-1 s**-1 + description:

This parameter is the horizontal rate of flow of ozone in the eastward + direction, per metre across the flow, for a column of air extending from the surface + of the Earth to the top of the atmosphere. Positive values denote a flux from + west to east.

In the ECMWF Integrated Forecasting System (IFS), there is + a simplified representation of ozone chemistry (including a representation of + the chemistry which has caused the ozone hole). Ozone is also transported around + in the atmosphere through the motion of air. See + further documentation.

+ access_ids: [] + origin_ids: + - -80 + - 0 + - 98 +- id: 162078 + shortname: viozn + longname: Total column vertically-integrated northward ozone flux + units: kg m**-1 s**-1 + description:

This parameter is the horizontal rate of flow of ozone in the northward + direction, per metre across the flow, for a column of air extending from the surface + of the Earth to the top of the atmosphere. Positive values denote a flux from + south to north.

In the ECMWF Integrated Forecasting System (IFS), there + is a simplified representation of ozone chemistry (including a representation + of the chemistry which has caused the ozone hole). Ozone is also transported around + in the atmosphere through the motion of air.See + further documentation.

+ access_ids: [] + origin_ids: + - -80 + - 0 + - 98 +- id: 162079 + shortname: vilwd + longname: Total column vertically-integrated divergence of cloud liquid water flux + units: kg m**-2 s**-1 + description:

The vertical integral of the cloud liquid water flux is the horizontal + rate of flow of cloud liquid water, per metre across the flow, for a column of + air extending from the surface of the Earth to the top of the atmosphere. Its + horizontal divergence is the rate of cloud liquid water spreading outward from + a point, per square metre. This parameter is positive for cloud liquid water that + is spreading out, or diverging, and negative for the opposite, for cloud liquid + water that is concentrating, or converging (convergence).

This parameter + thus indicates whether atmospheric motions act to decrease (for divergence) or + increase (for convergence) the vertical integral of cloud liquid water.

+ access_ids: [] + origin_ids: + - 98 +- id: 162080 + shortname: viiwd + longname: Total column vertically-integrated divergence of cloud frozen water flux + units: kg m**-2 s**-1 + description: The vertical integral of the cloud frozen water flux is the horizontal + rate of flow of cloud frozen water, per metre across the flow, for a column of + air extending from the surface of the Earth to the top of the atmosphere. Its + horizontal divergence is the rate of cloud frozen water spreading outward from + a point, per square metre. This parameter is positive for cloud frozen water that + is spreading out, or diverging, and negative for the opposite, for cloud frozen + water that is concentrating, or converging (convergence).

This parameter + thus indicates whether atmospheric motions act to decrease (for divergence) or + increase (for convergence) the vertical integral of cloud frozen water.

Note + that 'cloud frozen water' is the same as 'cloud ice water'. + access_ids: [] + origin_ids: + - 98 +- id: 162081 + shortname: vimad + longname: Total column vertically-integrated divergence of mass flux + units: kg m**-2 s**-1 + description:

The vertical integral of the mass flux is the horizontal rate of + flow of mass, per metre across the flow, for a column of air extending from the + surface of the Earth to the top of the atmosphere. Its horizontal divergence is + the rate of mass spreading outward from a point, per square metre.

This + parameter is positive for mass that is spreading out, or diverging, and negative + for the opposite, for mass that is concentrating, or converging (convergence).

This + parameter thus indicates whether atmospheric motions act to decrease (for divergence) + or increase (for convergence) the vertical integral of mass.

This parameter + can be used to study the atmospheric mass and energy budgets. + See further information.

+ access_ids: [] + origin_ids: + - -80 + - 0 + - 98 +- id: 162082 + shortname: viked + longname: Total column vertically-integrated divergence of kinetic energy flux + units: W m**-2 + description:

The vertical integral of the kinetic energy flux is the horizontal + rate of flow of kinetic energy, per metre across the flow, for a column of air + extending from the surface of the Earth to the top of the atmosphere. Its horizontal + divergence is the rate of kinetic energy spreading outward from a point, per square + metre. This parameter is positive for kinetic energy that is spreading out, or + diverging, and negative for the opposite, for kinetic energy that is concentrating, + or converging (convergence).

This parameter thus indicates whether atmospheric + motions act to decrease (for divergence) or increase (for convergence) the vertical + integral of kinetic energy.

Atmospheric kinetic energy is the energy of + the atmosphere due to its motion. Only horizontal motion is considered in the + calculation of this parameter.

This parameter can be used to study the + atmospheric energy budget.

See + further documentation.

+ access_ids: [] + origin_ids: + - -80 + - 0 + - 98 +- id: 162083 + shortname: vithed + longname: Total column vertically-integrated divergence of thermal energy flux + units: W m**-2 + description: The vertical integral of the thermal energy flux is the horizontal + rate of flow of thermal energy, per metre across the flow, for a column of air + extending from the surface of the Earth to the top of the atmosphere. Its horizontal + divergence is the rate of thermal energy spreading outward from a point, per square + metre. This parameter is positive for thermal energy that is spreading out, or + diverging, and negative for the opposite, for thermal energy that is concentrating, + or converging (convergence).

This parameter thus indicates whether atmospheric + motions act to decrease (for divergence) or increase (for convergence) the vertical + integral of thermal energy.

The thermal energy is equal to enthalpy, + which is the sum of the internal energy and the energy associated with the pressure + of the air on its surroundings.

Internal energy is the energy contained + within a system i.e., the microscopic energy of the air molecules, rather than + the macroscopic energy associated with, for example, wind, or gravitational potential + energy. The energy associated with the pressure of the air on its surroundings + is the energy required to make room for the system by displacing its surroundings + and is calculated from the product of pressure and volume.

This parameter + can be used to study the flow of thermal energy through the climate system and + to investigate the atmospheric + energy budget. + access_ids: [] + origin_ids: + - -80 + - 98 +- id: 162084 + shortname: vimdf + longname: Total column vertically-integrated moisture divergence flux + units: kg m**-2 s**-1 + description:

The vertical integral of the moisture flux is the horizontal rate + of flow of moisture, per metre across the flow, for a column of air extending + from the surface of the Earth to the top of the atmosphere. Its horizontal divergence + is the rate of moisture spreading outward from a point, per square metre.

This + parameter is positive for moisture that is spreading out, or diverging, and negative + for the opposite, for moisture that is concentrating, or converging (convergence).

This + parameter thus indicates whether atmospheric motions act to decrease (for divergence) + or increase (for convergence) the vertical integral of moisture.

+ access_ids: [] + origin_ids: + - 0 + - 98 +- id: 162085 + shortname: vigd + longname: Total column vertically-integrated divergence of geopotential flux + units: W m**-2 + description:

The vertical integral of the geopotential flux is the horizontal + rate of flow of geopotential, per metre across the flow, for a column of air extending + from the surface of the Earth to the top of the atmosphere. Its horizontal divergence + is the rate of geopotential spreading outward from a point, per square metre.

This + parameter is positive for geopotential that is spreading out, or diverging, and + negative for the opposite, for geopotential that is concentrating, or converging + (convergence).

This parameter thus indicates whether atmospheric motions + act to decrease (for divergence) or increase (for convergence) the vertical integral + of geopotential.

Geopotential is the gravitational potential energy of + a unit mass, at a particular location, relative to mean sea level. It is also + the amount of work that would have to be done, against the force of gravity, to + lift a unit mass to that location from mean sea level.

This parameter can + be used to study the atmospheric energy budget. See + further information.

+ access_ids: [] + origin_ids: + - -80 + - 0 + - 98 +- id: 162086 + shortname: vited + longname: Total column vertically-integrated divergence of total energy flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - -80 + - 0 + - 98 +- id: 162087 + shortname: viozd + longname: Total column vertically-integrated divergence of ozone flux + units: kg m**-2 s**-1 + description:

The vertical integral of the ozone flux is the horizontal rate of + flow of ozone, per metre across the flow, for a column of air extending from the + surface of the Earth to the top of the atmosphere. Its horizontal divergence is + the rate of ozone spreading outward from a point, per square metre. This parameter + is positive for ozone that is spreading out, or diverging, and negative for the + opposite, for ozone that is concentrating, or converging (convergence).

This + parameter thus indicates whether atmospheric motions act to decrease (for divergence) + or increase (for convergence) the vertical integral of ozone.

In the ECMWF + Integrated Forecasting System (IFS), there is a simplified representation of ozone + chemistry (including a representation of the chemistry which has caused the ozone + hole). Ozone is also transported around in the atmosphere through the motion of + air.See + further documentation.

+ access_ids: [] + origin_ids: + - -80 + - 0 + - 98 +- id: 162088 + shortname: vilwe + longname: Total column vertically-integrated eastward cloud liquid water flux + units: kg m**-1 s**-1 + description:

This parameter is the horizontal rate of flow of cloud liquid water, + in the eastward direction, per metre across the flow, for a column of air extending + from the surface of the Earth to the top of the atmosphere. Positive values indicate + a flux from west to east.

+ access_ids: [] + origin_ids: + - 98 +- id: 162089 + shortname: vilwn + longname: Total column vertically-integrated northward cloud liquid water flux + units: kg m**-1 s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 162090 + shortname: viiwe + longname: Total column vertically-integrated eastward cloud frozen water flux + units: kg m**-1 s**-1 + description: This parameter is the horizontal rate of flow of cloud frozen water, + in the eastward direction, per metre across the flow, for a column of air extending + from the surface of the Earth to the top of the atmosphere. Positive values indicate + a flux from west to east.

Note that 'cloud frozen water' is the same + as 'cloud ice water'. + access_ids: [] + origin_ids: + - 98 +- id: 162091 + shortname: viiwn + longname: 'Total column vertically-integrated northward cloud frozen water flux ' + units: kg m**-1 s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 162092 + shortname: vimat + longname: Total column vertically-integrated mass tendency + units: kg m**-2 s**-1 + description: This parameter is the rate of change of the mass of a column of air + extending from the Earth's surface to the top of the atmosphere. An increasing + mass of the column indicates rising surface pressure. In contrast, a decrease + indicates a falling surface pressure trend.

The mass of the column is + calculated by dividing pressure at the Earth's surface by the gravitational acceleration, + g (=9.80665 m s-2).

This parameter can be used to study the + atmospheric mass and energy budgets. + See further information. + access_ids: [] + origin_ids: + - 98 +- id: 162093 + shortname: viwe + longname: Total column vertically-integrated water enthalpy + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 162100 + shortname: srta + longname: Time-integrated temperature tendency due to short-wave radiation + units: K + description: '' + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 162101 + shortname: trta + longname: Time-integrated temperature tendency due to long-wave radiation + units: K + description: '' + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 162102 + shortname: srtca + longname: Time-integrated temperature tendency due to short wave radiation, clear + sky + units: K + description: '' + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 162103 + shortname: trtca + longname: Time-integrated temperature tendency due to long-wave radiation, clear + sky + units: K + description: '' + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 162104 + shortname: umfa + longname: Time-integrated updraught mass flux + units: kg m**-2 + description: '' + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 162105 + shortname: dmfa + longname: Time-integrated downdraught mass flux + units: kg m**-2 + description: '' + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 162106 + shortname: udra + longname: Time-integrated updraught detrainment rate + units: kg m**-3 + description: '' + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 162107 + shortname: ddra + longname: Time-integrated downdraught detrainment rate + units: kg m**-3 + description: '' + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 162108 + shortname: tpfa + longname: Time-integrated total precipitation flux + units: kg m**-2 + description: '' + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 162109 + shortname: tdcha + longname: Time-integrated turbulent diffusion coefficient for heat + units: m**2 + description: '' + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 162110 + shortname: ttpha + longname: Time-integrated temperature tendency due to parametrisations + units: K + description: '' + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 162111 + shortname: qtpha + longname: Time-integrated specific humidity tendency due to parametrisations + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 162112 + shortname: utpha + longname: Time-integrated eastward wind tendency due to parametrisations + units: m s**-1 + description: '' + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 162113 + shortname: vtpha + longname: Time-integrated northward wind tendency due to parametrisations + units: m s**-1 + description: '' + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 162114 + shortname: utendd + longname: U-tendency from dynamics + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162115 + shortname: vtendd + longname: V-tendency from dynamics + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162116 + shortname: ttendd + longname: T-tendency from dynamics + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162117 + shortname: qtendd + longname: q-tendency from dynamics + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162118 + shortname: ttendr + longname: T-tendency from radiation + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162119 + shortname: utendts + longname: U-tendency from turbulent diffusion + subgrid orography + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162120 + shortname: vtendts + longname: V-tendency from turbulent diffusion + subgrid orography + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162121 + shortname: ttendts + longname: T-tendency from turbulent diffusion + subgrid orography + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162122 + shortname: qtendt + longname: q-tendency from turbulent diffusion + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162123 + shortname: utends + longname: U-tendency from subgrid orography + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162124 + shortname: vtends + longname: V-tendency from subgrid orography + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162125 + shortname: ttends + longname: T-tendency from subgrid orography + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162126 + shortname: utendcds + longname: U-tendency from convection (deep+shallow) + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162127 + shortname: vtendcds + longname: V-tendency from convection (deep+shallow) + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162128 + shortname: ttendcds + longname: T-tendency from convection (deep+shallow) + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162129 + shortname: qtendcds + longname: q-tendency from convection (deep+shallow) + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162130 + shortname: lpc + longname: Liquid Precipitation flux from convection + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162131 + shortname: ipc + longname: Ice Precipitation flux from convection + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162132 + shortname: ttendcs + longname: T-tendency from cloud scheme + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162133 + shortname: qtendcs + longname: q-tendency from cloud scheme + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162134 + shortname: qltendcs + longname: ql-tendency from cloud scheme + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162135 + shortname: qitendcs + longname: qi-tendency from cloud scheme + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162136 + shortname: lpcs + longname: Liquid Precip flux from cloud scheme (stratiform) + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162137 + shortname: ipcs + longname: Ice Precip flux from cloud scheme (stratiform) + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162138 + shortname: utendcs + longname: U-tendency from shallow convection + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162139 + shortname: vtendcs + longname: V-tendency from shallow convection + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162140 + shortname: ttendsc + longname: T-tendency from shallow convection + units: K + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 162141 + shortname: qtendsc + longname: q-tendency from shallow convection + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 162150 + shortname: ttswr + longname: Temperature tendency due to short-wave radiation + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 162151 + shortname: ttlwr + longname: Temperature tendency due to long-wave radiation + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 162152 + shortname: ttswrcs + longname: Temperature tendency due to short-wave radiation, clear sky + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 162153 + shortname: ttlwrcs + longname: Temperature tendency due to long-wave radiation, clear sky + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 162154 + shortname: umf + longname: Updraught mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 162155 + shortname: dmf + longname: Downdraught mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 162156 + shortname: udr + longname: Updraught detrainment rate + units: kg m**-3 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 162157 + shortname: ddr + longname: Downdraught detrainment rate + units: kg m**-3 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 162158 + shortname: tpf + longname: Total precipitation flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 162159 + shortname: tdch + longname: Turbulent diffusion coefficient for heat + units: m**2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 162160 + shortname: ttpm + longname: Temperature tendency due to parametrisations + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 162161 + shortname: qtpm + longname: Specific humidity tendency due to parametrisations + units: kg kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 162162 + shortname: utpm + longname: Eastward wind tendency due to parametrisations + units: m s**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 162163 + shortname: vtpm + longname: Northward wind tendency due to parametrisations + units: m s**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 162206 + shortname: '~' + longname: Variance of geopotential + units: m**4 s**-4 + description: null + access_ids: [] + origin_ids: + - -80 + - 98 +- id: 162207 + shortname: '~' + longname: Covariance of geopotential/temperature + units: m**2 K s**-2 + description: null + access_ids: [] + origin_ids: + - -80 + - 98 +- id: 162208 + shortname: '~' + longname: Variance of temperature + units: K**2 + description: null + access_ids: [] + origin_ids: + - -80 + - 98 +- id: 162209 + shortname: '~' + longname: Covariance of geopotential/specific humidity + units: m**2 s**-2 + description: null + access_ids: [] + origin_ids: + - -80 + - 98 +- id: 162210 + shortname: '~' + longname: Covariance of temperature/specific humidity + units: K + description: null + access_ids: [] + origin_ids: + - -80 + - 98 +- id: 162211 + shortname: '~' + longname: Variance of specific humidity + units: '~' + description: null + access_ids: [] + origin_ids: + - -80 + - 98 +- id: 162212 + shortname: '~' + longname: Covariance of u component/geopotential + units: m**3 s**-3 + description: null + access_ids: [] + origin_ids: + - -80 + - 98 +- id: 162213 + shortname: '~' + longname: Covariance of u component/temperature + units: m s**-1 K + description: null + access_ids: [] + origin_ids: + - -80 + - 98 +- id: 162214 + shortname: '~' + longname: Covariance of u component/specific humidity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - -80 + - 98 +- id: 162215 + shortname: '~' + longname: Variance of u component + units: m**2 s**-2 + description: null + access_ids: [] + origin_ids: + - -80 + - 98 +- id: 162216 + shortname: '~' + longname: Covariance of v component/geopotential + units: m**3 s**-3 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162217 + shortname: '~' + longname: Covariance of v component/temperature + units: m s**-1 K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162218 + shortname: '~' + longname: Covariance of v component/specific humidity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162219 + shortname: '~' + longname: Covariance of v component/u component + units: m**2 s**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162220 + shortname: '~' + longname: Variance of v component + units: m**2 s**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162221 + shortname: '~' + longname: Covariance of omega/geopotential + units: m**2 Pa s**-3 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162222 + shortname: '~' + longname: Covariance of omega/temperature + units: Pa s**-1 K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162223 + shortname: '~' + longname: Covariance of omega/specific humidity + units: Pa s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162224 + shortname: '~' + longname: Covariance of omega/u component + units: m Pa s**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162225 + shortname: '~' + longname: Covariance of omega/v component + units: m Pa s**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162226 + shortname: '~' + longname: Variance of omega + units: Pa**2 s**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162227 + shortname: '~' + longname: Variance of surface pressure + units: Pa**2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162229 + shortname: '~' + longname: Variance of relative humidity + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162230 + shortname: '~' + longname: Covariance of u component/ozone + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162231 + shortname: '~' + longname: Covariance of v component/ozone + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162232 + shortname: '~' + longname: Covariance of omega/ozone + units: Pa s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162233 + shortname: '~' + longname: Variance of ozone + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 98 +- id: 162255 + shortname: '~' + longname: Indicates a missing value + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 170001 + shortname: spi03 + longname: Standardised precipitation index valid in the last 3 months + units: dimensionless + description: The standardized precipitation index is calculated for the seasonal + forecast system. The index is calculated for each ensemble member of the seasonal + forecast. + access_ids: [] + origin_ids: + - 98 +- id: 170002 + shortname: spi06 + longname: Standardised precipitation index valid in the last 6 months + units: dimensionless + description: The standardized precipitation index is calculated for the seasonal + forecast system. The index is calculated for each ensemble member of the seasonal + forecast. + access_ids: [] + origin_ids: + - 98 +- id: 170003 + shortname: spi12 + longname: Standardised precipitation index valid in the last 12 months + units: dimensionless + description: The standardized precipitation index is calculated for the seasonal + forecast system. The index is calculated for each ensemble member of the seasonal + forecast. + access_ids: [] + origin_ids: + - 98 +- id: 170149 + shortname: tsw + longname: Total soil moisture + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 170171 + shortname: swl2 + longname: Soil wetness level 2 + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 170179 + shortname: ttr + longname: Top net thermal radiation + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 171001 + shortname: strfa + longname: Stream function anomaly + units: m**2 s**-1 + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the stream function is higher/lower than + the long-term average. The long-term average is typically derived from several + decades of model data and will vary with location and time of year (see further + information).

The horizontal wind field can be separated into divergent + flow (i.e., flow that is purely divergent, with no swirl or rotation) and rotational + flow (i.e., flow that is purely rotational and has no divergence).

The + rotational (non-divergent) flow follows lines of constant stream function value + (streamlines) and the speed of flow is proportional to the stream function gradient.

So + streamlines show patterns of horizontal, rotational, air flow and the paths that + particles would follow if the flow did not change with time. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171002 + shortname: vpota + longname: Velocity potential anomaly + units: m**2 s**-1 + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the velocity potential is higher/lower + than the long-term average. The long-term average is typically derived from several + decades of model data and will vary with location and time of year (see further + information).

The horizontal wind field can be separated into divergent + flow (i.e., flow that is purely divergent, with no swirl or rotation) and rotational + flow (i.e., flow that is purely rotational and has no divergence).

This + parameter is the scalar quantity whose gradient is the velocity vector of the + irrotational flow. It can be used to show areas where the air is diverging (spreading + out) or converging, which, depending on the vertical level, relate to ascending + or descending air. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171003 + shortname: pta + longname: Potential temperature anomaly + units: K + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171004 + shortname: epta + longname: Equivalent potential temperature anomaly + units: K + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171005 + shortname: septa + longname: Saturated equivalent potential temperature anomaly + units: K + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171006 + shortname: 100ua + longname: 100 metre U wind component anomaly + units: m s**-1 + description: '' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171007 + shortname: 100va + longname: 100 metre V wind component anomaly + units: m s**-1 + description: '' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171008 + shortname: 100sia + longname: 100 metre wind speed anomaly + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 171011 + shortname: udwa + longname: U component of divergent wind anomaly + units: m s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171012 + shortname: vdwa + longname: V component of divergent wind anomaly + units: m s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171013 + shortname: urwa + longname: U component of rotational wind anomaly + units: m s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171014 + shortname: vrwa + longname: V component of rotational wind anomaly + units: m s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171021 + shortname: uctpa + longname: Unbalanced component of temperature anomaly + units: K + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171022 + shortname: uclna + longname: Unbalanced component of logarithm of surface pressure anomaly + units: '~' + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171023 + shortname: ucdva + longname: Unbalanced component of divergence anomaly + units: s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171024 + shortname: lmlta + longname: Lake mix-layer temperature anomaly + units: K + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the mixed-layer temperature of inland water + bodies (lakes, reservoirs and rivers) or coastal waters is higher/lower than the + long-term average. The long-term average is typically derived from several decades + of model data and will vary with location and time of year (see further + information ).

The mixed-layer temperature is the temperature of + the uppermost layer of a lake that is well mixed. The ECMWF Integrated Forecasting + System represents inland water bodies and coastal waters with two layers in the + vertical, the mixed layer above and the thermocline below, where temperature changes + with depth. The upper boundary of the thermocline is located at the mixed layer + bottom, and the lower boundary of the thermocline at the lake bottom.

Mixing + can occur when the density of the surface (and near-surface) water is greater + than that of the water below. Mixing can also occur through the action of wind + on the surface of the lake.

ECMWF implemented a lake model in May 2015 + to represent the water temperature and lake ice of all the world's major inland + water bodies in the Integrated Forecasting System (IFS). The IFS differentiates + between (i) ocean water, handled by the ocean model, and (ii) inland water (lakes, + reservoirs and rivers) and coastal waters handled by the lake parametrisation. + Lake depth and surface area (or fractional cover) are kept constant in time. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171025 + shortname: licda + longname: Lake ice depth anomaly + units: m + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the ice thickness on inland water bodies + (lakes, reservoirs and rivers) and coastal waters is higher/lower than the long-term + average. The long-term average is typically derived from several decades of model + data and will vary with location and time of year (see further + information ).

The ECMWF Integrated Forecasting System represents + the formation and melting of ice on inland water bodies. A single ice layer is + represented. Lake ice depth is the thickness of that ice layer.

ECMWF + implemented a lake model in May 2015 to represent the water temperature and lake + ice of all the world's major inland water bodies in the Integrated Forecasting + System (IFS). The IFS differentiates between (i) ocean water, handled by the + ocean model, and (ii) inland water (lakes, reservoirs and rivers) and coastal + waters handled by the lake parametrisation. Lake depth and surface area (or fractional + cover) are kept constant in time. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171026 + shortname: cla + longname: Lake cover anomaly + units: (0 - 1) + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171027 + shortname: cvla + longname: Low vegetation cover anomaly + units: (0 - 1) + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171028 + shortname: cvha + longname: High vegetation cover anomaly + units: (0 - 1) + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171029 + shortname: tvla + longname: Type of low vegetation anomaly + units: '~' + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171030 + shortname: tvha + longname: Type of high vegetation anomaly + units: '~' + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171031 + shortname: sica + longname: Sea-ice cover anomaly + units: (0 - 1) + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the sea-ice cover is higher/lower than + the long-term average. The long-term average is typically derived from several + decades of model data and will vary with location and time of year (see further + information ).

Sea-ice cover is the fraction of a grid + box which is covered by sea-ice. Sea-ice can only occur in a grid box which + is defined as ocean according to the land sea mask at the resolution being used. + Sea-ice cover can also be known as sea-ice fraction or sea-ice concentration.

Sea-ice + is frozen sea water which floats on the surface of the ocean. Sea-ice does not + include ice which forms on land such as glaciers, icebergs and ice-sheets. It + also excludes ice shelves which are anchored on land, but protrude out over the + surface of the ocean. These phenomena are not modelled by the IFS.

Long-term + monitoring of sea-ice cover is important for understanding climate change. Sea-ice + cover also affects shipping routes through the polar regions. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171032 + shortname: asna + longname: Snow albedo anomaly + units: (0 - 1) + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171033 + shortname: rsna + longname: Snow density anomaly + units: kg m**-3 + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the snow density is higher/lower than the + long-term average. The long-term average is typically derived from several decades + of model data and will vary with location and time of year (see further + information ).

The ECMWF + Integrated Forecast System represents snow as a single additional layer over + the uppermost soil level. Snow density is assumed to be constant through the depth + of the snow layer. Snow density changes with time due to the weight of snow and + melt water in the snowpack. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171034 + shortname: ssta + longname: Sea surface temperature anomaly + units: K + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the temperature of sea water near the surface + is higher/lower than the long-term average. The long-term average is typically + derived from several decades of model data and will vary with location and time + of year (see further + information ).

Sea surface temperature (SST) is taken from various + providers, who process the observational data in different ways. Each provider + uses data from several different observational sources. For example, satellites + measure SST in a layer a few microns thick in the uppermost mm of the ocean, drifting + buoys measure SST at a depth of about 0.2-1.5m, whereas ships sample sea water + down to about 10m, while the vessel is underway. Deeper measurements are not affected + by changes that occur during a day, due to the rising and setting of the Sun (diurnal + variations).

Sometimes SST is taken from a forecast made by coupling + the NEMO ocean model to the ECMWF Integrated Forecasting System. In this case, + the SST is the average temperature of the uppermost metre of the ocean and does + exhibit diurnal variations.

See + further SST documentation. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171035 + shortname: istal1 + longname: Ice surface temperature anomaly layer 1 + units: K + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171036 + shortname: istal2 + longname: Ice surface temperature anomaly layer 2 + units: K + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171037 + shortname: istal3 + longname: Ice surface temperature anomaly layer 3 + units: K + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171038 + shortname: istal4 + longname: Ice surface temperature anomaly layer 4 + units: K + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171039 + shortname: swval1 + longname: Volumetric soil water anomaly layer 1 + units: m**3 m**-3 + description: 'An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the volumetric soil water is larger/smaller + in layer 1 than the long-term average. The long-term average is typically derived + from several decades of model data and will vary with location and time of year + (see further + information ).

Volumetric soil water is the volume of water in soil.

The + ECMWF Integrated Forecasting System model has a four-layer representation of soil:

Layer + 1: 0 - 7cm

Layer 2: 7 - 28cm

Layer 3: 28 - 100cm

Layer + 4: 100 - 289cm

The volumetric soil water is associated with the soil + texture (or classification), soil depth, and the underlying groundwater level.' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171040 + shortname: swval2 + longname: Volumetric soil water anomaly layer 2 + units: m**3 m**-3 + description: 'An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the volumetric soil water is larger/smaller + in layer 2 than the long-term average. The long-term average is typically derived + from several decades of model data and will vary with location and time of year + (see further + information ).

Volumetric soil water is the volume of water in soil.

The + ECMWF Integrated Forecasting System model has a four-layer representation of soil:

Layer + 1: 0 - 7cm

Layer 2: 7 - 28cm

Layer 3: 28 - 100cm

Layer + 4: 100 - 289cm

The volumetric soil water is associated with the soil + texture (or classification), soil depth, and the underlying groundwater level.' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171041 + shortname: swval3 + longname: Volumetric soil water anomaly layer 3 + units: m**3 m**-3 + description: 'An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the volumetric soil water is larger/smaller + in layer 3 than the long-term average. The long-term average is typically derived + from several decades of model data and will vary with location and time of year + (see further + information ).

Volumetric soil water is the volume of water in soil.

The + ECMWF Integrated Forecasting System model has a four-layer representation of soil:

Layer + 1: 0 - 7cm

Layer 2: 7 - 28cm

Layer 3: 28 - 100cm

Layer + 4: 100 - 289cm

The volumetric soil water is associated with the soil + texture (or classification), soil depth, and the underlying groundwater level.' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171042 + shortname: swval4 + longname: Volumetric soil water anomaly layer 4 + units: m**3 m**-3 + description: 'An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the volumetric soil water is larger/smaller + in layer 4 than the long-term average. The long-term average is typically derived + from several decades of model data and will vary with location and time of year + (see further + information ).

Volumetric soil water is the volume of water in soil.

The + ECMWF Integrated Forecasting System model has a four-layer representation of soil:

Layer + 1: 0 - 7cm

Layer 2: 7 - 28cm

Layer 3: 28 - 100cm

Layer + 4: 100 - 289cm

The volumetric soil water is associated with the soil + texture (or classification), soil depth, and the underlying groundwater level.' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171043 + shortname: slta + longname: Soil type anomaly + units: '~' + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171044 + shortname: esa + longname: Snow evaporation anomaly + units: kg m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171045 + shortname: smlta + longname: Snowmelt anomaly + units: kg m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171046 + shortname: sdura + longname: Solar duration anomaly + units: s + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171047 + shortname: dsrpa + longname: Direct solar radiation anomaly + units: J m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171048 + shortname: magssa + longname: Magnitude of turbulent surface stress anomaly + units: N m**-2 s + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171049 + shortname: 10fga + longname: 10 metre wind gust anomaly + units: m s**-1 + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the 10 metre wind gust is higher/lower + than the long-term average. The long-term average is typically derived from several + decades of model data and will vary with location and time of year (see further + information).

The WMO defines a wind gust as the maximum of the wind + averaged over 3 second intervals. This duration is shorter than a model + time step, and so the ECMWF Integrated Forecasting System deduces the magnitude + of a gust within each time step from the time-step-averaged surface stress, surface + friction, wind shear and stability. Then, the maximum wind gust is selected from + the gusts at each time step during a particular time period which depends on the + data extracted.

This parameter is calculated at a height of ten metres + above the surface of the Earth.

Care should be taken when comparing + model parameters with observations, because observations are often local to a + particular point in space and time, rather than representing averages over a model + grid box and model time step. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171050 + shortname: lspfa + longname: Large-scale precipitation fraction anomaly + units: s + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171051 + shortname: mx2t24a + longname: Maximum 2 metre temperature in the last 24 hours anomaly + units: K + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the maximum 2 metre temperature in the + previous 24 hours is higher/lower than the long-term average. The long-term average + is typically derived from several decades of model data and will vary with location + and time of year (see further + information).

2m temperature is calculated by interpolating between + the lowest model level and the Earth's surface, taking account of the atmospheric + conditions. See further + information. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171052 + shortname: mn2t24a + longname: Minimum 2 metre temperature in the last 24 hours anomaly + units: K + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the minimum 2 metre temperature in the + previous 24 hours is higher/lower than the long-term average. The long-term average + is typically derived from several decades of model data and will vary with location + and time of year (see further + information).

2m temperature is calculated by interpolating between + the lowest model level and the Earth's surface, taking account of the atmospheric + conditions. See further + information. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171053 + shortname: monta + longname: Montgomery potential anomaly + units: m**2 s**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171054 + shortname: pa + longname: Pressure anomaly + units: Pa + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171055 + shortname: mean2t24a + longname: Mean 2 metre temperature in the last 24 hours anomaly + units: K + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171056 + shortname: mn2d24a + longname: Mean 2 metre dewpoint temperature in the last 24 hours anomaly + units: K + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171057 + shortname: uvba + longname: Downward UV radiation at the surface anomaly + units: J m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171058 + shortname: para + longname: Photosynthetically active radiation at the surface anomaly + units: J m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171059 + shortname: capea + longname: Convective available potential energy anomaly + units: J kg**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171060 + shortname: pva + longname: Potential vorticity anomaly + units: K m**2 kg**-1 s**-1 + description: '' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171061 + shortname: tpoa + longname: Total precipitation from observations anomaly + units: Millimetres*100 + number of stations + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171062 + shortname: obcta + longname: Observation count anomaly + units: '~' + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171063 + shortname: stsktda + longname: Start time for skin temperature difference anomaly + units: s + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171064 + shortname: ftsktda + longname: Finish time for skin temperature difference anomaly + units: s + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171065 + shortname: sktda + longname: Skin temperature difference anomaly + units: K + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171078 + shortname: tclwa + longname: Total column liquid water anomaly + units: kg m**-2 + description: 'An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the total amount of cloud liquid water + (in a column extending from the surface of the Earth to the top of the atmosphere) is + higher/lower than the long-term average. The long-term average is typically derived + from several decades of model data and will vary with location and time of year + (see further + information).

This parameter represents the area averaged value for + a grid + box.

Clouds contain a continuum of different sized water droplets + and ice particles. The ECMWF Integrated Forecasting System (IFS) cloud scheme + simplifies this to represent a number of discrete cloud droplets/particles including: + cloud water droplets, raindrops, ice crystals and snow (aggregated ice crystals). + The processes of droplet formation, conversion and aggregation are also highly + simplified in the IFS.' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171079 + shortname: tciwa + longname: Total column ice water anomaly + units: kg m**-2 + description: 'An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the total amount of cloud ice (in a column + extending from the surface of the Earth to the top of the atmosphere) is higher/lower + than the long-term average. The long-term average is typically derived from several + decades of model data and will vary with location and time of year (see further + information). This parameter does not include snow (i.e., precipitating ice).

This + parameter represents the area averaged value for a grid + box.

Clouds contain a continuum of different sized water droplets + and ice particles. The ECMWF Integrated Forecasting System (IFS) cloud scheme + simplifies this to represent a number of discrete cloud droplets/particles including: + cloud water droplets, raindrops, ice crystals and snow (aggregated ice crystals). + The processes of droplet formation, conversion and aggregation are also highly + simplified in the IFS.' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171121 + shortname: mx2t6a + longname: Maximum temperature at 2 metres in the last 6 hours anomaly + units: K + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the maximum 2 metre temperature in the + previous 6 hours is higher/lower than the long-term average. The long-term average + is typically derived from several decades of model data and will vary with location + and time of year (see further + information).

2m temperature is calculated by interpolating between + the lowest model level and the Earth's surface, taking account of the atmospheric + conditions. See further + information. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171122 + shortname: mn2t6a + longname: Minimum temperature at 2 metres in the last 6 hours anomaly + units: K + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the minimum 2 metre temperature in the + previous 6 hours is higher/lower than the long-term average. The long-term average + is typically derived from several decades of model data and will vary with location + and time of year (see further + information ).

2m temperature is calculated by interpolating between + the lowest model level and the Earth's surface, taking account of the atmospheric + conditions. See further + information. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171125 + shortname: vitea + longname: Vertically integrated total energy anomaly + units: J m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171126 + shortname: '~' + longname: Generic parameter for sensitive area prediction + units: Various + description: null + access_ids: [] + origin_ids: + - 98 +- id: 171127 + shortname: ata + longname: Atmospheric tide anomaly + units: '~' + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171128 + shortname: bva + longname: Budget values anomaly + units: '~' + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171129 + shortname: za + longname: Geopotential anomaly + units: m**2 s**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171130 + shortname: ta + longname: Temperature anomaly + units: K + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that temperature is higher/lower than the long-term + average. The long-term average is typically derived from several decades of model + data and will vary with location and time of year (see further + information).

This parameter is available on multiple levels through + the atmosphere. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171131 + shortname: ua + longname: U component of wind anomaly + units: m s**-1 + description: An anomaly is a difference from a defined long-term average. A positive + anomaly indicates that the wind is more eastward (or less westward) than average. + A negative anomaly indicates that the wind is more westward (or less eastward) + than average. The long-term average is typically derived from several decades + of model data and will vary with location and time of year (see further + information).

The U component of wind is the eastward component of + the wind. It is the horizontal speed of air moving towards the east, in metres + per second. A negative U component of wind thus indicates air movement towards + the west. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171132 + shortname: va + longname: V component of wind anomaly + units: m s**-1 + description: An anomaly is a difference from a defined long-term average. A positive + anomaly indicates that the wind is more northward (or less southward) than average. + A negative anomaly indicates that the wind is more southward (or less northward) + than average. The long-term average is typically derived from several decades + of model data and will vary with location and time of year (see further + information).

The V component of wind is the northward component + of the wind. It is the horizontal speed of air moving towards the north, in metres + per second. A negative V component of wind thus indicates air movement towards + the south. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171133 + shortname: qa + longname: Specific humidity anomaly + units: kg kg**-1 + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the specific humidity is higher/lower than + the long-term average. The long-term average is typically derived from several + decades of model data and will vary with location and time of year (see + further information ).

Specific humidity is the mass of water vapour + per kilogram of moist air. The total mass of moist air is the sum of the dry air, + water vapour, cloud liquid, cloud ice, rain and falling snow. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171134 + shortname: spa + longname: Surface pressure anomaly + units: Pa + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171135 + shortname: wa + longname: Vertical velocity (pressure) anomaly + units: Pa s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171136 + shortname: tcwa + longname: Total column water anomaly + units: kg m**-2 + description: '' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171137 + shortname: tcwva + longname: Total column water vapour anomaly + units: kg m**-2 + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the total water vapour (in a column extending + from the surface of the Earth to the top of the atmosphere) is higher/lower than + the long-term average. The long-term average is typically derived from several + decades of model data and will vary with location and time of year (see further + information).

This parameter represents the area averaged value for + a grid + box. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171138 + shortname: voa + longname: Relative vorticity anomaly + units: s**-1 + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the relative vorticity is higher/lower + than the long-term average. The long-term average is typically derived from several + decades of model data and will vary with location and time of year (see further + information).

Relative vorticity is a measure of the rotation of + air in the horizontal, around a vertical axis, relative to a fixed point on the + surface of the Earth.

On the scale of weather systems, low pressure systems + (weather features that can include rain) are associated with anticlockwise rotation + (in the northern hemisphere), and high pressure systems (weather features that + bring light or still winds) are associated with clockwise rotation.

Adding + the effect of rotation of the Earth, the Coriolis parameter, to the relative vorticity + produces the absolute vorticity. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171139 + shortname: stal1 + longname: Soil temperature anomaly level 1 + units: K + description: 'An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the soil temperature at level 1 (the middle + of layer 1) is higher/lower than the long-term average. The long-term average + is typically derived from several decades of model data and will vary with location + and time of year (see further + information ).

The ECMWF Integrated Forecasting System model has + a four-layer representation of soil:

Layer 1: 0 - 7cm

Layer + 2: 7 - 28cm

Layer 3: 28 - 100cm

Layer 4: 100 - 289cm

Soil + temperature is set at the middle of each layer, and heat transfer is calculated + at the interfaces between them. It is assumed that there is no heat transfer out + of the bottom of the lowest layer.

This parameter has units of kelvin + (K). Temperature measured in kelvin can be converted to degrees Celsius (°C) + by subtracting 273.15.

See + further information.' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171140 + shortname: swal1 + longname: Soil wetness anomaly level 1 + units: kg m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171141 + shortname: sda + longname: Snow depth anomaly + units: m of water equivalent + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the snow depth is higher/lower than the + long-term average. The long-term average is typically derived from several decades + of model data and will vary with location and time of year (see further + information ).

The ECMWF + Integrated Forecast System represents snow as a single additional layer + over the uppermost soil level. The snow may cover all or part of the grid box. + Snow depth is the depth the water would have if the snow (from the snow-covered + area of a grid + box ) melted and was spread evenly over the whole grid box. Therefore, its + units are metres of water equivalent. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171142 + shortname: lspa + longname: Stratiform precipitation (Large-scale precipitation) anomaly + units: m + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171143 + shortname: cpa + longname: Convective precipitation anomaly + units: m + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171144 + shortname: sfa + longname: Snowfall (convective + stratiform) anomaly + units: m of water equivalent + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171145 + shortname: blda + longname: Boundary layer dissipation anomaly + units: J m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171146 + shortname: sshfa + longname: Surface sensible heat flux anomaly + units: J m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171147 + shortname: slhfa + longname: Surface latent heat flux anomaly + units: J m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171148 + shortname: chnka + longname: Charnock anomaly + units: '~' + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171149 + shortname: snra + longname: Surface net radiation anomaly + units: J m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171150 + shortname: tnra + longname: Top net radiation anomaly + units: '~' + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171151 + shortname: msla + longname: Mean sea level pressure anomaly + units: Pa + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the mean sea level pressure is higher/lower + than the long-term average. The long-term average is typically derived from several + decades of model data and will vary with location and time of year (see further + information).

The mean sea level pressure is the pressure (force + per unit area) of the atmosphere adjusted to the height of mean sea level. It + is a measure of the weight that all the air in a column vertically above the area + of Earth's surface would have at that point, if the point were located at the + mean sea level. It is calculated over all surfaces - land, sea and in-land water.

Maps + of mean sea level pressure are used to identify the locations of low and high + pressure systems, often referred to as cyclones and anticyclones. Contours of + mean sea level pressure also indicate the strength of the wind. Tightly packed + contours show stronger winds.

The units of this parameter are pascals + (Pa). Mean sea level pressure is often measured in hPa and sometimes is presented + in the old units of millibars, mb (1 hPa = 1 mb = 100 Pa). + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171152 + shortname: lspa + longname: Logarithm of surface pressure anomaly + units: '~' + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171153 + shortname: swhra + longname: Short-wave heating rate anomaly + units: K + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171154 + shortname: lwhra + longname: Long-wave heating rate anomaly + units: K + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171155 + shortname: da + longname: Relative divergence anomaly + units: s**-1 + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the relative divergence is higher/lower + than the long-term average. The long-term average is typically derived from several + decades of model data and will vary with location and time of year (see further + information).

The relative divergence, also called simply the divergence, + is the horizontal divergence of velocity. It is the rate at which air is spreading + out horizontally from a point, per square metre. This parameter is positive for + air that is spreading out, or diverging, and negative for the opposite, for air + that is concentrating, or converging (convergence). + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171156 + shortname: gha + longname: Height anomaly + units: m + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that geopotential height is higher/lower than + the long-term average. The long-term average is typically derived from several + decades of model data and will vary with location and time of year (see further + information).

Geopotential height is a measure of the height of a + point in the atmosphere in relation to its potential energy. It is calculated + by dividing the geopotential by the Earth's mean gravitational acceleration, g + (=9.80665 m s-2). The geopotential is the gravitational potential energy of a + unit mass, at a particular location, relative to mean sea level. Geopotential + is also the amount of work that would have to be done, against the force of gravity, + to lift a unit mass to that location from mean sea level.

Geopotential + height plays an important role in synoptic meteorology (analysis of weather patterns). + Charts of geopotential height plotted at constant pressure levels (e.g., 300, + 500 or 850 hPa) can be used to identify weather systems such as cyclones, anticyclones, + troughs and ridges.

The units of this parameter are geopotential metres. + A geopotential metre is 2% shorter than a dynamic metre (also called a geodynamic + metre). + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171157 + shortname: ra + longname: Relative humidity anomaly + units: '%' + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171158 + shortname: tspa + longname: Tendency of surface pressure anomaly + units: Pa s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171159 + shortname: blha + longname: Boundary layer height anomaly + units: m + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171160 + shortname: sdora + longname: Standard deviation of orography anomaly + units: m + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171161 + shortname: isora + longname: Anisotropy of sub-gridscale orography anomaly + units: '~' + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171162 + shortname: anora + longname: Angle of sub-gridscale orography anomaly + units: radians + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171163 + shortname: slora + longname: Slope of sub-gridscale orography anomaly + units: '~' + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171164 + shortname: tcca + longname: Total cloud cover anomaly + units: (0 - 1) + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that total cloud cover is larger/smaller than + the long-term average. The long-term average is typically derived from several + decades of model data and will vary with location and time of year (see further + information).

Total cloud cover is the proportion of a model + grid box covered by cloud. Total cloud cover is a single level field calculated + from the cloud occurring at different model levels through the atmosphere. Assumptions + are made about the degree of overlap/randomness between the horizontal positioning + of clouds at different heights. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171165 + shortname: 10ua + longname: 10 metre U wind component anomaly + units: m s**-1 + description: An anomaly is a difference from a defined long-term average. A positive + anomaly indicates that the wind is more eastward (or less westward) than average. + A negative anomaly indicates that the wind is more westward (or less eastward) + than average. The long-term average is typically derived from several decades + of model data and will vary with location and time of year (see further + information).

The 10 metre U wind component is the eastward component + of the 10 m wind. It is the horizontal speed of air moving towards the east, at + a height of ten metres above the surface of the Earth, in metres per second.

Care + should be taken when comparing model parameters with observations, because observations + are often local to a particular point in space and time, rather than representing + averages over a model + grid box and model time step. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171166 + shortname: 10va + longname: 10 metre V wind component anomaly + units: m s**-1 + description: An anomaly is a difference from a defined long-term average. A positive + anomaly indicates that the wind is more northward (or less southward) than average. + A negative anomaly indicates that the wind is more southward (or less northward) + than average. The long-term average is typically derived from several decades + of model data and will vary with location and time of year (see further + information).

The 10 metre V wind component is the northward component + of the 10 m wind. It is the horizontal speed of air moving towards the north, + at a height of ten metres above the surface of the Earth, in metres per second.

Care + should be taken when comparing model parameters with observations, because observations + are often local to a particular point in space and time, rather than representing + averages over a model + grid box and model time step. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171167 + shortname: 2ta + longname: 2 metre temperature anomaly + units: K + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the 2 metre temperature is higher/lower + than the long-term average. The long-term average is typically derived from several + decades of model data and will vary with location and time of year (see further + information).

2m temperature is calculated by interpolating between + the lowest model level and the Earth's surface, taking account of the atmospheric + conditions. See further + information. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171168 + shortname: 2da + longname: 2 metre dewpoint temperature anomaly + units: K + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the 2 metre dew point temperature is higher/lower + than the long-term average. The long-term average is typically derived from several + decades of model data and will vary with location and time of year (see further + information).

Dew point temperature is the temperature to which the + air would have to be cooled for saturation to occur. It is a measure of the humidity + of the air. Combined with temperature and pressure, it can be used to calculate + the relative humidity.

2m dew point temperature is calculated by interpolating + between the lowest model level and the Earth's surface, taking account of the + atmospheric conditions.See further + information. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171169 + shortname: ssrda + longname: Surface solar radiation downwards anomaly + units: J m**-2 + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the surface solar radiation downwards is + higher/lower than the long-term average. The long-term average is typically derived + from several decades of model data and will vary with location and time of year + (see further + information).

The surface solar radiation downwards is the amount + of solar radiation (also known as shortwave radiation) reaching the surface of + the Earth (both direct and diffuse). It is the amount of radiation passing through + a horizontal plane, not a plane perpendicular to the direction of the Sun. It + is accumulated over a particular time period which depends on the data extracted.

The + ECMWF convention for vertical fluxes is positive downwards. + access_ids: [] + origin_ids: + - 98 +- id: 171170 + shortname: stal2 + longname: Soil temperature anomaly level 2 + units: K + description: 'An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the soil temperature at level 2 (the middle + of layer 2) is higher/lower than the long-term average. The long-term average + is typically derived from several decades of model data and will vary with location + and time of year (see further + information ).

The ECMWF Integrated Forecasting System model has + a four-layer representation of soil:

Layer 1: 0 - 7cm

Layer + 2: 7 - 28cm

Layer 3: 28 - 100cm

Layer 4: 100 - 289cm

Soil + temperature is set at the middle of each layer, and heat transfer is calculated + at the interfaces between them. It is assumed that there is no heat transfer out + of the bottom of the lowest layer.

This parameter has units of kelvin + (K). Temperature measured in kelvin can be converted to degrees Celsius (°C) + by subtracting 273.15.

See + further information.' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171171 + shortname: swal2 + longname: Soil wetness anomaly level 2 + units: kg m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171173 + shortname: sra + longname: Surface roughness anomaly + units: m + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171174 + shortname: ala + longname: Albedo anomaly + units: (0 - 1) + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171175 + shortname: strda + longname: Surface thermal radiation downwards anomaly + units: J m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171176 + shortname: ssra + longname: Surface net solar radiation anomaly + units: J m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171177 + shortname: stra + longname: Surface net thermal radiation anomaly + units: J m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171178 + shortname: tsra + longname: Top net solar radiation anomaly + units: J m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171179 + shortname: ttra + longname: Top net thermal radiation anomaly + units: J m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171180 + shortname: eqssa + longname: East-West surface stress anomaly + units: N m**-2 s + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171181 + shortname: nsssa + longname: North-South surface stress anomaly + units: N m**-2 s + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171182 + shortname: ea + longname: Evaporation anomaly + units: kg m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171183 + shortname: stal3 + longname: Soil temperature anomaly level 3 + units: K + description: 'An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the soil temperature at level 3 (the middle + of layer 3) is higher/lower than the long-term average. The long-term average + is typically derived from several decades of model data and will vary with location + and time of year (see further + information ).

The ECMWF Integrated Forecasting System model has + a four-layer representation of soil:

Layer 1: 0 - 7cm

Layer + 2: 7 - 28cm

Layer 3: 28 - 100cm

Layer 4: 100 - 289cm

Soil + temperature is set at the middle of each layer, and heat transfer is calculated + at the interfaces between them. It is assumed that there is no heat transfer out + of the bottom of the lowest layer.

This parameter has units of kelvin + (K). Temperature measured in kelvin can be converted to degrees Celsius (°C) + by subtracting 273.15.

See + further information.' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171184 + shortname: swal3 + longname: Soil wetness anomaly level 3 + units: kg m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171185 + shortname: ccca + longname: Convective cloud cover anomaly + units: (0 - 1) + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171186 + shortname: lcca + longname: Low cloud cover anomaly + units: (0 - 1) + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that low cloud cover is larger/smaller than + the long-term average. The long-term average is typically derived from several + decades of model data and will vary with location and time of year (see further + information).

Low cloud cover is the proportion of a model + grid box covered by cloud occurring in the lower levels of the troposphere. + Low cloud is a single level field calculated from cloud occurring on model levels + with a pressure greater than 0.8 times the surface pressure. So, if the surface + pressure is 1000 hPa (hectopascal), low cloud would be calculated using levels + with a pressure greater than 800 hPa (below approximately 2 km (assuming a 'standard + atmosphere')).

The low cloud cover parameter is calculated from cloud + cover for the appropriate model levels as described above. Assumptions are made + about the degree of overlap/randomness between the horizontal positioning of clouds + in different model levels. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171187 + shortname: mcca + longname: Medium cloud cover anomaly + units: (0 - 1) + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171188 + shortname: hcca + longname: High cloud cover anomaly + units: (0 - 1) + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171189 + shortname: sunda + longname: Sunshine duration anomaly + units: s + description: null + access_ids: [] + origin_ids: + - 98 +- id: 171190 + shortname: ewova + longname: East-West component of sub-gridscale orographic variance anomaly + units: m**2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171191 + shortname: nsova + longname: North-South component of sub-gridscale orographic variance anomaly + units: m**2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171192 + shortname: nwova + longname: North-West/South-East component of sub-gridscale orographic variance anomaly + units: m**2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171193 + shortname: neova + longname: North-East/South-West component of sub-gridscale orographic variance anomaly + units: m**2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171194 + shortname: btmpa + longname: Brightness temperature anomaly + units: K + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171195 + shortname: lgwsa + longname: Longitudinal component of gravity wave stress anomaly + units: N m**-2 s + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171196 + shortname: mgwsa + longname: Meridional component of gravity wave stress anomaly + units: N m**-2 s + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171197 + shortname: gwda + longname: Gravity wave dissipation anomaly + units: J m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171198 + shortname: srca + longname: Skin reservoir content anomaly + units: kg m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171199 + shortname: vfa + longname: Vegetation fraction anomaly + units: (0 - 1) + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171200 + shortname: vsoa + longname: Variance of sub-gridscale orography anomaly + units: m**2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171201 + shortname: mx2ta + longname: Maximum temperature at 2 metres anomaly + units: K + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171202 + shortname: mn2ta + longname: Minimum temperature at 2 metres anomaly + units: K + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171203 + shortname: o3a + longname: Ozone mass mixing ratio anomaly + units: kg kg**-1 + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that ozone mass mixing ratio is higher/lower + than the long-term average. The long-term average is typically derived from several + decades of model data and will vary with location and time of year (see further + information).

Ozone mass mixing ratio is the mass of ozone per kilogram + of air.

In the ECMWF Integrated Forecasting System (IFS), there is a + simplified representation of ozone chemistry (including representation of the + chemistry which has caused the ozone hole). Ozone is also transported around in + the atmosphere through the motion of air. See + further documentation.

Naturally occurring ozone in the stratosphere + helps protect organisms at the surface of the Earth from the harmful effects of + ultraviolet (UV) radiation from the Sun. Ozone near the surface, often produced + because of pollution, is harmful to organisms.

Most of the IFS chemical + species are archived as mass mixing ratios [kg kg-1]. This + link explains how to convert to concentration in terms of mass per unit volume. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171204 + shortname: pawa + longname: Precipitation analysis weights anomaly + units: '~' + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171205 + shortname: roa + longname: Runoff anomaly + units: m + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171206 + shortname: tco3a + longname: Total column ozone anomaly + units: kg m**-2 + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that total column ozone is higher/lower than + the long-term average. The long-term average is typically derived from several + decades of model data and will vary with location and time of year (see further + information).

Total column ozone is the total amount of ozone in + a column of air extending from the surface of the Earth to the top of the (model) + atmosphere. This parameter can also be referred to as total ozone, or vertically + integrated ozone. The values are dominated by ozone within the stratosphere.

In + the ECMWF Integrated Forecasting System (IFS), there is a simplified representation + of ozone chemistry (including representation of the chemistry which has caused + the ozone hole). Ozone is also transported around in the atmosphere through the + motion of air. See + further documentation.

Naturally occurring ozone in the stratosphere + helps protect organisms at the surface of the Earth from the harmful effects of + ultraviolet (UV) radiation from the Sun. Ozone near the surface, often produced + because of pollution, is harmful to organisms.

In the IFS, the units + for total ozone are kilograms per square metre, but before 12/06/2001 dobson units + were used. Dobson units (DU) are still used extensively for total column ozone. + 1 DU = 2.1415E-5 kg m-2. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171207 + shortname: 10sia + longname: 10 metre wind speed anomaly + units: m s**-1 + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the 10 metre wind speed is higher/lower + than the long-term average. The long-term average is typically derived from several + decades of model data and will vary with location and time of year (see further + information).

The 10 metre wind speed is the horizontal speed of + the wind, or movement of air, at a height of ten metres above the surface of the + Earth.

Care should be taken when comparing model parameters with observations, + because observations are often local to a particular point in space and time, + rather than representing averages over a model + grid box and model time step. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171208 + shortname: tsrca + longname: Top net solar radiation clear sky anomaly + units: J m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171209 + shortname: ttrca + longname: Top net thermal radiation clear sky anomaly + units: J m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171210 + shortname: ssrca + longname: Surface net solar radiation clear sky anomaly + units: J m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171211 + shortname: strca + longname: Surface net thermal radiation, clear sky anomaly + units: J m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171212 + shortname: sia + longname: Solar insolation anomaly + units: J m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171214 + shortname: dhra + longname: Diabatic heating by radiation anomaly + units: K + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171215 + shortname: dhvda + longname: Diabatic heating by vertical diffusion anomaly + units: K + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171216 + shortname: dhcca + longname: Diabatic heating by cumulus convection anomaly + units: K + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171217 + shortname: dhlca + longname: Diabatic heating by large-scale condensation anomaly + units: K + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171218 + shortname: vdzwa + longname: Vertical diffusion of zonal wind anomaly + units: m s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171219 + shortname: vdmwa + longname: Vertical diffusion of meridional wind anomaly + units: m s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171220 + shortname: ewgda + longname: East-West gravity wave drag tendency anomaly + units: m s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171221 + shortname: nsgda + longname: North-South gravity wave drag tendency anomaly + units: m s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171222 + shortname: ctzwa + longname: Convective tendency of zonal wind anomaly + units: m s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171223 + shortname: ctmwa + longname: Convective tendency of meridional wind anomaly + units: m s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171224 + shortname: vdha + longname: Vertical diffusion of humidity anomaly + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171225 + shortname: htcca + longname: Humidity tendency by cumulus convection anomaly + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171226 + shortname: htlca + longname: Humidity tendency by large-scale condensation anomaly + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171227 + shortname: crnha + longname: Change from removal of negative humidity anomaly + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171228 + shortname: tpa + longname: Total precipitation anomaly + units: m + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the total precipitation is higher/lower + than the long-term average. The long-term average is typically derived from several + decades of model data and will vary with location and time of year (see further + information).

In the ECMWF Integrated Forecasting System (IFS), total + precipitation is rain and snow that falls to the Earth's surface. It is the sum + of large-scale precipitation and convective precipitation. Large-scale precipitation + is generated by the cloud scheme in the ECMWF Integrated Forecasting System (IFS). + The cloud scheme represents the formation and dissipation of clouds and large-scale + precipitation due to changes in atmospheric quantities (such as pressure, temperature + and moisture) predicted directly by the IFS at spatial scales of a grid box or + larger. Convective precipitation is generated by the convection scheme in the + IFS. The convection scheme represents convection at spatial scales smaller than + the grid box. See further + information. Precipitation parameters do not include fog, dew or the precipitation + that evaporates in the atmosphere before it lands at the surface of the Earth.

This + parameter is calculated from the total amount of water accumulated over a particular + time period which depends on the data extracted.The units of precipitation + are depth in metres. It is the depth the water would have if it were spread evenly + over the grid + box.

Care should be taken when comparing model parameters with observations, + because observations are often local to a particular point in space and time, + rather than representing averages over a model grid box and model + time step. + access_ids: [] + origin_ids: + - 98 +- id: 171229 + shortname: iewsa + longname: Instantaneous X surface stress anomaly + units: N m**-2 + description: An anomaly is a difference from a defined long-term average. A positive + anomaly indicates that the surface stress is more eastward (or less westward) + than average. A negative anomaly indicates that the surface stress is more westward + (or less eastward) than the average. The long-term average is typically derived + from several decades of model data and will vary with location and time of year + (see further + information).

Air flowing over a surface exerts a stress that transfers + momentum to the surface and slows the wind. The instantaneous X surface stress + is the stress on the Earth's surface at + the specified time in the eastward direction due to both the turbulent interactions + between the atmosphere and the surface, and to turbulent orographic form drag.

The + turbulent interactions between the atmosphere and the surface are due to the roughness + of the surface.

The turbulent orographic form drag is the stress due + to the valleys, hills and mountains on horizontal scales below 5km being derived + from land surface data at about 1 km resolution. See + further information. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171230 + shortname: inssa + longname: Instantaneous Y surface stress anomaly + units: N m**-2 + description: An anomaly is a difference from a defined long-term average. A positive + anomaly indicates that the surface stress is more northward (or less southward) + than average. A negative anomaly indicates that the surface stress is more southward + (or less northward) than the average. The long-term average is typically derived + from several decades of model data and will vary with location and time of year + (see further + information).

Air flowing over a surface exerts a stress that transfers + momentum to the surface and slows the wind. The instantaneous Y surface stress + is the stress on the Earth's surface at + the specified time in the northward direction due to both the turbulent interactions + between the atmosphere and the surface, and to turbulent orographic form drag.

The + turbulent interactions between the atmosphere and the surface are due to the roughness + of the surface.

The turbulent orographic form drag is the stress due + to the valleys, hills and mountains on horizontal scales below 5km being derived + from land surface data at about 1 km resolution. See + further information. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171231 + shortname: ishfa + longname: Instantaneous surface heat flux anomaly + units: J m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171232 + shortname: iea + longname: Instantaneous moisture flux anomaly + units: kg m**-2 s + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171233 + shortname: asqa + longname: Apparent surface humidity anomaly + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171234 + shortname: lsrha + longname: Logarithm of surface roughness length for heat anomaly + units: '~' + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171235 + shortname: skta + longname: Skin temperature anomaly + units: K + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171236 + shortname: stal4 + longname: Soil temperature level 4 anomaly + units: K + description: 'An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the soil temperature at level 4 (the middle + of layer 4) is higher/lower than the long-term average. The long-term average + is typically derived from several decades of model data and will vary with location + and time of year (see further + information ).

The ECMWF Integrated Forecasting System model has + a four-layer representation of soil:

Layer 1: 0 - 7cm

Layer + 2: 7 - 28cm

Layer 3: 28 - 100cm

Layer 4: 100 - 289cm

Soil + temperature is set at the middle of each layer, and heat transfer is calculated + at the interfaces between them. It is assumed that there is no heat transfer out + of the bottom of the lowest layer.

This parameter has units of kelvin + (K). Temperature measured in kelvin can be converted to degrees Celsius (°C) + by subtracting 273.15.

See + further information.' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171237 + shortname: swal4 + longname: Soil wetness level 4 anomaly + units: m + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171238 + shortname: tsna + longname: Temperature of snow layer anomaly + units: K + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171239 + shortname: csfa + longname: Convective snowfall anomaly + units: m of water equivalent + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171240 + shortname: lsfa + longname: Large scale snowfall anomaly + units: m of water equivalent + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171241 + shortname: acfa + longname: Accumulated cloud fraction tendency anomaly + units: (-1 to 1) + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171242 + shortname: alwa + longname: Accumulated liquid water tendency anomaly + units: (-1 to 1) + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171243 + shortname: fala + longname: Forecast albedo anomaly + units: (0 - 1) + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the forecast albedo is higher/lower than + the long-term average. The long-term average is typically derived from several + decades of model data and will vary with location and time of year (see further + information).

The forecast albedo is a measure of the reflectivity + of the Earth's surface. It is the fraction of solar (shortwave) radiation reflected + by Earth's surface, across the solar spectrum, for both direct and diffuse radiation. + Typically, snow and ice have high reflectivity with albedo values of 0.8 and above, + land has intermediate values between about 0.1 and 0.4 and the ocean has low values + of 0.1 or less. See + further documentation.

In the ECMWF Integrated Forecasting System + (IFS), the model only modifies albedo values over water, ice and snow, elsewhere + a background climatological albedo is used. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 171244 + shortname: fsra + longname: Forecast surface roughness anomaly + units: m + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171245 + shortname: flsra + longname: Forecast logarithm of surface roughness for heat anomaly + units: '~' + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171246 + shortname: clwca + longname: Cloud liquid water content anomaly + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171247 + shortname: ciwca + longname: Cloud ice water content anomaly + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171248 + shortname: cca + longname: Cloud cover anomaly + units: (0 - 1) + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171249 + shortname: aiwa + longname: Accumulated ice water tendency anomaly + units: (-1 to 1) + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171250 + shortname: iaa + longname: Ice age anomaly + units: (0 - 1) + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171251 + shortname: attea + longname: Adiabatic tendency of temperature anomaly + units: K + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171252 + shortname: athea + longname: Adiabatic tendency of humidity anomaly + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171253 + shortname: atzea + longname: Adiabatic tendency of zonal wind anomaly + units: m s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171254 + shortname: atmwa + longname: Adiabatic tendency of meridional wind anomaly + units: m s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 171255 + shortname: '~' + longname: Indicates a missing value + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 172008 + shortname: msror + longname: Time-mean surface runoff rate + units: m s**-1 + description: 'Mean rate of accumulation.
+ + The monthly mean is computed from the rate of accumulation of the field' + access_ids: + - dissemination + origin_ids: + - -90 + - -70 + - 98 +- id: 172009 + shortname: mssror + longname: Time-mean sub-surface runoff rate + units: m s**-1 + description: 'Deep soil drainage. Mean rate of accumulation.
+ + The monthly mean is computed from the rate of accumulation of the field' + access_ids: + - dissemination + origin_ids: + - -90 + - -70 + - 98 +- id: 172044 + shortname: esrate + longname: Time-mean snow evaporation rate + units: m of water equivalent s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 172045 + shortname: '~' + longname: Time-mean snowmelt rate + units: m of water equivalent s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 172050 + shortname: mlspfr + longname: Mean large-scale precipitation fraction + units: '~' + description:

This parameter is only available in GRIB1.

+ access_ids: [] + origin_ids: + - 98 +- id: 172142 + shortname: mlsprt + longname: Time-mean large-scale precipitation rate + units: m s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - -70 + - 98 +- id: 172143 + shortname: cprate + longname: Time-mean convective precipitation rate + units: m s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - -70 + - 98 +- id: 172144 + shortname: mtsfr + longname: Time-mean total snowfall rate + units: m of water equivalent s**-1 + description: This parameter is the mean rate of snowfall. It is accumulated snowfall + divided by the length of the accumulation period, which depends on the data extracted.

This + parameter is the sum of large-scale snowfall and convective snowfall. Large-scale + snowfall is generated by the cloud scheme in the ECMWF Integrated Forecast System + (IFS). The cloud scheme represents the formation and dissipation of clouds and + large-scale snowfall due to changes in atmospheric quantities (such as pressure, + temperature and moisture) predicted directly by the IFS at spatial scales of a + grid box or larger. Convective snowfall is generated by the convection scheme + in the IFS. The convection scheme represents convection at spatial scales smaller + than the grid box. See further + information.

The units are depth of water equivalent in metres which + falls per second (i.e., the depth the melted snow would have if it were spread + evenly over the grid + box ).

Care should be taken when comparing model parameters with + observations, because observations are often local to a particular point in space + and time, rather than representing averages over a model + grid box and model time step. + access_ids: + - dissemination + origin_ids: + - -90 + - -70 + - 98 +- id: 172145 + shortname: bldrate + longname: Boundary layer dissipation + units: W m**-2 + description:

This parameter is only available in GRIB1.

+ access_ids: [] + origin_ids: + - 98 +- id: 172146 + shortname: msshfl + longname: Time-mean surface sensible heat flux + units: W m**-2 + description:

Please use 235033 for the GRIB2 encoding of this parameter.

+ access_ids: + - dissemination + origin_ids: + - 98 +- id: 172147 + shortname: mslhfl + longname: Time-mean surface latent heat flux + units: W m**-2 + description:

Please use 235034 for the GRIB2 encoding of this parameter.

+ access_ids: + - dissemination + origin_ids: + - 98 +- id: 172153 + shortname: mswhr + longname: Time-mean short-wave (solar) heating rate + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 172154 + shortname: mlwhr + longname: Time-mean long-wave (thermal) heating rate + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 172169 + shortname: msdsrf + longname: Time-mean surface downward short-wave (solar) radiation flux + units: W m**-2 + description:

Please use 235035 for the GRIB2 encoding of this parameter.

+ access_ids: + - dissemination + origin_ids: + - 98 +- id: 172175 + shortname: msdtrf + longname: Time-mean surface downward long-wave (thermal) radiation flux + units: W m**-2 + description:

Please use 235036 for the GRIB2 encoding of this parameter.

+ access_ids: + - dissemination + origin_ids: + - 98 +- id: 172176 + shortname: msnsrf + longname: Time-mean surface net short-wave (solar) radiation flux + units: W m**-2 + description:

Please use 235037 for the GRIB2 encoding of this parameter.

+ access_ids: + - dissemination + origin_ids: + - 98 +- id: 172177 + shortname: msntrf + longname: Time-mean surface net long-wave (thermal) radiation flux + units: W m**-2 + description:

Please use 235038 for the GRIB2 encoding of this parameter.

+ access_ids: + - dissemination + origin_ids: + - 98 +- id: 172178 + shortname: mtnsrf + longname: Time-mean top net short-wave (solar) radiation flux + units: W m**-2 + description:

Please use 235039 for the GRIB2 encoding of this parameter.

+ access_ids: + - dissemination + origin_ids: + - 98 +- id: 172179 + shortname: mtntrf + longname: Time-mean top net long-wave (thermal) radiation flux + units: W m**-2 + description:

Please use 235040 for the GRIB2 encoding of this parameter.

+ access_ids: + - dissemination + origin_ids: + - 98 +- id: 172180 + shortname: ewssra + longname: Time-mean eastward turbulent surface stress + units: N m**-2 + description:

This parameter is only available in GRIB1.

+ access_ids: + - dissemination + origin_ids: + - 98 +- id: 172181 + shortname: nsssra + longname: Time-mean northward turbulent surface stress + units: N m**-2 + description:

This parameter is only available in GRIB1.

+ access_ids: + - dissemination + origin_ids: + - 98 +- id: 172182 + shortname: erate + longname: Time-mean evaporation rate + units: m of water equivalent s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - -90 + - -70 + - 98 +- id: 172189 + shortname: msdr + longname: Mean sunshine duration rate + units: s s**-1 + description:

This parameter is the accumulated sunshine duration divided by the + length of the accumulation period, which depends on the data extracted, giving + the mean sunshine duration rate.

The sunshine duration is the length of + time in which the direct solar (shortwave) radiation at the Earth's surface, falling + on a plane perpendicular to the direction of the Sun, is greater than or equal + to 120 W m-2. 

The minimum solar intensity level of 120 W m-2 is defined + by the World Meteorological Organisation and is consistent with observed values + of sunshine duration from a Campbell-Stokes recorder (sometimes called a Stokes + sphere) that can only measure moderately intense sunlight and brighter.

This + parameter is only available in GRIB1.

+ access_ids: + - dissemination + origin_ids: + - 98 +- id: 172195 + shortname: '~' + longname: Longitudinal component of gravity wave stress + units: N m**-2 + description:

This parameter is only available in GRIB1.

+ access_ids: [] + origin_ids: + - 98 +- id: 172196 + shortname: '~' + longname: Meridional component of gravity wave stress + units: N m**-2 + description:

This parameter is only available in GRIB1.

+ access_ids: [] + origin_ids: + - 98 +- id: 172197 + shortname: gwdrate + longname: Gravity wave dissipation + units: W m**-2 + description:

This parameter is only available in GRIB1.

+ access_ids: [] + origin_ids: + - 98 +- id: 172205 + shortname: mrort + longname: Time-mean runoff rate + units: m s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - -70 + - 98 +- id: 172208 + shortname: '~' + longname: Time-mean top net short-wave (solar) radiation flux, clear sky + units: W m**-2 + description:

This parameter is only available in GRIB1.

+ access_ids: [] + origin_ids: + - 98 +- id: 172209 + shortname: '~' + longname: Time-mean top net long-wave (thermal) radiation flux, clear sky + units: W m**-2 + description:

This parameter is only available in GRIB1.

+ access_ids: [] + origin_ids: + - 98 +- id: 172210 + shortname: '~' + longname: Time-mean surface net short-wave (solar) radiation flux, clear sky + units: W m**-2 + description:

This parameter is only available in GRIB1.

+ access_ids: [] + origin_ids: + - 98 +- id: 172211 + shortname: '~' + longname: Time-mean surface net long-wave (thermal) radiation flux, clear sky + units: W m**-2 + description:

This parameter is only available in GRIB1.

+ access_ids: [] + origin_ids: + - 98 +- id: 172212 + shortname: soira + longname: Time-mean short-wave (solar) insolation rate + units: W m**-2 + description:

This parameter is only available in GRIB1.

+ access_ids: + - dissemination + origin_ids: + - 98 +- id: 172228 + shortname: tprate + longname: Time-mean total precipitation rate + units: m s**-1 + description: This parameter is the mean rate of total precipitation. It is accumulated + precipitation divided by the length of the accumulation period, which + depends on the data extracted.

In the ECMWF Integrated Forecasting + System (IFS), total precipitation is rain and snow that falls to the Earth's surface. + It is the sum of large-scale precipitation and convective precipitation. Large-scale + precipitation is generated by the cloud scheme in the IFS. The cloud scheme represents + the formation and dissipation of clouds and large-scale precipitation due to changes + in atmospheric quantities (such as pressure, temperature and moisture) predicted + directly by the IFS at spatial scales of a grid box or larger. Convective precipitation + is generated by the convection scheme in the IFS. The convection scheme represents + convection at spatial scales smaller than the grid box. See further + information. Precipitation parameters do not include fog, dew or the precipitation + that evaporates in the atmosphere before it lands at the surface of the Earth.

The + units are depth of water equivalent in metres which falls per second (i.e., the + depth the water would have if it were spread evenly over the grid + box).

Care should be taken when comparing model parameters with observations, + because observations are often local to a particular point in space and time, + rather than representing averages over a model + grid box and model time step . + access_ids: + - dissemination + origin_ids: + - -90 + - -70 + - 98 +- id: 172239 + shortname: '~' + longname: Time-mean convective snowfall rate + units: m of water equivalent s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 172240 + shortname: '~' + longname: Time-mean large-scale snowfall rate + units: m of water equivalent s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 172255 + shortname: '~' + longname: Indicates a missing value + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 173008 + shortname: msrora + longname: Mean surface runoff rate anomaly + units: m of water equivalent s**-1 + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the mean surface runoff rate is higher/lower + than the long-term average. The long-term average is typically derived from several + decades of model data and will vary with location and time of year (see further + information).

The mean surface runoff rate is the amount of water + from rainfall or melting snow that is not absorbed by the soil and drains away + over the surface. Water may also drain away under the ground. It is the accumulated + amount of water, divided by the length of the accumulation period, which depends + on the data extracted.

This quantity represents the depth this water + would have if it were spread evenly over the grid box.

Care should be + taken when comparing model parameters with observations, because observations + are often local to a particular point in space and time, rather than representing + averages over a model + grid box and model time step + access_ids: + - dissemination + origin_ids: + - 98 +- id: 173009 + shortname: mssrora + longname: Mean sub-surface runoff rate anomaly + units: m of water equivalent s**-1 + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the mean sub-surface runoff rate is higher/lower + than the long-term average. The long-term average is typically derived from several + decades of model data and will vary with location and time of year (see further + information).

The mean sub-surface runoff rate is the amount of water + deep in the soil that drains away under the ground. Water may also drain away + over the surface. It is the accumulated amount of water, divided by the length + of the accumulation period, which depends on the data extracted.

This + quantity represents the depth this water would have if it were spread evenly over + the grid box.

Care should be taken when comparing model parameters with + observations, because observations are often local to a particular point in space + and time, rather than representing averages over a model + grid box and model time step + access_ids: + - dissemination + origin_ids: + - 98 +- id: 173044 + shortname: '~' + longname: Time-mean snow evaporation anomalous rate of accumulation + units: m of water equivalent s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 173045 + shortname: '~' + longname: Time-mean snowmelt anomalous rate of accumulation + units: m of water equivalent s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 173048 + shortname: '~' + longname: Magnitude of turbulent surface stress anomaly + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 173050 + shortname: '~' + longname: Large-scale precipitation fraction anomaly + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 173142 + shortname: lspara + longname: Stratiform precipitation (Large-scale precipitation) anomalous rate of + accumulation + units: m s**-1 + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the mean large-scale precipitation rate + is higher/lower than the long-term average. The long-term average is typically + derived from several decades of model data and will vary with location and time + of year (see further + information).

Mean large-scale precipitation rate is accumulated + precipitation divided by the length of the accumulation period, which + depends on the data extracted.

For this parameter, precipitation + is made up of rain and snow that falls to the Earth's surface, generated by the + cloud scheme in the ECMWF Integrated Forecasting System (IFS). The cloud scheme + represents the formation and dissipation of clouds and large-scale precipitation + due to changes in atmospheric quantities (such as pressure, temperature and moisture) + predicted directly by the IFS at spatial scales of a grid + box or larger. Precipitation can also be due to convection generated by the + convection scheme in the IFS. The convection scheme represents convection at spatial + scales smaller than the grid box. See further + information.Precipitation parameters do not include fog, dew or the precipitation + that evaporates in the atmosphere before it lands at the surface of the Earth.

The + units include depth in metres of water equivalent. This is the depth the water + would have if it were spread evenly over the grid box.

Care should be + taken when comparing model parameters with observations, because observations + are often local to a particular point in space and time, rather than representing + averages over a model + grid box and model time step. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 173143 + shortname: mcpra + longname: Mean convective precipitation rate anomaly + units: m s**-1 + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the mean convective precipitation rate + is higher/lower than the long-term average. The long-term average is typically + derived from several decades of model data and will vary with location and time + of year (see + further information ).

Mean convective precipitation rate is accumulated + precipitation divided by the length the accumulation period, which + depends on the data extracted.

For this parameter, precipitation + is rain and snow that falls to the Earth's surface, generated by the convection + scheme in the ECMWF Integrated Forecasting System (IFS). The convection scheme + represents convection at spatial scales smaller than the grid + box. Total precipitation is made up of convective and large-scale precipitation. + Large-scale precipitation is generated by the cloud scheme in the IFS. The cloud + scheme represents the formation and dissipation of clouds and large-scale precipitation + due to changes in atmospheric quantities (such as pressure, temperature and moisture) + predicted directly by the IFS at spatial scales of a grid + box or larger. See further + information.

The units include depth, in metres of water equivalent. + This is the depth the water would have if it were spread evenly over the grid + box. Care should be taken when comparing model parameters with observations, + because observations are often local to a particular point in space and time, + rather than representing averages over a + model grid box and model time step . + access_ids: + - dissemination + origin_ids: + - 98 +- id: 173144 + shortname: sfara + longname: Snowfall (convective + stratiform) anomalous rate of accumulation + units: m of water equivalent s**-1 + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the mean snowfall rate is higher/lower + than the long-term average. The long-term average is typically derived from several + decades of model data and will vary with location and time of year (see further + information ).

The mean snowfall rate is the accumulated snowfall + divided by the length of the accumulation period, which depends on the data extracted.

Snowfall + is the sum of large-scale snowfall and convective snowfall. Large-scale snowfall + is generated by the cloud scheme in the ECMWF Integrated Forecast System. The + cloud scheme represents the formation and dissipation of clouds and large-scale + snowfall due to changes in atmospheric quantities (such as pressure, temperature + and moisture) predicted directly by the IFS at spatial scales of a grid box or + larger. Convective snowfall is generated by the convection scheme in the IFS. + The convection scheme represents convection at spatial scales smaller than the + grid box. See further + information.

The units are depth of water equivalent in metres which + falls per second (i.e., the depth the melted snow would have if it were spread + evenly over the grid + box ).

Care should be taken when comparing model parameters with + observations, because observations are often local to a particular point in space + and time, rather than representing averages over a model grid box and model + time step. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 173145 + shortname: '~' + longname: Boundary layer dissipation anomaly + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 173146 + shortname: sshfara + longname: Surface sensible heat flux anomalous rate of accumulation + units: J m**-2 + description: An anomaly is a difference from a defined long-term average. Since + the ECMWF convention for vertical fluxes is positive downwards, a positive anomaly + means either a larger downward mean surface sensible heat flux or a smaller upward + flux, compared with the long-term average. A negative anomaly means either a smaller + downward flux or a larger upward flux. The long-term average is typically derived + from several decades of model data and will vary with location and time of year + (see further + information).

Surface sensible heat flux is the transfer of heat + between the Earth's surface and the atmosphere through the effects of turbulent + air motion (but excluding any heat transfer resulting from condensation or evaporation). + The mean flux is the accumulated flux divided by the length of the accumulation + period, which depends on the data extracted. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 173147 + shortname: slhfara + longname: Surface latent heat flux anomalous rate of accumulation + units: J m**-2 + description: An anomaly is a difference from a defined long-term average. Since + the ECMWF convention for vertical fluxes is positive downwards, a positive anomaly + means either a larger downward mean surface latent heat flux or a smaller upward + flux, compared with the long-term average. A negative anomaly means either a smaller + downward flux or a larger upward flux. The long-term average is typically derived + from several decades of model data and will vary with location and time of year + (see further + information).

The surface latent heat flux is the transfer of latent + heat (resulting from evaporation, condensation and other moisture phase changes) + between the Earth's surface and the atmosphere through the effects of turbulent + air motion. Evaporation from the Earth's surface represents a transfer of energy + from the surface to the atmosphere. The mean latent heat flux is the accumulated + flux divided by the length of the accumulation period, which depends on the data + extracted. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 173149 + shortname: '~' + longname: Surface net radiation anomaly + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 173153 + shortname: '~' + longname: Short-wave heating rate anomaly + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 173154 + shortname: '~' + longname: Long-wave heating rate anomaly + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 173169 + shortname: ssrdara + longname: Surface solar radiation downwards anomalous rate of accumulation + units: J m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 173175 + shortname: strdara + longname: Surface thermal radiation downwards anomalous rate of accumulation + units: J m**-2 + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the mean flux of surface thermal radiation + downwards is higher/lower than the long-term average. The long-term average is + typically derived from several decades of model data and will vary with location + and time of year (see further information).

Surface thermal radiation + downwards is the amount of thermal (also known as longwave or terrestrial) radiation + emitted by the atmosphere and clouds that reaches the Earth's surface. It is the + amount of radiation passing through a horizontal plane. The mean flux is the accumulated + flux divided by the length of the accumulation period, which depends on the data + extracted.

The ECMWF convention for vertical fluxes is positive downwards. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 173176 + shortname: ssrara + longname: Surface solar radiation anomalous rate of accumulation + units: J m**-2 + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the mean net surface solar radiation flux + is higher/lower than the long-term average. The long-term average is typically + derived from several decades of model data and will vary with location and time + of year (see further + information).

The net surface solar radiation flux is the amount + of solar radiation (also known as shortwave radiation) reaching the surface of + the Earth (both direct and diffuse) minus the amount reflected by the Earth's + surface (which is governed by the albedo). It is the amount of radiation passing + through a horizontal plane, not a plane perpendicular to the direction of the + Sun. The mean flux is the accumulated flux divided by the length of the accumulation + period, which depends on the data extracted.

The ECMWF convention + for vertical fluxes is positive downwards. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 173177 + shortname: strara + longname: Surface thermal radiation anomalous rate of accumulation + units: J m**-2 + description: An anomaly is a difference from a defined long-term average. Since + the ECMWF convention for vertical fluxes is positive downwards, a positive anomaly + means either a larger downward mean net surface thermal radiation flux or a smaller + upward flux, compared with the long-term average. A negative anomaly means either + a smaller downward flux or a larger upward flux. The long-term average is typically + derived from several decades of model data and will vary with location and time + of year (see further + information).

Thermal radiation (also known as longwave or terrestrial + radiation) refers to radiation emitted by the atmosphere, clouds and the surface + of the Earth. The net surface thermal radiation flux is the difference between + downward and upward thermal radiation at the surface of the Earth. It is the amount + of radiation passing through a horizontal plane.

The atmosphere and + clouds emit thermal radiation in all directions, some of which reaches the surface + as downward thermal radiation. The upward thermal radiation at the surface consists + of thermal radiation emitted by the surface plus the fraction of downwards thermal + radiation reflected upward by the surface. See + further documentation

The mean flux is the accumulated flux divided + by the length of the accumulation period, which depends on the data extracted. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 173178 + shortname: tsrara + longname: Top solar radiation anomalous rate of accumulation + units: J m**-2 + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the mean net flux of solar radiation at + the top of the atmosphere is higher/lower than the long-term average. The long-term + average is typically derived from several decades of model data and will vary + with location and time of year (see further + information).

The net flux of solar radiation (also known as shortwave + radiation) at the top of the atmosphere is the incoming solar radiation minus + the outgoing solar radiation. It is the amount of radiation passing through a + horizontal plane. The incoming solar radiation is the amount received from the + Sun. The outgoing solar radiation is the amount reflected and scattered by the + Earth's atmosphere and surface. See + further documentation.

The mean flux is the accumulated flux divided + by the length of the accumulation period, which depends on the data extracted.

The + ECMWF convention for vertical fluxes is positive downwards. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 173179 + shortname: ttrara + longname: Top thermal radiation anomalous rate of accumulation + units: J m**-2 + description: An anomaly is a difference from a defined long-term average. The ECMWF + convention for vertical fluxes is positive downwards and the mean flux of thermal + radiation at the top of the atmosphere can only be upwards (i.e., negative). Therefore, + a positive anomaly means a smaller upward flux of thermal radiation and a negative + anomaly means a larger upward flux, compared with the long-term average. The long-term + average is typically derived from several decades of model data and will vary + with location and time of year (see further + information).

The mean flux of thermal radiation (also known as longwave + or terrestrial) is the thermal radiation emitted to space at the top of the atmosphere. + See + further documentation. The mean flux is the accumulated flux divided by the + length of the accumulation period, which depends on the data extracted.

The + thermal radiation emitted to space at the top of the atmosphere is commonly known + as the Outgoing Longwave Radiation (OLR) (but taking a flux from the atmosphere + to space as positive). + access_ids: + - dissemination + origin_ids: + - 98 +- id: 173180 + shortname: ewssara + longname: East-West surface stress anomalous rate of accumulation + units: N m**-2 + description: An anomaly is a difference from a defined long-term average. A positive + anomaly indicates that the mean East-West surface stress is more eastward (or + less westward) than average. A negative anomaly indicates that the mean East-West + surface stress is more westward (or less eastward) than the average. The long-term + average is typically derived from several decades of model data and will vary + with location and time of year (see further + information).

Air flowing over a surface exerts a stress that transfers + momentum to the surface and slows the wind. The mean East-West surface stress + is the accumulated eastward surface stress divided by the length of the accumulation + period, which depends on the data extracted.

The East-West surface + stress is the stress on the Earth's surface in the eastward direction due to both + the turbulent interactions between the atmosphere and the surface, and to turbulent + orographic form drag. The turbulent interactions between the atmosphere and the + surface are due to the roughness of the surface. The turbulent orographic form + drag is the stress due to the valleys, hills and mountains on horizontal scales + below 5km being derived from land surface data at about 1 km resolution. See + further information. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 173181 + shortname: nsssara + longname: North-South surface stress anomalous rate of accumulation + units: N m**-2 + description: An anomaly is a difference from a defined long-term average. A positive + anomaly indicates that the mean North-South surface stress is more northward (or + less southward) than average. A negative anomaly indicates that the mean North-South + surface stress is more southward (or less northward) than the average. The long-term + average is typically derived from several decades of model data and will vary + with location and time of year (see further + information).

Air flowing over a surface exerts a stress that transfers + momentum to the surface and slows the wind. The mean North-South surface stress + is the accumulated northward surface stress divided by the length of the accumulation + period, which depends on the data extracted.

The North-South surface + stress is the stress on the Earth's surface in the northward direction due to + both the turbulent interactions between the atmosphere and the surface, and to + turbulent orographic form drag. The turbulent interactions between the atmosphere + and the surface are due to the roughness of the surface. The turbulent orographic + form drag is the stress due to the valleys, hills and mountains on horizontal + scales below 5km being derived from land surface data at about 1 km resolution. + See + further information. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 173182 + shortname: evara + longname: Time-mean evaporation anomalous rate of accumulation + units: m of water equivalent s**-1 + description:

An anomaly is a difference from a defined long-term average. The + ECMWF Integrated Forecasting System convention is that downward fluxes are positive. + Therefore a positive anomaly means either a larger downward mean evaporation flux + (more condensation) or a smaller upward flux (less evaporation), compared with + the long-term average. A negative anomaly means either a smaller downward flux + or a larger upward flux. The long-term average is typically derived from several + decades of model data and will vary with location and time of year (see further + information).

Evaporation is the amount of water that has evaporated + from the Earth's surface, including a simplified representation of transpiration + (from vegetation), into vapour in the air above.The mean evaporation rate is the + accumulated evaporation divided by the length of the accumulation period, which + depends on the data extracted.

+ access_ids: + - dissemination + origin_ids: + - 98 +- id: 173189 + shortname: sundara + longname: Sunshine duration anomalous rate of accumulation + units: dimensionless + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the mean sunshine duration rate is higher/lower + than the long-term average. The long-term average is typically derived from several + decades of model data and will vary with location and time of year (see further + information).

The mean sunshine duration rate is the accumulated sunshine + duration divided by the length of the accumulation period, which depends on the + data extracted.

The sunshine duration is the length of time in which + the direct solar (shortwave) radiation at the Earth's surface, falling on a plane + perpendicular to the direction of the Sun, is greater than or equal to 120 W m-2. +

The minimum solar intensity level of 120 W m-2 is defined by the World + Meteorological Organisation and is consistent with observed values of sunshine + duration from a Campbell-Stokes recorder (sometimes called a Stokes sphere) that + can only measure moderately intense sunlight and brighter. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 173195 + shortname: '~' + longname: Longitudinal component of gravity wave stress anomaly + units: N m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 173196 + shortname: '~' + longname: Meridional component of gravity wave stress anomaly + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 173197 + shortname: '~' + longname: Gravity wave dissipation anomaly + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 173205 + shortname: roara + longname: Runoff anomalous rate of accumulation + units: m s**-1 + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the mean runoff rate is higher/lower than + the long-term average. The long-term average is typically derived from several + decades of model data and will vary with location and time of year (see further + information).

The mean runoff rate is the total amount of water from + rainfall, melting snow, or deep in the soil, that drains away over the surface + and under the ground. It is the accumulated amount of water, divided by the length + of the accumulation period, which depends on the data extracted.

This + quantity represents the depth this water would have if it were spread evenly over + the grid box.

Care should be taken when comparing model parameters with + observations, because observations are often local to a particular point in space + and time, rather than representing averages over a model + grid box and model time step. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 173208 + shortname: '~' + longname: Top net solar radiation, clear sky anomaly + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 173209 + shortname: '~' + longname: Top net thermal radiation, clear sky anomaly + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 173210 + shortname: '~' + longname: Surface net solar radiation, clear sky anomaly + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 173211 + shortname: '~' + longname: Surface net thermal radiation, clear sky anomaly + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 173212 + shortname: soiara + longname: Solar insolation anomalous rate of accumulation + units: W m**-2 s**-1 + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the mean solar insolation is higher/lower + than the long-term average. The long-term average is typically derived from several + decades of model data and will vary with location and time of year (see further + information).

Solar insolation is the incoming radiation from the + Sun (also known as solar or shortwave radiation) at the top of the atmosphere + (TOA). It is the amount of radiation passing through a horizontal plane, not a + plane perpendicular to the direction of the Sun.

Solar insolation has + a diurnal cycle (as it is defined into a horizontal plane and not a plane perpendicular + to the Sun), as well as an annual cycle due to the change in Sun-Earth distance, + and the approximately 11-year solar cycle. Solar insolation at the TOA has experienced + no absorption, scattering or reflection within the atmosphere (e.g., from clouds, + water vapour, ozone, trace gases and aerosol).

The mean flux is the + accumulated flux divided by the length of the accumulation period, which depends + on the data extracted. The ECMWF convention for vertical fluxes is positive + downwards. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 173228 + shortname: tpara + longname: Total precipitation anomalous rate of accumulation + units: m s**-1 + description: An anomaly is a difference from a defined long-term average. Positive/negative + values of this parameter indicate that the mean precipitation rate is higher/lower + than the long-term average. The long-term average is typically derived from several + decades of model data and will vary with location and time of year (see further + information).

The mean precipitation rate is the accumulated precipitation + divided by the length of the accumulation period, which + depends on the data extracted.

In the ECMWF Integrated Forecasting + System (IFS), total precipitation is rain and snow that falls to the Earth's surface. + It is the sum of large-scale precipitation and convective precipitation. Large-scale + precipitation is generated by the cloud scheme in the IFS. The cloud scheme represents + the formation and dissipation of clouds and large-scale precipitation due to changes + in atmospheric quantities (such as pressure, temperature and moisture) predicted + directly by the IFS at spatial scales of a grid box or larger. Convective precipitation + is generated by the convection scheme in the IFS. The convection scheme represents + convection at spatial scales smaller than the grid box. See further + information. Precipitation parameters do not include fog, dew or the precipitation + that evaporates in the atmosphere before it lands at the surface of the Earth.

The + units are depth of water equivalent in metres which falls per second. It is the + depth the water would have if it were spread evenly over the grid + box.

Care should be taken when comparing model parameters with observations, + because observations are often local to a particular point in space and time, + rather than representing averages over a model grid box and + model time step . + access_ids: + - dissemination + origin_ids: + - 98 +- id: 173239 + shortname: '~' + longname: Convective snowfall anomaly + units: m of water equivalent s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 173240 + shortname: '~' + longname: Large scale snowfall anomaly + units: m of water equivalent s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 173255 + shortname: '~' + longname: Indicates a missing value + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 174006 + shortname: '~' + longname: Total soil moisture + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 174008 + shortname: sro + longname: Surface runoff + units: kg m**-2 + description: 'Lateral water flow occurring at the surface + +
[This GRIB2 encoding is only to be used in CARRA/CERRA, + S2S and UERRA. Please use paramId 231010 otherwise.]' + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 174010 + shortname: sswcsdown + longname: Clear-sky (II) down surface sw flux + units: W m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 174013 + shortname: sswcsup + longname: Clear-sky (II) up surface sw flux + units: W m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 174025 + shortname: vis15 + longname: Visibility at 1.5m + units: m + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 174031 + shortname: '~' + longname: Fraction of sea-ice in sea + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 174034 + shortname: '~' + longname: Open-sea surface temperature + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 174039 + shortname: '~' + longname: Volumetric soil water layer 1 + units: m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 174040 + shortname: '~' + longname: Volumetric soil water layer 2 + units: m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 174041 + shortname: '~' + longname: Volumetric soil water layer 3 + units: m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 174042 + shortname: '~' + longname: Volumetric soil water layer 4 + units: m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 174049 + shortname: '~' + longname: 10 metre wind gust in the last 24 hours + units: m s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 174050 + shortname: mn15t + longname: Minimum temperature at 1.5m since previous post-processing + units: K + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 174051 + shortname: mx15t + longname: Maximum temperature at 1.5m since previous post-processing + units: K + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 174052 + shortname: rhum + longname: Relative humidity at 1.5m + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 174055 + shortname: '~' + longname: 1.5m temperature - mean in the last 24 hours + units: K + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 174083 + shortname: '~' + longname: Net primary productivity + units: kg C m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 174085 + shortname: '~' + longname: 10m U wind over land + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 174086 + shortname: '~' + longname: 10m V wind over land + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 174087 + shortname: '~' + longname: 1.5m temperature over land + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 174088 + shortname: '~' + longname: 1.5m dewpoint temperature over land + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 174089 + shortname: '~' + longname: Top incoming solar radiation + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 174090 + shortname: '~' + longname: Top outgoing solar radiation + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 174092 + shortname: sialb + longname: Sea ice albedo + units: (0 - 1) + description: '' + access_ids: [] + origin_ids: [] +- id: 174093 + shortname: sitemptop + longname: Sea ice surface temperature + units: deg C + description: '' + access_ids: [] + origin_ids: [] +- id: 174094 + shortname: '~' + longname: Mean sea surface temperature + units: K + description: Weighted average of water and sea-ice values + access_ids: [] + origin_ids: + - 98 +- id: 174095 + shortname: '~' + longname: 1.5m specific humidity + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 174096 + shortname: 2sh + longname: 2 metre specific humidity + units: kg kg**-1 + description: '' + access_ids: + - dissemination + origin_ids: + - -20 + - 0 + - 34 + - 98 +- id: 174097 + shortname: sisnthick + longname: Sea ice snow thickness + units: m + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 174098 + shortname: sithick + longname: Sea-ice thickness + units: m + description: null + access_ids: + - dissemination + origin_ids: + - -40 + - -20 + - 98 +- id: 174099 + shortname: '~' + longname: Liquid water potential temperature + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 174110 + shortname: '~' + longname: Ocean ice concentration + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 174111 + shortname: '~' + longname: Ocean mean ice depth + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 174112 + shortname: siue + longname: Sea ice velocity along x + units: m s**-1 + description: '' + access_ids: [] + origin_ids: [] +- id: 174113 + shortname: sivn + longname: Sea ice velocity along y + units: m s**-1 + description: '' + access_ids: [] + origin_ids: [] +- id: 174116 + shortname: swrsurf + longname: Short wave radiation flux at surface + units: J m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 174117 + shortname: swrtop + longname: Short wave radiation flux at top of atmosphere + units: J m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 174137 + shortname: tcwvap + longname: Total column water vapour + units: kg m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 174139 + shortname: '~' + longname: Soil temperature layer 1 + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 174142 + shortname: lsrrate + longname: Large scale rainfall rate + units: kg m**-2 s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 174143 + shortname: crfrate + longname: Convective rainfall rate + units: kg m**-2 s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 174164 + shortname: '~' + longname: Average potential temperature in upper 293.4m + units: degrees C + description: null + access_ids: [] + origin_ids: + - 98 +- id: 174167 + shortname: '~' + longname: 1.5m temperature + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 174168 + shortname: '~' + longname: 1.5m dewpoint temperature + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 174170 + shortname: '~' + longname: Soil temperature layer 2 + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 174175 + shortname: '~' + longname: Average salinity in upper 293.4m + units: psu + description: null + access_ids: [] + origin_ids: + - 98 +- id: 174183 + shortname: '~' + longname: Soil temperature layer 3 + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 174186 + shortname: vlca + longname: Very low cloud amount + units: (0 - 1) + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 174201 + shortname: '~' + longname: 1.5m temperature - maximum in the last 24 hours + units: K + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 174202 + shortname: '~' + longname: 1.5m temperature - minimum in the last 24 hours + units: K + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 174236 + shortname: '~' + longname: Soil temperature layer 4 + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 174239 + shortname: csfrate + longname: Convective snowfall rate + units: kg m**-2 s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 174240 + shortname: lsfrate + longname: Large scale snowfall rate + units: kg m**-2 s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 174248 + shortname: tccro + longname: Total cloud amount - random overlap + units: (0 - 1) + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 174249 + shortname: tcclwr + longname: Total cloud amount in lw radiation + units: (0 - 1) + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 174255 + shortname: '~' + longname: Indicates a missing value + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 175006 + shortname: '~' + longname: Total soil moisture + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 175031 + shortname: '~' + longname: Fraction of sea-ice in sea + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 175034 + shortname: '~' + longname: Open-sea surface temperature + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 175039 + shortname: '~' + longname: Volumetric soil water layer 1 + units: m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 175040 + shortname: '~' + longname: Volumetric soil water layer 2 + units: m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 175041 + shortname: '~' + longname: Volumetric soil water layer 3 + units: m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 175042 + shortname: '~' + longname: Volumetric soil water layer 4 + units: m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 175049 + shortname: '~' + longname: 10m wind gust in the last 24 hours + units: m s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 175055 + shortname: '~' + longname: 1.5m temperature - mean in the last 24 hours + units: K + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 175083 + shortname: '~' + longname: Net primary productivity + units: kg C m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 175085 + shortname: '~' + longname: 10m U wind over land + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 175086 + shortname: '~' + longname: 10m V wind over land + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 175087 + shortname: '~' + longname: 1.5m temperature over land + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 175088 + shortname: '~' + longname: 1.5m dewpoint temperature over land + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 175089 + shortname: '~' + longname: Top incoming solar radiation + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 175090 + shortname: '~' + longname: Top outgoing solar radiation + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 175110 + shortname: '~' + longname: Ocean ice concentration + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 175111 + shortname: '~' + longname: Ocean mean ice depth + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 175139 + shortname: '~' + longname: Soil temperature layer 1 + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 175164 + shortname: '~' + longname: Average potential temperature in upper 293.4m + units: degrees C + description: null + access_ids: [] + origin_ids: + - 98 +- id: 175167 + shortname: '~' + longname: 1.5m temperature + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 175168 + shortname: '~' + longname: 1.5m dewpoint temperature + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 175170 + shortname: '~' + longname: Soil temperature layer 2 + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 175175 + shortname: '~' + longname: Average salinity in upper 293.4m + units: psu + description: null + access_ids: [] + origin_ids: + - 98 +- id: 175183 + shortname: '~' + longname: Soil temperature layer 3 + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 175201 + shortname: '~' + longname: 1.5m temperature - maximum in the last 24 hours + units: K + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 175202 + shortname: '~' + longname: 1.5m temperature - minimum in the last 24 hours + units: K + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 175236 + shortname: '~' + longname: Soil temperature layer 4 + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 175255 + shortname: '~' + longname: Indicates a missing value + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 180149 + shortname: tsw + longname: Total soil wetness + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 180176 + shortname: ssr + longname: Surface net solar radiation + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 180177 + shortname: str + longname: Surface net thermal radiation + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 180178 + shortname: tsr + longname: Top net solar radiation + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 180179 + shortname: ttr + longname: Top net thermal radiation + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 190141 + shortname: sdsien + longname: Snow depth + units: kg m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 190170 + shortname: cap + longname: Field capacity + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 190171 + shortname: wiltsien + longname: Wilting point + units: (0 - 1) + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 190173 + shortname: sr + longname: Roughness length + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 190229 + shortname: tsm + longname: Total soil moisture + units: m**3 m**-3 + description: Instantaneous value, vertically accumulated + access_ids: [] + origin_ids: + - 98 +- id: 200001 + shortname: strfdiff + longname: Stream function difference + units: m**2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200002 + shortname: vpotdiff + longname: Velocity potential difference + units: m**2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200003 + shortname: ptdiff + longname: Potential temperature difference + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200004 + shortname: eqptdiff + longname: Equivalent potential temperature difference + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200005 + shortname: septdiff + longname: Saturated equivalent potential temperature difference + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200011 + shortname: udvwdiff + longname: U component of divergent wind difference + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200012 + shortname: vdvwdiff + longname: V component of divergent wind difference + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200013 + shortname: urtwdiff + longname: U component of rotational wind difference + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200014 + shortname: vrtwdiff + longname: V component of rotational wind difference + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200021 + shortname: uctpdiff + longname: Unbalanced component of temperature difference + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200022 + shortname: uclndiff + longname: Unbalanced component of logarithm of surface pressure difference + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200023 + shortname: ucdvdiff + longname: Unbalanced component of divergence difference + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200024 + shortname: '~' + longname: Reserved for future unbalanced components + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200025 + shortname: '~' + longname: Reserved for future unbalanced components + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200026 + shortname: cldiff + longname: Lake cover difference + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200027 + shortname: cvldiff + longname: Low vegetation cover difference + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200028 + shortname: cvhdiff + longname: High vegetation cover difference + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200029 + shortname: tvldiff + longname: Type of low vegetation difference + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200030 + shortname: tvhdiff + longname: Type of high vegetation difference + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200031 + shortname: sicdiff + longname: Sea-ice cover difference + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200032 + shortname: asndiff + longname: Snow albedo difference + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200033 + shortname: rsndiff + longname: Snow density difference + units: kg m**-3 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200034 + shortname: sstdiff + longname: Sea surface temperature difference + units: K + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 200035 + shortname: istl1diff + longname: Ice surface temperature layer 1 difference + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200036 + shortname: istl2diff + longname: Ice surface temperature layer 2 difference + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200037 + shortname: istl3diff + longname: Ice surface temperature layer 3 difference + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200038 + shortname: istl4diff + longname: Ice surface temperature layer 4 difference + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200039 + shortname: swvl1diff + longname: Volumetric soil water layer 1 difference + units: m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200040 + shortname: swvl2diff + longname: Volumetric soil water layer 2 difference + units: m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200041 + shortname: swvl3diff + longname: Volumetric soil water layer 3 difference + units: m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200042 + shortname: swvl4diff + longname: Volumetric soil water layer 4 difference + units: m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200043 + shortname: sltdiff + longname: Soil type difference + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200044 + shortname: esdiff + longname: Snow evaporation difference + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200045 + shortname: smltdiff + longname: Snowmelt difference + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200046 + shortname: sdurdiff + longname: Solar duration difference + units: s + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200047 + shortname: dsrpdiff + longname: Direct solar radiation difference + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200048 + shortname: magssdiff + longname: Magnitude of turbulent surface stress difference + units: N m**-2 s + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200049 + shortname: 10fgdiff + longname: 10 metre wind gust difference + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200050 + shortname: lspfdiff + longname: Large-scale precipitation fraction difference + units: s + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200051 + shortname: mx2t24diff + longname: Maximum 2 metre temperature difference + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200052 + shortname: mn2t24diff + longname: Minimum 2 metre temperature difference + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200053 + shortname: montdiff + longname: Montgomery potential difference + units: m**2 s**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200054 + shortname: presdiff + longname: Pressure difference + units: Pa + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200055 + shortname: mean2t24diff + longname: Mean 2 metre temperature in the last 24 hours difference + units: K + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 200056 + shortname: mn2d24diff + longname: Mean 2 metre dewpoint temperature in the last 24 hours difference + units: K + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 200057 + shortname: uvbdiff + longname: Downward UV radiation at the surface difference + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200058 + shortname: pardiff + longname: Photosynthetically active radiation at the surface difference + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200059 + shortname: capediff + longname: Convective available potential energy difference + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200060 + shortname: pvdiff + longname: Potential vorticity difference + units: K m**2 kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200061 + shortname: tpodiff + longname: Total precipitation from observations difference + units: Millimetres*100 + number of stations + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200062 + shortname: obctdiff + longname: Observation count difference + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200063 + shortname: '~' + longname: Start time for skin temperature difference + units: s + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200064 + shortname: '~' + longname: Finish time for skin temperature difference + units: s + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200065 + shortname: '~' + longname: Skin temperature difference + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200066 + shortname: '~' + longname: Leaf area index, low vegetation + units: m**2 m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200067 + shortname: '~' + longname: Leaf area index, high vegetation + units: m**2 m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200070 + shortname: '~' + longname: Biome cover, low vegetation + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200071 + shortname: '~' + longname: Biome cover, high vegetation + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200078 + shortname: '~' + longname: Total column liquid water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200079 + shortname: '~' + longname: Total column ice water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200080 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200081 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200082 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200083 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200084 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200085 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200086 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200087 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200088 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200089 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200090 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200091 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200092 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200093 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200094 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200095 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200096 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200097 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200098 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200099 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200100 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200101 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200102 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200103 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200104 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200105 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200106 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200107 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200108 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200109 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200110 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200111 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200112 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200113 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200114 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200115 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200116 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200117 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200118 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200119 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200120 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200121 + shortname: mx2t6diff + longname: Maximum temperature at 2 metres difference + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200122 + shortname: mn2t6diff + longname: Minimum temperature at 2 metres difference + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200123 + shortname: 10fg6diff + longname: 10 metre wind gust in the last 6 hours difference + units: m s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 200125 + shortname: '~' + longname: Vertically integrated total energy + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200126 + shortname: '~' + longname: Generic parameter for sensitive area prediction + units: Various + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200127 + shortname: atdiff + longname: Atmospheric tide difference + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200128 + shortname: bvdiff + longname: Budget values difference + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200129 + shortname: zdiff + longname: Geopotential difference + units: m**2 s**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200130 + shortname: tdiff + longname: Temperature difference + units: K + description: null + access_ids: [] + origin_ids: + - -80 + - 98 +- id: 200131 + shortname: udiff + longname: U component of wind difference + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200132 + shortname: vdiff + longname: V component of wind difference + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200133 + shortname: qdiff + longname: Specific humidity difference + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - -80 + - 98 +- id: 200134 + shortname: spdiff + longname: Surface pressure difference + units: Pa + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200135 + shortname: wdiff + longname: Vertical velocity (pressure) difference + units: Pa s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 200136 + shortname: tcwdiff + longname: Total column water difference + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200137 + shortname: tcwvdiff + longname: Total column water vapour difference + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200138 + shortname: vodiff + longname: Vorticity (relative) difference + units: s**-1 + description: null + access_ids: [] + origin_ids: + - -80 + - 98 +- id: 200139 + shortname: stl1diff + longname: Soil temperature level 1 difference + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200140 + shortname: swl1diff + longname: Soil wetness level 1 difference + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200141 + shortname: sddiff + longname: Snow depth difference + units: m of water equivalent + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200142 + shortname: lspdiff + longname: Stratiform precipitation (Large-scale precipitation) difference + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200143 + shortname: cpdiff + longname: Convective precipitation difference + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200144 + shortname: sfdiff + longname: Snowfall (convective + stratiform) difference + units: m of water equivalent + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200145 + shortname: blddiff + longname: Boundary layer dissipation difference + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200146 + shortname: sshfdiff + longname: Surface sensible heat flux difference + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200147 + shortname: slhfdiff + longname: Surface latent heat flux difference + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200148 + shortname: chnkdiff + longname: Charnock difference + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200149 + shortname: snrdiff + longname: Surface net radiation difference + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200150 + shortname: tnrdiff + longname: Top net radiation difference + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200151 + shortname: msldiff + longname: Mean sea level pressure difference + units: Pa + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200152 + shortname: lnspdiff + longname: Logarithm of surface pressure difference + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - -80 + - 98 +- id: 200153 + shortname: swhrdiff + longname: Short-wave heating rate difference + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200154 + shortname: lwhrdiff + longname: Long-wave heating rate difference + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200155 + shortname: ddiff + longname: Divergence difference + units: s**-1 + description: null + access_ids: [] + origin_ids: + - -80 + - 98 +- id: 200156 + shortname: ghdiff + longname: Height difference + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200157 + shortname: rdiff + longname: Relative humidity difference + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200158 + shortname: tspdiff + longname: Tendency of surface pressure difference + units: Pa s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200159 + shortname: blhdiff + longname: Boundary layer height difference + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200160 + shortname: sdordiff + longname: Standard deviation of orography difference + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200161 + shortname: isordiff + longname: Anisotropy of sub-gridscale orography difference + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200162 + shortname: anordiff + longname: Angle of sub-gridscale orography difference + units: radians + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200163 + shortname: slordiff + longname: Slope of sub-gridscale orography difference + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200164 + shortname: tccdiff + longname: Total cloud cover difference + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200165 + shortname: 10udiff + longname: 10 metre U wind component difference + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200166 + shortname: 10vdiff + longname: 10 metre V wind component difference + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200167 + shortname: 2tdiff + longname: 2 metre temperature difference + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200168 + shortname: 2ddiff + longname: 2 metre dewpoint temperature difference + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200169 + shortname: ssrddiff + longname: Surface solar radiation downwards difference + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200170 + shortname: stl2diff + longname: Soil temperature level 2 difference + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200171 + shortname: swl2diff + longname: Soil wetness level 2 difference + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200172 + shortname: lsmdiff + longname: Land-sea mask difference + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200173 + shortname: srdiff + longname: Surface roughness difference + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200174 + shortname: aldiff + longname: Albedo difference + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200175 + shortname: strddiff + longname: Surface thermal radiation downwards difference + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200176 + shortname: ssrdiff + longname: Surface net solar radiation difference + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200177 + shortname: strdiff + longname: Surface net thermal radiation difference + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200178 + shortname: tsrdiff + longname: Top net solar radiation difference + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200179 + shortname: ttrdiff + longname: Top net thermal radiation difference + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200180 + shortname: ewssdiff + longname: East-West surface stress difference + units: N m**-2 s + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200181 + shortname: nsssdiff + longname: North-South surface stress difference + units: N m**-2 s + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200182 + shortname: ediff + longname: Evaporation difference + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200183 + shortname: stl3diff + longname: Soil temperature level 3 difference + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200184 + shortname: swl3diff + longname: Soil wetness level 3 difference + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200185 + shortname: cccdiff + longname: Convective cloud cover difference + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200186 + shortname: lccdiff + longname: Low cloud cover difference + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200187 + shortname: mccdiff + longname: Medium cloud cover difference + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200188 + shortname: hccdiff + longname: High cloud cover difference + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200189 + shortname: sunddiff + longname: Sunshine duration difference + units: s + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200190 + shortname: ewovdiff + longname: East-West component of sub-gridscale orographic variance difference + units: m**2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200191 + shortname: nsovdiff + longname: North-South component of sub-gridscale orographic variance difference + units: m**2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200192 + shortname: nwovdiff + longname: North-West/South-East component of sub-gridscale orographic variance difference + units: m**2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200193 + shortname: neovdiff + longname: North-East/South-West component of sub-gridscale orographic variance difference + units: m**2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200194 + shortname: btmpdiff + longname: Brightness temperature difference + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200195 + shortname: lgwsdiff + longname: Longitudinal component of gravity wave stress difference + units: N m**-2 s + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 200196 + shortname: mgwsdiff + longname: Meridional component of gravity wave stress difference + units: N m**-2 s + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200197 + shortname: gwddiff + longname: Gravity wave dissipation difference + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200198 + shortname: srcdiff + longname: Skin reservoir content difference + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200199 + shortname: vegdiff + longname: Vegetation fraction difference + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200200 + shortname: vsodiff + longname: Variance of sub-gridscale orography difference + units: m**2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200201 + shortname: mx2tdiff + longname: Maximum temperature at 2 metres since previous post-processing difference + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200202 + shortname: mn2tdiff + longname: Minimum temperature at 2 metres since previous post-processing difference + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200203 + shortname: o3diff + longname: Ozone mass mixing ratio difference + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - -80 + - 98 +- id: 200204 + shortname: pawdiff + longname: Precipitation analysis weights difference + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200205 + shortname: rodiff + longname: Runoff difference + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200206 + shortname: tco3diff + longname: Total column ozone difference + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200207 + shortname: 10sidiff + longname: 10 metre wind speed difference + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200208 + shortname: tsrcdiff + longname: Top net solar radiation, clear sky difference + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200209 + shortname: ttrcdiff + longname: Top net thermal radiation, clear sky difference + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200210 + shortname: ssrcdiff + longname: Surface net solar radiation, clear sky difference + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200211 + shortname: strcdiff + longname: Surface net thermal radiation, clear sky difference + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200212 + shortname: tisrdiff + longname: TOA incident solar radiation difference + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200214 + shortname: dhrdiff + longname: Diabatic heating by radiation difference + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200215 + shortname: dhvddiff + longname: Diabatic heating by vertical diffusion difference + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200216 + shortname: dhccdiff + longname: Diabatic heating by cumulus convection difference + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200217 + shortname: dhlcdiff + longname: Diabatic heating large-scale condensation difference + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200218 + shortname: vdzwdiff + longname: Vertical diffusion of zonal wind difference + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200219 + shortname: vdmwdiff + longname: Vertical diffusion of meridional wind difference + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200220 + shortname: ewgddiff + longname: East-West gravity wave drag tendency difference + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200221 + shortname: nsgddiff + longname: North-South gravity wave drag tendency difference + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200222 + shortname: ctzwdiff + longname: Convective tendency of zonal wind difference + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200223 + shortname: ctmwdiff + longname: Convective tendency of meridional wind difference + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200224 + shortname: vdhdiff + longname: Vertical diffusion of humidity difference + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200225 + shortname: htccdiff + longname: Humidity tendency by cumulus convection difference + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200226 + shortname: htlcdiff + longname: Humidity tendency by large-scale condensation difference + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200227 + shortname: crnhdiff + longname: Change from removal of negative humidity difference + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200228 + shortname: tpdiff + longname: Total precipitation difference + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200229 + shortname: iewsdiff + longname: Instantaneous X surface stress difference + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200230 + shortname: inssdiff + longname: Instantaneous Y surface stress difference + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200231 + shortname: ishfdiff + longname: Instantaneous surface heat flux difference + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200232 + shortname: iediff + longname: Instantaneous moisture flux difference + units: kg m**-2 s + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200233 + shortname: asqdiff + longname: Apparent surface humidity difference + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200234 + shortname: lsrhdiff + longname: Logarithm of surface roughness length for heat difference + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200235 + shortname: sktdiff + longname: Skin temperature difference + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200236 + shortname: stl4diff + longname: Soil temperature level 4 difference + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200237 + shortname: swl4diff + longname: Soil wetness level 4 difference + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200238 + shortname: tsndiff + longname: Temperature of snow layer difference + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200239 + shortname: csfdiff + longname: Convective snowfall difference + units: m of water equivalent + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200240 + shortname: lsfdiff + longname: Large scale snowfall difference + units: m of water equivalent + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200241 + shortname: acfdiff + longname: Accumulated cloud fraction tendency difference + units: (-1 to 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200242 + shortname: alwdiff + longname: Accumulated liquid water tendency difference + units: (-1 to 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200243 + shortname: faldiff + longname: Forecast albedo difference + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200244 + shortname: fsrdiff + longname: Forecast surface roughness difference + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200245 + shortname: flsrdiff + longname: Forecast logarithm of surface roughness for heat difference + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200246 + shortname: clwcdiff + longname: Specific cloud liquid water content difference + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200247 + shortname: ciwcdiff + longname: Specific cloud ice water content difference + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200248 + shortname: ccdiff + longname: Cloud cover difference + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200249 + shortname: aiwdiff + longname: Accumulated ice water tendency difference + units: (-1 to 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200250 + shortname: icediff + longname: Ice age difference + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200251 + shortname: attediff + longname: Adiabatic tendency of temperature difference + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200252 + shortname: athediff + longname: Adiabatic tendency of humidity difference + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200253 + shortname: atzediff + longname: Adiabatic tendency of zonal wind difference + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200254 + shortname: atmwdiff + longname: Adiabatic tendency of meridional wind difference + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 200255 + shortname: '~' + longname: Indicates a missing value + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201001 + shortname: '~' + longname: downward shortwave radiant flux density + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201002 + shortname: '~' + longname: upward shortwave radiant flux density + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201003 + shortname: '~' + longname: downward longwave radiant flux density + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201004 + shortname: '~' + longname: upward longwave radiant flux density + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201005 + shortname: apab_s + longname: downwd photosynthetic active radiant flux density + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201006 + shortname: '~' + longname: net shortwave flux + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201007 + shortname: '~' + longname: net longwave flux + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201008 + shortname: '~' + longname: total net radiative flux density + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201009 + shortname: '~' + longname: downw shortw radiant flux density, cloudfree part + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201010 + shortname: '~' + longname: upw shortw radiant flux density, cloudy part + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201011 + shortname: '~' + longname: downw longw radiant flux density, cloudfree part + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201012 + shortname: '~' + longname: upw longw radiant flux density, cloudy part + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201013 + shortname: sohr_rad + longname: shortwave radiative heating rate + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201014 + shortname: thhr_rad + longname: longwave radiative heating rate + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201015 + shortname: '~' + longname: total radiative heating rate + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201016 + shortname: '~' + longname: soil heat flux, surface + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201017 + shortname: '~' + longname: soil heat flux, bottom of layer + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201029 + shortname: clc + longname: fractional cloud cover + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201030 + shortname: '~' + longname: cloud cover, grid scale + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201031 + shortname: qc + longname: specific cloud water content + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 34 + - 98 +- id: 201032 + shortname: '~' + longname: cloud water content, grid scale, vert integrated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201033 + shortname: qi + longname: specific cloud ice content, grid scale + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201034 + shortname: '~' + longname: cloud ice content, grid scale, vert integrated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201035 + shortname: '~' + longname: specific rainwater content, grid scale + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201036 + shortname: '~' + longname: specific snow content, grid scale + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201037 + shortname: '~' + longname: specific rainwater content, gs, vert. integrated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201038 + shortname: '~' + longname: specific snow content, gs, vert. integrated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201041 + shortname: twater + longname: total column water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201042 + shortname: '~' + longname: vert. integral of divergence of tot. water content + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201050 + shortname: ch_cm_cl + longname: cloud covers CH_CM_CL (000...888) + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201051 + shortname: '~' + longname: cloud cover CH (0..8) + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201052 + shortname: '~' + longname: cloud cover CM (0..8) + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201053 + shortname: '~' + longname: cloud cover CL (0..8) + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201054 + shortname: '~' + longname: total cloud cover (0..8) + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201055 + shortname: '~' + longname: fog (0..8) + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201056 + shortname: '~' + longname: fog + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201060 + shortname: '~' + longname: cloud cover, convective cirrus + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201061 + shortname: '~' + longname: specific cloud water content, convective clouds + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201062 + shortname: '~' + longname: cloud water content, conv clouds, vert integrated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201063 + shortname: '~' + longname: specific cloud ice content, convective clouds + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201064 + shortname: '~' + longname: cloud ice content, conv clouds, vert integrated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201065 + shortname: '~' + longname: convective mass flux + units: kg s**-1 m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201066 + shortname: '~' + longname: Updraft velocity, convection + units: m s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 201067 + shortname: '~' + longname: entrainment parameter, convection + units: m**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201068 + shortname: hbas_con + longname: cloud base, convective clouds (above msl) + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201069 + shortname: htop_con + longname: cloud top, convective clouds (above msl) + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201070 + shortname: '~' + longname: convective layers (00...77) (BKE) + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201071 + shortname: '~' + longname: KO-index + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201072 + shortname: bas_con + longname: convection base index + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201073 + shortname: top_con + longname: convection top index + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201074 + shortname: dt_con + longname: convective temperature tendency + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201075 + shortname: dqv_con + longname: convective tendency of specific humidity + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201076 + shortname: '~' + longname: convective tendency of total heat + units: J kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201077 + shortname: '~' + longname: convective tendency of total water + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201078 + shortname: du_con + longname: convective momentum tendency (X-component) + units: m s**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201079 + shortname: dv_con + longname: convective momentum tendency (Y-component) + units: m s**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201080 + shortname: '~' + longname: convective vorticity tendency + units: s**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201081 + shortname: '~' + longname: convective divergence tendency + units: s**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201082 + shortname: htop_dc + longname: top of dry convection (above msl) + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201083 + shortname: '~' + longname: dry convection top index + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201084 + shortname: hzerocl + longname: height of 0 degree Celsius isotherm above msl + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201085 + shortname: snowlmt + longname: height of snow-fall limit + units: m + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201099 + shortname: qrs_gsp + longname: spec. content of precip. particles + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201100 + shortname: prr_gsp + longname: surface precipitation rate, rain, grid scale + units: kg s**-1 m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201101 + shortname: prs_gsp + longname: surface precipitation rate, snow, grid scale + units: kg s**-1 m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201102 + shortname: rain_gsp + longname: surface precipitation amount, rain, grid scale + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201111 + shortname: prr_con + longname: surface precipitation rate, rain, convective + units: kg s**-1 m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201112 + shortname: prs_con + longname: surface precipitation rate, snow, convective + units: kg s**-1 m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201113 + shortname: rain_con + longname: surface precipitation amount, rain, convective + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201150 + shortname: '~' + longname: coefficient of horizontal diffusion + units: m**2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201187 + shortname: vmax_10m + longname: Maximum wind velocity + units: m s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 201200 + shortname: w_i + longname: water content of interception store + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201203 + shortname: t_snow + longname: snow temperature + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201215 + shortname: t_ice + longname: ice surface temperature + units: K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201241 + shortname: cape_con + longname: convective available potential energy + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 201255 + shortname: '~' + longname: Indicates a missing value + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210001 + shortname: aermr01 + longname: Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210002 + shortname: aermr02 + longname: Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210003 + shortname: aermr03 + longname: Sea Salt Aerosol (5 - 20 um) Mixing Ratio + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210004 + shortname: aermr04 + longname: Dust Aerosol (0.03 - 0.55 um) Mixing Ratio + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210005 + shortname: aermr05 + longname: Dust Aerosol (0.55 - 0.9 um) Mixing Ratio + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210006 + shortname: aermr06 + longname: Dust Aerosol (0.9 - 20 um) Mixing Ratio + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210007 + shortname: aermr07 + longname: Hydrophilic Organic Matter Aerosol Mixing Ratio + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210008 + shortname: aermr08 + longname: Hydrophobic Organic Matter Aerosol Mixing Ratio + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210009 + shortname: aermr09 + longname: Hydrophilic Black Carbon Aerosol Mixing Ratio + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210010 + shortname: aermr10 + longname: Hydrophobic Black Carbon Aerosol Mixing Ratio + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210011 + shortname: aermr11 + longname: Sulphate Aerosol Mixing Ratio + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210012 + shortname: aermr12 + longname: SO2 precursor mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210013 + shortname: aermr13 + longname: Volcanic ash aerosol mixing ratio + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 210014 + shortname: aermr14 + longname: Volcanic sulphate aerosol mixing ratio + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 210015 + shortname: aermr15 + longname: Volcanic SO2 precursor mixing ratio + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 210016 + shortname: aergn01 + longname: Aerosol type 1 source/gain accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210017 + shortname: aergn02 + longname: Aerosol type 2 source/gain accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210018 + shortname: aergn03 + longname: Aerosol type 3 source/gain accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210019 + shortname: aergn04 + longname: Aerosol type 4 source/gain accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210020 + shortname: aergn05 + longname: Aerosol type 5 source/gain accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210021 + shortname: aergn06 + longname: Aerosol type 6 source/gain accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210022 + shortname: aergn07 + longname: Aerosol type 7 source/gain accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210023 + shortname: aergn08 + longname: Aerosol type 8 source/gain accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210024 + shortname: aergn09 + longname: Aerosol type 9 source/gain accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210025 + shortname: aergn10 + longname: Aerosol type 10 source/gain accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210026 + shortname: aergn11 + longname: Aerosol type 11 source/gain accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210027 + shortname: aergn12 + longname: Aerosol type 12 source/gain accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210028 + shortname: aerpr03 + longname: SO4 aerosol precursor mass mixing ratio + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 210029 + shortname: aerwv01 + longname: Water vapour mixing ratio for hydrophilic aerosols in mode 1 + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 210030 + shortname: aerwv02 + longname: Water vapour mixing ratio for hydrophilic aerosols in mode 2 + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 210031 + shortname: aerls01 + longname: Aerosol type 1 sink/loss accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210032 + shortname: aerls02 + longname: Aerosol type 2 sink/loss accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210033 + shortname: aerls03 + longname: Aerosol type 3 sink/loss accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210034 + shortname: aerls04 + longname: Aerosol type 4 sink/loss accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210035 + shortname: aerls05 + longname: Aerosol type 5 sink/loss accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210036 + shortname: aerls06 + longname: Aerosol type 6 sink/loss accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210037 + shortname: aerls07 + longname: Aerosol type 7 sink/loss accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210038 + shortname: aerls08 + longname: Aerosol type 8 sink/loss accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210039 + shortname: aerls09 + longname: Aerosol type 9 sink/loss accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210040 + shortname: aerls10 + longname: Aerosol type 10 sink/loss accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210041 + shortname: aerls11 + longname: Aerosol type 11 sink/loss accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210042 + shortname: aerls12 + longname: Aerosol type 12 sink/loss accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210043 + shortname: emdms + longname: DMS surface emission + units: kg m**-2 s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 210044 + shortname: aerwv03 + longname: Water vapour mixing ratio for hydrophilic aerosols in mode 3 + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 210045 + shortname: aerwv04 + longname: Water vapour mixing ratio for hydrophilic aerosols in mode 4 + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 210046 + shortname: aerpr + longname: Aerosol precursor mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210047 + shortname: aersm + longname: Aerosol small mode mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210048 + shortname: aerlg + longname: Aerosol large mode mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210049 + shortname: aodpr + longname: Aerosol precursor optical depth + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210050 + shortname: aodsm + longname: Aerosol small mode optical depth + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210051 + shortname: aodlg + longname: Aerosol large mode optical depth + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210052 + shortname: aerdep + longname: Dust emission potential + units: kg s**2 m**-5 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210053 + shortname: aerlts + longname: Lifting threshold speed + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210054 + shortname: aerscc + longname: Soil clay content + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210055 + shortname: '~' + longname: Experimental product + units: '~' + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 210056 + shortname: '~' + longname: Experimental product + units: '~' + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 210057 + shortname: ocnuc + longname: Mixing ration of organic carbon aerosol, nucleation mode + units: kg kg**-1 + description: Profile of mixing ratio of organic carbon aerosol for nucleation mode + (UKCA_MODE aerosol model) + access_ids: [] + origin_ids: + - 98 +- id: 210058 + shortname: monot + longname: Monoterpene precursor mixing ratio + units: kg kg**-1 + description: Profile of mixing ratio of monoterpene precursor (UKCA_MODE aerosol + model) + access_ids: [] + origin_ids: + - 98 +- id: 210059 + shortname: soapr + longname: Secondary organic precursor mixing ratio + units: kg kg**-1 + description: Profile of mixing ratio of secondary organic aerosol precursors (UKCA_MODE + aerosol model) + access_ids: [] + origin_ids: + - 98 +- id: 210060 + shortname: injh + longname: Injection height (from IS4FIRES) + units: m + description: Injection height (from IS4FIRES (Sofiev et al., 2012)) + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 210061 + shortname: co2 + longname: Carbon dioxide mass mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210062 + shortname: ch4 + longname: Methane + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210063 + shortname: n2o + longname: Nitrous oxide + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210064 + shortname: tcco2 + longname: CO2 column-mean molar fraction + units: ppm + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210065 + shortname: tcch4 + longname: CH4 column-mean molar fraction + units: ppb + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210066 + shortname: tcn2o + longname: Total column Nitrous oxide + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210067 + shortname: co2of + longname: Ocean flux of Carbon Dioxide + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210068 + shortname: co2nbf + longname: Natural biosphere flux of Carbon Dioxide + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210069 + shortname: co2apf + longname: Anthropogenic emissions of Carbon Dioxide + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210070 + shortname: ch4f + longname: Methane Surface Fluxes + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210071 + shortname: kch4 + longname: Methane loss rate due to radical hydroxyl (OH) + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210072 + shortname: pm1 + longname: Particulate matter d <= 1 um + units: kg m**-3 + description: '' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 210073 + shortname: pm2p5 + longname: Particulate matter d <= 2.5 um + units: kg m**-3 + description: '' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 210074 + shortname: pm10 + longname: Particulate matter d <= 10 um + units: kg m**-3 + description: '' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 210079 + shortname: vafire + longname: Wildfire viewing angle of observation + units: deg + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 210080 + shortname: co2fire + longname: Wildfire flux of Carbon Dioxide + units: kg m**-2 s**-1 + description: Wildfire flux of Carbon Dioxide + access_ids: [] + origin_ids: + - 98 +- id: 210081 + shortname: cofire + longname: Wildfire flux of Carbon Monoxide + units: kg m**-2 s**-1 + description: Wildfire flux of Carbon Monoxide + access_ids: [] + origin_ids: + - 98 +- id: 210082 + shortname: ch4fire + longname: Wildfire flux of Methane + units: kg m**-2 s**-1 + description: Wildfire flux of Methane + access_ids: [] + origin_ids: + - 98 +- id: 210083 + shortname: nmhcfire + longname: Wildfire flux of Non-Methane Hydro-Carbons + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210084 + shortname: h2fire + longname: Wildfire flux of Hydrogen + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210085 + shortname: noxfire + longname: Wildfire flux of Nitrogen Oxides NOx + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210086 + shortname: n2ofire + longname: Wildfire flux of Nitrous Oxide + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210087 + shortname: pm2p5fire + longname: Wildfire flux of Particulate Matter PM2.5 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210088 + shortname: tpmfire + longname: Wildfire flux of Total Particulate Matter + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210089 + shortname: tcfire + longname: Wildfire flux of Total Carbon in Aerosols + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210090 + shortname: ocfire + longname: Wildfire flux of Organic Carbon + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210091 + shortname: bcfire + longname: Wildfire flux of Black Carbon + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210092 + shortname: cfire + longname: Wildfire overall flux of burnt Carbon + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210093 + shortname: c4ffire + longname: Wildfire fraction of C4 plants + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210094 + shortname: vegfire + longname: Wildfire vegetation map index + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210095 + shortname: ccfire + longname: Wildfire Combustion Completeness + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210096 + shortname: flfire + longname: 'Wildfire Fuel Load: Carbon per unit area' + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210097 + shortname: offire + longname: Wildfire fraction of area observed + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210098 + shortname: nofrp + longname: Number of positive FRP pixels per grid cell + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210099 + shortname: frpfire + longname: Wildfire radiative power + units: W m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 210100 + shortname: crfire + longname: Wildfire combustion rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210101 + shortname: maxfrpfire + longname: Wildfire radiative power maximum + units: W + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210102 + shortname: so2fire + longname: Wildfire flux of Sulfur Dioxide + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210103 + shortname: ch3ohfire + longname: Wildfire Flux of Methanol (CH3OH) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210104 + shortname: c2h5ohfire + longname: Wildfire Flux of Ethanol (C2H5OH) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210105 + shortname: c3h8fire + longname: Wildfire Flux of Propane (C3H8) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210106 + shortname: c2h4fire + longname: Wildfire Flux of Ethene (C2H4) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210107 + shortname: c3h6fire + longname: Wildfire Flux of Propene (C3H6) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210108 + shortname: c5h8fire + longname: Wildfire Flux of Isoprene (C5H8) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210109 + shortname: terpenesfire + longname: Wildfire Flux of Terpenes (C5H8)n + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210110 + shortname: toluenefire + longname: Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) + units: kg m**-2 s**-1 + description: 'CAVE: MOZART lumped toluene species, incorporating benzene, toluene, + xylene' + access_ids: [] + origin_ids: + - 98 +- id: 210111 + shortname: hialkenesfire + longname: Wildfire Flux of Higher Alkenes (CnH2n, C>=4) + units: kg m**-2 s**-1 + description: 'Derived from summed emission factors of all alkenes (C>=4) specified + in Andreae and Merlet (2001) which are not contained in the Toluene_lump group. + These are: Butenes (1-butene + i-butene + tr-2-butene + cis-2-butene) (C4H8), + Pentenes (1-pentene + 2-pentene) (C5H10), Hexene (C6H12), Octene (C8H16)' + access_ids: [] + origin_ids: + - 98 +- id: 210112 + shortname: hialkanesfire + longname: Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) + units: kg m**-2 s**-1 + description: 'Derived from summed emission factors of all alkanes (C>=4) specified + in Andreae and Merlet (2001). These are: Butanes (n-butane + i-butane) (C4H10), + Pentanes (n-pentane + i-pentane) (C5H12), Hexane (n-hexane + i-hexane) (C6H14), + Heptane (C7H16)' + access_ids: [] + origin_ids: + - 98 +- id: 210113 + shortname: ch2ofire + longname: Wildfire Flux of Formaldehyde (CH2O) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210114 + shortname: c2h4ofire + longname: Wildfire Flux of Acetaldehyde (C2H4O) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210115 + shortname: c3h6ofire + longname: Wildfire Flux of Acetone (C3H6O) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210116 + shortname: nh3fire + longname: Wildfire Flux of Ammonia (NH3) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210117 + shortname: c2h6sfire + longname: Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210118 + shortname: c2h6fire + longname: Wildfire Flux of Ethane (C2H6) + units: kg m**-2 s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 210119 + shortname: mami + longname: Mean height of maximum injection + units: m + description: Metres above surface + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 210120 + shortname: apt + longname: Plume top height above surface + units: m + description: Metres above surface + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 210121 + shortname: no2 + longname: Nitrogen dioxide mass mixing ratio + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 210122 + shortname: so2 + longname: Sulphur dioxide mass mixing ratio + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 210123 + shortname: co + longname: Carbon monoxide mass mixing ratio + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 210124 + shortname: hcho + longname: Formaldehyde + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210125 + shortname: tcno2 + longname: Total column Nitrogen dioxide + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210126 + shortname: tcso2 + longname: Total column Sulphur dioxide + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210127 + shortname: tcco + longname: Total column Carbon monoxide + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210128 + shortname: tchcho + longname: Total column Formaldehyde + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210129 + shortname: nox + longname: Nitrogen Oxides + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210130 + shortname: tcnox + longname: Total Column Nitrogen Oxides + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210131 + shortname: grg1 + longname: Reactive tracer 1 mass mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210132 + shortname: tcgrg1 + longname: Total column GRG tracer 1 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210133 + shortname: grg2 + longname: Reactive tracer 2 mass mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210134 + shortname: tcgrg2 + longname: Total column GRG tracer 2 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210135 + shortname: grg3 + longname: Reactive tracer 3 mass mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210136 + shortname: tcgrg3 + longname: Total column GRG tracer 3 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210137 + shortname: grg4 + longname: Reactive tracer 4 mass mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210138 + shortname: tcgrg4 + longname: Total column GRG tracer 4 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210139 + shortname: grg5 + longname: Reactive tracer 5 mass mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210140 + shortname: tcgrg5 + longname: Total column GRG tracer 5 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210141 + shortname: grg6 + longname: Reactive tracer 6 mass mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210142 + shortname: tcgrg6 + longname: Total column GRG tracer 6 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210143 + shortname: grg7 + longname: Reactive tracer 7 mass mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210144 + shortname: tcgrg7 + longname: Total column GRG tracer 7 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210145 + shortname: grg8 + longname: Reactive tracer 8 mass mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210146 + shortname: tcgrg8 + longname: Total column GRG tracer 8 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210147 + shortname: grg9 + longname: Reactive tracer 9 mass mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210148 + shortname: tcgrg9 + longname: Total column GRG tracer 9 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210149 + shortname: grg10 + longname: Reactive tracer 10 mass mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210150 + shortname: tcgrg10 + longname: Total column GRG tracer 10 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210151 + shortname: sfnox + longname: Surface flux Nitrogen oxides + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210152 + shortname: sfno2 + longname: Surface flux Nitrogen dioxide + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210153 + shortname: sfso2 + longname: Surface flux Sulphur dioxide + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210154 + shortname: sfco2 + longname: Surface flux Carbon monoxide + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210155 + shortname: sfhcho + longname: Surface flux Formaldehyde + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210156 + shortname: sfgo3 + longname: Surface flux GEMS Ozone + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210157 + shortname: sfgr1 + longname: Surface flux reactive tracer 1 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210158 + shortname: sfgr2 + longname: Surface flux reactive tracer 2 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210159 + shortname: sfgr3 + longname: Surface flux reactive tracer 3 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210160 + shortname: sfgr4 + longname: Surface flux reactive tracer 4 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210161 + shortname: sfgr5 + longname: Surface flux reactive tracer 5 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210162 + shortname: sfgr6 + longname: Surface flux reactive tracer 6 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210163 + shortname: sfgr7 + longname: Surface flux reactive tracer 7 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210164 + shortname: sfgr8 + longname: Surface flux reactive tracer 8 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210165 + shortname: sfgr9 + longname: Surface flux reactive tracer 9 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210166 + shortname: sfgr10 + longname: Surface flux reactive tracer 10 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210167 + shortname: frpdayfire + longname: Wildfire day-time radiative power + units: W m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 210169 + shortname: frpngtfire + longname: Wildfire night-time radiative power + units: W m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 210170 + shortname: VSO2 + longname: Volcanic sulfur dioxide mass mixing ratio + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 210177 + shortname: frpdayivar + longname: Wildfire day-time inverse variance of radiative power + units: W**-2 m**4 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 210179 + shortname: frpngtivar + longname: Wildfire night-time inverse variance of radiative power + units: W**-2 m**4 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 210181 + shortname: ra + longname: Radon + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210182 + shortname: sf6 + longname: Sulphur Hexafluoride + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210183 + shortname: tcra + longname: Total column Radon + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210184 + shortname: tcsf6 + longname: Total column Sulphur Hexafluoride + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210185 + shortname: sf6apf + longname: Anthropogenic Emissions of Sulphur Hexafluoride + units: kg m**-2 s**-1 + description: Anthropogenic Emissions of Sulphur Hexafluoride + access_ids: [] + origin_ids: + - 98 +- id: 210186 + shortname: aluvpi + longname: UV visible albedo for direct radiation, isotropic component (climatological) + units: (0 - 1) + description: 'Albedo is a measure of the reflectivity of the Earth''s surface. This + parameter is the isotropic component of the snow-free land-surface albedo for + solar radiation with wavelength shorter than 0.7 µm (microns, 1 millionth of a + metre).

In the ECMWF Integrated Forecasting System (IFS) albedo is dealt + with separately for solar radiation with wavelengths greater/less than 0.7µm. + Within each of these two bands, the dependence of the albedo of the snow-free + land surface on solar zenith angle is parameterized using three coefficients: + an isotropic component, a volumetric component and a geometric component. This + leads to a total of six components. The IFS first uses them to compute the snow-free + land-surface albedo to direct and diffuse downwelling solar radiation, and then + modifies these albedos to account for water, ice and snow. Climatological (observed + values averaged over a period of several years) values are used for these albedo + components, which were taken from observations by the MODIS satellite instrument + and vary from month to month through the year. See + further documentation

Solar radiation at the surface can be direct + or diffuse. Solar radiation can be scattered in all directions by particles in + the atmosphere, some of which reaches the surface (diffuse solar radiation). Some + solar radiation reaches the surface without being scattered (direct solar radiation).' + access_ids: + - dissemination + origin_ids: + - -80 + - -50 + - 98 +- id: 210187 + shortname: aluvpv + longname: UV visible albedo for direct radiation, volumetric component (climatological) + units: (0 - 1) + description: 'Albedo is a measure of the reflectivity of the Earth''s surface. This + parameter is the volumetric component of the snow-free land-surface albedo for + solar radiation with wavelength shorter than 0.7 µm (microns, 1 millionth of a + metre).

In the ECMWF Integrated Forecasting System (IFS) albedo is dealt + with separately for solar radiation with wavelengths greater/less than 0.7µm. + Within each of these two bands, the dependence of the albedo of the snow-free + land surface on solar zenith angle is parameterized using three coefficients: + an isotropic component, a volumetric component and a geometric component. This + leads to a total of six components. The IFS first uses them to compute the snow-free + land-surface albedo to direct and diffuse downwelling solar radiation, and then + modifies these albedos to account for water, ice and snow. Climatological (observed + values averaged over a period of several years) values are used for these albedo + components, which were taken from observations by the MODIS satellite instrument + and vary from month to month through the year. See + further documentation

Solar radiation at the surface can be direct + or diffuse. Solar radiation can be scattered in all directions by particles in + the atmosphere, some of which reaches the surface (diffuse solar radiation). Some + solar radiation reaches the surface without being scattered (direct solar radiation).' + access_ids: + - dissemination + origin_ids: + - -80 + - -50 + - 98 +- id: 210188 + shortname: aluvpg + longname: UV visible albedo for direct radiation, geometric component (climatological) + units: (0 - 1) + description: 'Albedo is a measure of the reflectivity of the Earth''s surface. This + parameter is the volumetric component of the snow-free land-surface albedo for + solar radiation with wavelength shorter than 0.7 µm (microns, 1 millionth of a + metre).

In the ECMWF Integrated Forecasting System (IFS) albedo is dealt + with separately for solar radiation with wavelengths greater/less than 0.7µm. + Within each of these two bands, the dependence of the albedo of the snow-free + land surface on solar zenith angle is parameterized using three coefficients: + an isotropic component, a volumetric component and a geometric component. This + leads to a total of six components. The IFS first uses them to compute the snow-free + land-surface albedo to direct and diffuse downwelling solar radiation, and then + modifies these albedos to account for water, ice and snow. Climatological (observed + values averaged over a period of several years) values are used for these albedo + components, which were taken from observations by the MODIS satellite instrument + and vary from month to month through the year. See + further documentation

Solar radiation at the surface can be direct + or diffuse. Solar radiation can be scattered in all directions by particles in + the atmosphere, some of which reaches the surface (diffuse solar radiation). Some + solar radiation reaches the surface without being scattered (direct solar radiation).' + access_ids: + - dissemination + origin_ids: + - -80 + - -50 + - 98 +- id: 210189 + shortname: alnipi + longname: Near IR albedo for direct radiation, isotropic component (climatological) + units: (0 - 1) + description: 'Albedo is a measure of the reflectivity of the Earth''s surface. This + parameter is the isotropic component of the snow-free land-surface albedo for + solar radiation with wavelength longer than 0.7 µm (microns, 1 millionth of a + metre).

In the ECMWF Integrated Forecasting System (IFS) albedo is dealt + with separately for solar radiation with wavelengths greater/less than 0.7µm. + Within each of these two bands, the dependence of the albedo of the snow-free + land surface on solar zenith angle is parameterized using three coefficients: + an isotropic component, a volumetric component and a geometric component. This + leads to a total of six components. The IFS first uses them to compute the snow-free + land-surface albedo to direct and diffuse downwelling solar radiation, and then + modifies these albedos to account for water, ice and snow. Climatological (observed + values averaged over a period of several years) values are used for these albedo + components, which were taken from observations by the MODIS satellite instrument + and vary from month to month through the year. See + further documentation

Solar radiation at the surface can be direct + or diffuse. Solar radiation can be scattered in all directions by particles in + the atmosphere, some of which reaches the surface (diffuse solar radiation). Some + solar radiation reaches the surface without being scattered (direct solar radiation).' + access_ids: + - dissemination + origin_ids: + - -80 + - -50 + - 98 +- id: 210190 + shortname: alnipv + longname: Near IR albedo for direct radiation, volumetric component (climatological) + units: (0 - 1) + description: 'Albedo is a measure of the reflectivity of the Earth''s surface. This + parameter is the volumetric component of the snow-free land-surface albedo for + solar radiation with wavelength greater than 0.7 µm (microns, 1 millionth of a + metre).

In the ECMWF Integrated Forecasting System (IFS) albedo is dealt + with separately for solar radiation with wavelengths greater/less than 0.7µm. + Within each of these two bands, the dependence of the albedo of the snow-free + land surface on solar zenith angle is parameterized using three coefficients: + an isotropic component, a volumetric component and a geometric component. This + leads to a total of six components. The IFS first uses them to compute the snow-free + land-surface albedo to direct and diffuse downwelling solar radiation, and then + modifies these albedos to account for water, ice and snow. Climatological (observed + values averaged over a period of several years) values are used for these albedo + components, which vary from month to month through the year. See + further documentation

Solar radiation at the surface can be direct + or diffuse. Solar radiation can be scattered in all directions by particles in + the atmosphere, some of which reaches the surface (diffuse solar radiation). Some + solar radiation reaches the surface without being scattered (direct solar radiation).' + access_ids: + - dissemination + origin_ids: + - -80 + - -50 + - 98 +- id: 210191 + shortname: alnipg + longname: Near IR albedo for direct radiation, geometric component (climatological) + units: (0 - 1) + description: 'Albedo is a measure of the reflectivity of the Earth''s surface. This + parameter is the geometric component of the snow-free land-surface albedo for + solar radiation with wavelength greater than 0.7 µm (microns, 1 millionth of a + metre).

In the ECMWF Integrated Forecasting System (IFS) albedo is dealt + with separately for solar radiation with wavelengths greater/less than 0.7µm. + Within each of these two bands, the dependence of the albedo of the snow-free + land surface on solar zenith angle is parameterized using three coefficients: + an isotropic component, a volumetric component and a geometric component. This + leads to a total of six components. The IFS first uses them to compute the snow-free + land-surface albedo to direct and diffuse downwelling solar radiation, and then + modifies these albedos to account for water, ice and snow. Climatological (observed + values averaged over a period of several years) values are used for these albedo + components, which vary from month to month through the year. See + further documentation

Solar radiation at the surface can be direct + or diffuse. Solar radiation can be scattered in all directions by particles in + the atmosphere, some of which reaches the surface (diffuse solar radiation). Some + solar radiation reaches the surface without being scattered (direct solar radiation).' + access_ids: + - dissemination + origin_ids: + - -80 + - -50 + - 98 +- id: 210192 + shortname: aluvdi + longname: UV visible albedo for diffuse radiation, isotropic component (climatological) + units: (0 - 1) + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 210193 + shortname: aluvdv + longname: UV visible albedo for diffuse radiation, volumetric component (climatological) + units: (0 - 1) + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 210194 + shortname: aluvdg + longname: UV visible albedo for diffuse radiation, geometric component (climatological) + units: (0 - 1) + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 210195 + shortname: alnidi + longname: Near IR albedo for diffuse radiation, isotropic component (climatological) + units: (0 - 1) + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 210196 + shortname: alnidv + longname: Near IR albedo for diffuse radiation, volumetric component (climatological) + units: (0 - 1) + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 210197 + shortname: alnidg + longname: Near IR albedo for diffuse radiation, geometric component (climatological) + units: (0 - 1) + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 210198 + shortname: aluvd_p + longname: UV visible albedo for diffuse radiation (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 210199 + shortname: aluvp_p + longname: UV visible albedo for direct radiation (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 210200 + shortname: aluvpg_p + longname: UV visible albedo for direct radiation, geometric component (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 210201 + shortname: aluvpi_p + longname: UV visible albedo for direct radiation, isotropic component (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 210202 + shortname: aluvpv_p + longname: UV visible albedo for direct radiation, volumetric component (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 210203 + shortname: go3 + longname: Ozone mass mixing ratio (full chemistry scheme) + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 210206 + shortname: gtco3 + longname: GEMS Total column ozone + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210207 + shortname: aod550 + longname: Total Aerosol Optical Depth at 550nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210208 + shortname: ssaod550 + longname: Sea Salt Aerosol Optical Depth at 550nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210209 + shortname: duaod550 + longname: Dust Aerosol Optical Depth at 550nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210210 + shortname: omaod550 + longname: Organic Matter Aerosol Optical Depth at 550nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210211 + shortname: bcaod550 + longname: Black Carbon Aerosol Optical Depth at 550nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210212 + shortname: suaod550 + longname: Sulphate Aerosol Optical Depth at 550nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210213 + shortname: aod469 + longname: Total Aerosol Optical Depth at 469nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210214 + shortname: aod670 + longname: Total Aerosol Optical Depth at 670nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210215 + shortname: aod865 + longname: Total Aerosol Optical Depth at 865nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210216 + shortname: aod1240 + longname: Total Aerosol Optical Depth at 1240nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210217 + shortname: aod340 + longname: Total aerosol optical depth at 340 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210218 + shortname: aod355 + longname: Total aerosol optical depth at 355 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210219 + shortname: aod380 + longname: Total aerosol optical depth at 380 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210220 + shortname: aod400 + longname: Total aerosol optical depth at 400 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210221 + shortname: aod440 + longname: Total aerosol optical depth at 440 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210222 + shortname: aod500 + longname: Total aerosol optical depth at 500 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210223 + shortname: aod532 + longname: Total aerosol optical depth at 532 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210224 + shortname: aod645 + longname: Total aerosol optical depth at 645 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210225 + shortname: aod800 + longname: Total aerosol optical depth at 800 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210226 + shortname: aod858 + longname: Total aerosol optical depth at 858 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210227 + shortname: aod1020 + longname: Total aerosol optical depth at 1020 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210228 + shortname: aod1064 + longname: Total aerosol optical depth at 1064 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210229 + shortname: aod1640 + longname: Total aerosol optical depth at 1640 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210230 + shortname: aod2130 + longname: Total aerosol optical depth at 2130 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210231 + shortname: c7h8fire + longname: Wildfire Flux of Toluene (C7H8) + units: kg m**-2 s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 210232 + shortname: c6h6fire + longname: Wildfire Flux of Benzene (C6H6) + units: kg m**-2 s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 210233 + shortname: c8h10fire + longname: Wildfire Flux of Xylene (C8H10) + units: kg m**-2 s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 210234 + shortname: c4h8fire + longname: Wildfire Flux of Butenes (C4H8) + units: kg m**-2 s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 210235 + shortname: c5h10fire + longname: Wildfire Flux of Pentenes (C5H10) + units: kg m**-2 s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 210236 + shortname: c6h12fire + longname: Wildfire Flux of Hexene (C6H12) + units: kg m**-2 s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 210237 + shortname: c8h16fire + longname: Wildfire Flux of Octene (C8H16) + units: kg m**-2 s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 210238 + shortname: c4h10fire + longname: Wildfire Flux of Butanes (C4H10) + units: kg m**-2 s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 210239 + shortname: c5h12fire + longname: Wildfire Flux of Pentanes (C5H12) + units: kg m**-2 s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 210240 + shortname: c6h14fire + longname: Wildfire Flux of Hexanes (C6H14) + units: kg m**-2 s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 210241 + shortname: c7h16fire + longname: Wildfire Flux of Heptane (C7H16) + units: kg m**-2 s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 210242 + shortname: apb + longname: Plume bottom height above surface + units: m + description: Metres above surface + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 210243 + shortname: vsuaod550 + longname: Volcanic sulphate aerosol optical depth at 550 nm + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210244 + shortname: vashaod550 + longname: Volcanic ash optical depth at 550 nm + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210245 + shortname: taedec550 + longname: Profile of total aerosol dry extinction coefficient + units: m**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210246 + shortname: taedab550 + longname: Profile of total aerosol dry absorption coefficient + units: m**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 210247 + shortname: aermr16 + longname: Nitrate fine mode aerosol mass mixing ratio + units: kg kg**-1 + description: '' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210248 + shortname: aermr17 + longname: Nitrate coarse mode aerosol mass mixing ratio + units: kg kg**-1 + description: '' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 210249 + shortname: aermr18 + longname: Ammonium aerosol mass mixing ratio + units: kg kg**-1 + description: '' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 210250 + shortname: niaod550 + longname: Nitrate aerosol optical depth at 550 nm + units: dimensionless + description: '' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 210251 + shortname: amaod550 + longname: Ammonium aerosol optical depth at 550 nm + units: dimensionless + description: '' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 210252 + shortname: aermr19 + longname: Biogenic secondary organic aerosol mass mixing ratio + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 210253 + shortname: aermr20 + longname: Anthropogenic secondary organic aerosol mass mixing ratio + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 210260 + shortname: alnid_p + longname: Near IR albedo for diffuse radiation (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 210261 + shortname: alnip_p + longname: Near IR albedo for direct radiation (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 210262 + shortname: alnipg_p + longname: Near IR albedo for direct radiation, geometric component (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 210263 + shortname: alnipi_p + longname: Near IR albedo for direct radiation, isotropic component (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 210264 + shortname: alnipv_p + longname: Near IR albedo for direct radiation, volumetric component (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 211001 + shortname: aermr01diff + longname: Sea Salt Aerosol (0.03 - 0.5 um) Mixing Ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211002 + shortname: aermr02diff + longname: Sea Salt Aerosol (0.5 - 5 um) Mixing Ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211003 + shortname: aermr03diff + longname: Sea Salt Aerosol (5 - 20 um) Mixing Ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211004 + shortname: aermr04diff + longname: Dust Aerosol (0.03 - 0.55 um) Mixing Ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211005 + shortname: aermr05diff + longname: Dust Aerosol (0.55 - 0.9 um) Mixing Ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211006 + shortname: aermr06diff + longname: Dust Aerosol (0.9 - 20 um) Mixing Ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211007 + shortname: aermr07diff + longname: Hydrophilic Organic Matter Aerosol Mixing Ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211008 + shortname: aermr08diff + longname: Hydrophobic Organic Matter Aerosol Mixing Ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211009 + shortname: aermr09diff + longname: Hydrophilic Black Carbon Aerosol Mixing Ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211010 + shortname: aermr10diff + longname: Hydrophobic Black Carbon Aerosol Mixing Ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211011 + shortname: aermr11diff + longname: Sulphate Aerosol Mixing Ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211012 + shortname: aermr12diff + longname: Aerosol type 12 mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211013 + shortname: aermr13diff + longname: Aerosol type 13 mass mixing ratio + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 211014 + shortname: aermr14diff + longname: Aerosol type 14 mass mixing ratio + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 211015 + shortname: aermr15diff + longname: Aerosol type 15 mass mixing ratio + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 211016 + shortname: aergn01diff + longname: Aerosol type 1 source/gain accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211017 + shortname: aergn02diff + longname: Aerosol type 2 source/gain accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211018 + shortname: aergn03diff + longname: Aerosol type 3 source/gain accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211019 + shortname: aergn04diff + longname: Aerosol type 4 source/gain accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211020 + shortname: aergn05diff + longname: Aerosol type 5 source/gain accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211021 + shortname: aergn06diff + longname: Aerosol type 6 source/gain accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211022 + shortname: aergn07diff + longname: Aerosol type 7 source/gain accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211023 + shortname: aergn08diff + longname: Aerosol type 8 source/gain accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211024 + shortname: aergn09diff + longname: Aerosol type 9 source/gain accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211025 + shortname: aergn10diff + longname: Aerosol type 10 source/gain accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211026 + shortname: aergn11diff + longname: Aerosol type 11 source/gain accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211027 + shortname: aergn12diff + longname: Aerosol type 12 source/gain accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211028 + shortname: aerpr03diff + longname: SO4 aerosol precursor mass mixing ratio + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 211029 + shortname: aerwv01diff + longname: Water vapour mixing ratio for hydrophilic aerosols in mode 1 + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 211030 + shortname: aerwv02diff + longname: Water vapour mixing ratio for hydrophilic aerosols in mode 2 + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 211031 + shortname: aerls01diff + longname: Aerosol type 1 sink/loss accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211032 + shortname: aerls02diff + longname: Aerosol type 2 sink/loss accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211033 + shortname: aerls03diff + longname: Aerosol type 3 sink/loss accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211034 + shortname: aerls04diff + longname: Aerosol type 4 sink/loss accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211035 + shortname: aerls05diff + longname: Aerosol type 5 sink/loss accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211036 + shortname: aerls06diff + longname: Aerosol type 6 sink/loss accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211037 + shortname: aerls07diff + longname: Aerosol type 7 sink/loss accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211038 + shortname: aerls08diff + longname: Aerosol type 8 sink/loss accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211039 + shortname: aerls09diff + longname: Aerosol type 9 sink/loss accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211040 + shortname: aerls10diff + longname: Aerosol type 10 sink/loss accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211041 + shortname: aerls11diff + longname: Aerosol type 11 sink/loss accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211042 + shortname: aerls12diff + longname: Aerosol type 12 sink/loss accumulated + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211043 + shortname: emdmsdiff + longname: DMS surface emission + units: kg m**-2 s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 211044 + shortname: aerwv03diff + longname: Water vapour mixing ratio for hydrophilic aerosols in mode 3 + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 211045 + shortname: aerwv04diff + longname: Water vapour mixing ratio for hydrophilic aerosols in mode 4 + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 211046 + shortname: aerprdiff + longname: Aerosol precursor mixing ratio + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 211047 + shortname: aersmdiff + longname: Aerosol small mode mixing ratio + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 211048 + shortname: aerlgdiff + longname: Aerosol large mode mixing ratio + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 211049 + shortname: aodprdiff + longname: Aerosol precursor optical depth + units: dimensionless + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 211050 + shortname: aodsmdiff + longname: Aerosol small mode optical depth + units: dimensionless + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 211051 + shortname: aodlgdiff + longname: Aerosol large mode optical depth + units: dimensionless + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 211052 + shortname: aerdepdiff + longname: Dust emission potential + units: kg s**2 m**-5 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211053 + shortname: aerltsdiff + longname: Lifting threshold speed + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211054 + shortname: aersccdiff + longname: Soil clay content + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211055 + shortname: '~' + longname: Experimental product + units: '~' + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 211056 + shortname: '~' + longname: Experimental product + units: '~' + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 211059 + shortname: h2odiff + longname: Water vapour (chemistry) difference + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211061 + shortname: co2diff + longname: Carbon Dioxide + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 211062 + shortname: ch4diff + longname: Methane + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 211063 + shortname: n2odiff + longname: Nitrous oxide + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 211064 + shortname: tcco2diff + longname: Total column Carbon Dioxide + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211065 + shortname: tcch4diff + longname: Total column Methane + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211066 + shortname: tcn2odiff + longname: Total column Nitrous oxide + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211067 + shortname: co2ofdiff + longname: Ocean flux of Carbon Dioxide + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211068 + shortname: co2nbfdiff + longname: Natural biosphere flux of Carbon Dioxide + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211069 + shortname: co2apfdiff + longname: Anthropogenic emissions of Carbon Dioxide + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211070 + shortname: ch4fdiff + longname: Methane Surface Fluxes + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211071 + shortname: kch4diff + longname: Methane loss rate due to radical hydroxyl (OH) + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211080 + shortname: co2firediff + longname: Wildfire flux of Carbon Dioxide + units: kg m**-2 s**-1 + description: Wildfire flux of Carbon Dioxide + access_ids: [] + origin_ids: + - 98 +- id: 211081 + shortname: cofirediff + longname: Wildfire flux of Carbon Monoxide + units: kg m**-2 s**-1 + description: Wildfire flux of Carbon Monoxide + access_ids: [] + origin_ids: + - 98 +- id: 211082 + shortname: ch4firediff + longname: Wildfire flux of Methane + units: kg m**-2 s**-1 + description: Wildfire flux of Methane + access_ids: [] + origin_ids: + - 98 +- id: 211083 + shortname: nmhcfirediff + longname: Wildfire flux of Non-Methane Hydro-Carbons + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211084 + shortname: h2firediff + longname: Wildfire flux of Hydrogen + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211085 + shortname: noxfirediff + longname: Wildfire flux of Nitrogen Oxides NOx + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211086 + shortname: n2ofirediff + longname: Wildfire flux of Nitrous Oxide + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211087 + shortname: pm2p5firediff + longname: Wildfire flux of Particulate Matter PM2.5 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211088 + shortname: tpmfirediff + longname: Wildfire flux of Total Particulate Matter + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211089 + shortname: tcfirediff + longname: Wildfire flux of Total Carbon in Aerosols + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211090 + shortname: ocfirediff + longname: Wildfire flux of Organic Carbon + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211091 + shortname: bcfirediff + longname: Wildfire flux of Black Carbon + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211092 + shortname: cfirediff + longname: Wildfire overall flux of burnt Carbon + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211093 + shortname: c4ffirediff + longname: Wildfire fraction of C4 plants + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211094 + shortname: vegfirediff + longname: Wildfire vegetation map index + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211095 + shortname: ccfirediff + longname: Wildfire Combustion Completeness + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211096 + shortname: flfirediff + longname: 'Wildfire Fuel Load: Carbon per unit area' + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211097 + shortname: offirediff + longname: Wildfire fraction of area observed + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211098 + shortname: oafirediff + longname: Wildfire observed area + units: m**2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211099 + shortname: frpfirediff + longname: Wildfire radiative power + units: W m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 211100 + shortname: crfirediff + longname: Wildfire combustion rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211101 + shortname: maxfrpfirediff + longname: Wildfire radiative power maximum + units: W + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211102 + shortname: so2firediff + longname: Wildfire flux of Sulfur Dioxide + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211103 + shortname: ch3ohfirediff + longname: Wildfire Flux of Methanol (CH3OH) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211104 + shortname: c2h5ohfirediff + longname: Wildfire Flux of Ethanol (C2H5OH) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211105 + shortname: c3h8firediff + longname: Wildfire Flux of Propane (C3H8) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211106 + shortname: c2h4firediff + longname: Wildfire Flux of Ethene (C2H4) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211107 + shortname: c3h6firediff + longname: Wildfire Flux of Propene (C3H6) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211108 + shortname: c5h8firediff + longname: Wildfire Flux of Isoprene (C5H8) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211109 + shortname: terpenesfirediff + longname: Wildfire Flux of Terpenes (C5H8)n + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211110 + shortname: toluenefirediff + longname: Wildfire Flux of Toluene_lump (C7H8+ C6H6 + C8H10) + units: kg m**-2 s**-1 + description: 'CAVE: MOZART lumped toluene species, incorporating benzene, toluene, + xylene' + access_ids: [] + origin_ids: + - 98 +- id: 211111 + shortname: hialkenesfirediff + longname: Wildfire Flux of Higher Alkenes (CnH2n, C>=4) + units: kg m**-2 s**-1 + description: 'Derived from summed emission factors of all alkenes (C>=4) specified + in Andreae and Merlet (2001) which are not contained in the Toluene_lump group. + These are: Butenes (1-butene + i-butene + tr-2-butene + cis-2-butene) (C4H8), + Pentenes (1-pentene + 2-pentene) (C5H10), Hexene (C6H12), Octene (C8H16)' + access_ids: [] + origin_ids: + - 98 +- id: 211112 + shortname: hialkanesfirediff + longname: Wildfire Flux of Higher Alkanes (CnH2n+2, C>=4) + units: kg m**-2 s**-1 + description: 'Derived from summed emission factors of all alkanes (C>=4) specified + in Andreae and Merlet (2001). These are: Butanes (n-butane + i-butane) (C4H10), + Pentanes (n-pentane + i-pentane) (C5H12), Hexane (n-hexane + i-hexane) (C6H14), + Heptane (C7H16)' + access_ids: [] + origin_ids: + - 98 +- id: 211113 + shortname: ch2ofirediff + longname: Wildfire Flux of Formaldehyde (CH2O) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211114 + shortname: c2h4ofirediff + longname: Wildfire Flux of Acetaldehyde (C2H4O) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211115 + shortname: c3h6ofirediff + longname: Wildfire Flux of Acetone (C3H6O) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211116 + shortname: nh3firediff + longname: Wildfire Flux of Ammonia (NH3) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211117 + shortname: c2h6sfirediff + longname: Wildfire Flux of Dimethyl Sulfide (DMS) (C2H6S) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211118 + shortname: c2h6firediff + longname: Wildfire Flux of Ethane (C2H6) + units: kg m**-2 s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 211119 + shortname: alediff + longname: Altitude of emitter + units: m + description: Metres above sea level + access_ids: [] + origin_ids: + - 98 +- id: 211120 + shortname: aptdiff + longname: Altitude of plume top + units: m + description: Metres above sea level + access_ids: [] + origin_ids: + - 98 +- id: 211121 + shortname: no2diff + longname: Nitrogen dioxide mass mixing ratio difference + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 211122 + shortname: so2diff + longname: Sulphur dioxide mass mixing ratio difference + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 211123 + shortname: codiff + longname: Carbon monoxide mass mixing ratio difference + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 211124 + shortname: hchodiff + longname: Formaldehyde + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 211125 + shortname: tcno2diff + longname: Total column Nitrogen dioxide + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211126 + shortname: tcso2diff + longname: Total column Sulphur dioxide + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211127 + shortname: tccodiff + longname: Total column Carbon monoxide + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211128 + shortname: tchchodiff + longname: Total column Formaldehyde + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211129 + shortname: noxdiff + longname: Nitrogen Oxides + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211130 + shortname: tcnoxdiff + longname: Total Column Nitrogen Oxides + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211131 + shortname: grg1diff + longname: Reactive tracer 1 mass mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211132 + shortname: tcgrg1diff + longname: Total column GRG tracer 1 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211133 + shortname: grg2diff + longname: Reactive tracer 2 mass mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211134 + shortname: tcgrg2diff + longname: Total column GRG tracer 2 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211135 + shortname: grg3diff + longname: Reactive tracer 3 mass mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211136 + shortname: tcgrg3diff + longname: Total column GRG tracer 3 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211137 + shortname: grg4diff + longname: Reactive tracer 4 mass mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211138 + shortname: tcgrg4diff + longname: Total column GRG tracer 4 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211139 + shortname: grg5diff + longname: Reactive tracer 5 mass mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211140 + shortname: tcgrg5diff + longname: Total column GRG tracer 5 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211141 + shortname: grg6diff + longname: Reactive tracer 6 mass mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211142 + shortname: tcgrg6diff + longname: Total column GRG tracer 6 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211143 + shortname: grg7diff + longname: Reactive tracer 7 mass mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211144 + shortname: tcgrg7diff + longname: Total column GRG tracer 7 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211145 + shortname: grg8diff + longname: Reactive tracer 8 mass mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211146 + shortname: tcgrg8diff + longname: Total column GRG tracer 8 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211147 + shortname: grg9diff + longname: Reactive tracer 9 mass mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211148 + shortname: tcgrg9diff + longname: Total column GRG tracer 9 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211149 + shortname: grg10diff + longname: Reactive tracer 10 mass mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211150 + shortname: tcgrg10diff + longname: Total column GRG tracer 10 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211151 + shortname: sfnoxdiff + longname: Surface flux Nitrogen oxides + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211152 + shortname: sfno2diff + longname: Surface flux Nitrogen dioxide + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211153 + shortname: sfso2diff + longname: Surface flux Sulphur dioxide + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211154 + shortname: sfco2diff + longname: Surface flux Carbon monoxide + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211155 + shortname: sfhchodiff + longname: Surface flux Formaldehyde + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211156 + shortname: sfgo3diff + longname: Surface flux GEMS Ozone + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211157 + shortname: sfgr1diff + longname: Surface flux reactive tracer 1 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211158 + shortname: sfgr2diff + longname: Surface flux reactive tracer 2 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211159 + shortname: sfgr3diff + longname: Surface flux reactive tracer 3 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211160 + shortname: sfgr4diff + longname: Surface flux reactive tracer 4 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211161 + shortname: sfgr5diff + longname: Surface flux reactive tracer 5 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211162 + shortname: sfgr6diff + longname: Surface flux reactive tracer 6 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211163 + shortname: sfgr7diff + longname: Surface flux reactive tracer 7 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211164 + shortname: sfgr8diff + longname: Surface flux reactive tracer 8 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211165 + shortname: sfgr9diff + longname: Surface flux reactive tracer 9 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211166 + shortname: sfgr10diff + longname: Surface flux reactive tracer 10 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211170 + shortname: VSO2diff + longname: Volcanic sulfur dioxide mass mixing ratio increment + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 211181 + shortname: radiff + longname: Radon + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211182 + shortname: sf6diff + longname: Sulphur Hexafluoride + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211183 + shortname: tcradiff + longname: Total column Radon + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211184 + shortname: tcsf6diff + longname: Total column Sulphur Hexafluoride + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211185 + shortname: sf6apfdiff + longname: Anthropogenic Emissions of Sulphur Hexafluoride + units: kg m**-2 s**-1 + description: Anthropogenic Emissions of Sulphur Hexafluoride + access_ids: [] + origin_ids: + - 98 +- id: 211203 + shortname: go3diff + longname: Ozone mass mixing ratio difference (full chemistry scheme) + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 211206 + shortname: gtco3diff + longname: GEMS Total column ozone + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211207 + shortname: aod550diff + longname: Total Aerosol Optical Depth at 550nm + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211208 + shortname: ssaod550diff + longname: Sea Salt Aerosol Optical Depth at 550nm + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211209 + shortname: duaod550diff + longname: Dust Aerosol Optical Depth at 550nm + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211210 + shortname: omaod550diff + longname: Organic Matter Aerosol Optical Depth at 550nm + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211211 + shortname: bcaod550diff + longname: Black Carbon Aerosol Optical Depth at 550nm + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211212 + shortname: suaod550diff + longname: Sulphate Aerosol Optical Depth at 550nm + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211213 + shortname: aod469diff + longname: Total Aerosol Optical Depth at 469nm + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211214 + shortname: aod670diff + longname: Total Aerosol Optical Depth at 670nm + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211215 + shortname: aod865diff + longname: Total Aerosol Optical Depth at 865nm + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211216 + shortname: aod1240diff + longname: Total Aerosol Optical Depth at 1240nm + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 211247 + shortname: aermr16diff + longname: Nitrate fine mode aerosol mass mixing ratio + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 211248 + shortname: aermr17diff + longname: Nitrate coarse mode aerosol mass mixing ratio + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 211249 + shortname: aermr18diff + longname: Ammonium aerosol mass mixing ratio + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 211252 + shortname: aermr19diff + longname: Biogenic secondary organic aerosol mass mixing ratio increment + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 211253 + shortname: aermr20diff + longname: Anthropogenic secondary organic aerosol mass mixing ratio increment + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 212001 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212002 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212003 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212004 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212005 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212006 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212007 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212008 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212009 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212010 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212011 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212012 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212013 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212014 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212015 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212016 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212017 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212018 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212019 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212020 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212021 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212022 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212023 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212024 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212025 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212026 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212027 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212028 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212029 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212030 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212031 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212032 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212033 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212034 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212035 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212036 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212037 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212038 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212039 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212040 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212041 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212042 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212043 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212044 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212045 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212046 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212047 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212048 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212049 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212050 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212051 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212052 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212053 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212054 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212055 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212056 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212057 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212058 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212059 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212060 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212061 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212062 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212063 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212064 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212065 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212066 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212067 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212068 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212069 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212070 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212071 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212072 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212073 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212074 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212075 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212076 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212077 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212078 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212079 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212080 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212081 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212082 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212083 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212084 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212085 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212086 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212087 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212088 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212089 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212090 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212091 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212092 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212093 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212094 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212095 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212096 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212097 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212098 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212099 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212100 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212101 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212102 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212103 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212104 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212105 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212106 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212107 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212108 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212109 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212110 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212111 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212112 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212113 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212114 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212115 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212116 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212117 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212118 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212119 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212120 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212121 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212122 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212123 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212124 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212125 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212126 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212127 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212128 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212129 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212130 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212131 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212132 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212133 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212134 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212135 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212136 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212137 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212138 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212139 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212140 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212141 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212142 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212143 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212144 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212145 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212146 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212147 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212148 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212149 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212150 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212151 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212152 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212153 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212154 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212155 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212156 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212157 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212158 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212159 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212160 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212161 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212162 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212163 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212164 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212165 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212166 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212167 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212168 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212169 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212170 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212171 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212172 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212173 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212174 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212175 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212176 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212177 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212178 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212179 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212180 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212181 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212182 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212183 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212184 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212185 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212186 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212187 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212188 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212189 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212190 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212191 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212192 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212193 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212194 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212195 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212196 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212197 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212198 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212199 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212200 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212201 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212202 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212203 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212204 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212205 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212206 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212207 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212208 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212209 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212210 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212211 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212212 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212213 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212214 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212215 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212216 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212217 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212218 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212219 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212220 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212221 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212222 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212223 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212224 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212225 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212226 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212227 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212228 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212229 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212230 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212231 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212232 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212233 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212234 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212235 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212236 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212237 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212238 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212239 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212240 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212241 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212242 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212243 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212244 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212245 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212246 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212247 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212248 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212249 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212250 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212251 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212252 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212253 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212254 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 212255 + shortname: '~' + longname: Experimental product + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 213001 + shortname: sppt1 + longname: Random pattern 1 for sppt + units: dimensionless + description: Pattern 1 for stochastically perturbed parametrization tendency scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - -80 + - 98 +- id: 213002 + shortname: sppt2 + longname: Random pattern 2 for sppt + units: dimensionless + description: Pattern 2 for stochastically perturbed parametrization tendency scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - -80 + - 98 +- id: 213003 + shortname: sppt3 + longname: Random pattern 3 for sppt + units: dimensionless + description: Pattern 3 for stochastically perturbed parametrization tendency scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - -80 + - 98 +- id: 213004 + shortname: sppt4 + longname: Random pattern 4 for sppt + units: dimensionless + description: Pattern 4 for stochastically perturbed parametrization tendency scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 98 +- id: 213005 + shortname: sppt5 + longname: Random pattern 5 for sppt + units: dimensionless + description: Pattern 5 for stochastically perturbed parametrization tendency scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 98 +- id: 213101 + shortname: spp1 + longname: Random pattern 1 for SPP scheme + units: dimensionless + description: Pattern 1 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213102 + shortname: spp2 + longname: Random pattern 2 for SPP scheme + units: dimensionless + description: Pattern 2 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213103 + shortname: spp3 + longname: Random pattern 3 for SPP scheme + units: dimensionless + description: Pattern 3 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213104 + shortname: spp4 + longname: Random pattern 4 for SPP scheme + units: dimensionless + description: Pattern 4 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213105 + shortname: spp5 + longname: Random pattern 5 for SPP scheme + units: dimensionless + description: Pattern 5 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213106 + shortname: spp6 + longname: Random pattern 6 for SPP scheme + units: dimensionless + description: Pattern 6 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213107 + shortname: spp7 + longname: Random pattern 7 for SPP scheme + units: dimensionless + description: Pattern 7 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213108 + shortname: spp8 + longname: Random pattern 8 for SPP scheme + units: dimensionless + description: Pattern 8 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213109 + shortname: spp9 + longname: Random pattern 9 for SPP scheme + units: dimensionless + description: Pattern 9 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213110 + shortname: spp10 + longname: Random pattern 10 for SPP scheme + units: dimensionless + description: Pattern 10 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213111 + shortname: spp11 + longname: Random pattern 11 for SPP scheme + units: dimensionless + description: Pattern 11 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213112 + shortname: spp12 + longname: Random pattern 12 for SPP scheme + units: dimensionless + description: Pattern 12 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213113 + shortname: spp13 + longname: Random pattern 13 for SPP scheme + units: dimensionless + description: Pattern 13 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213114 + shortname: spp14 + longname: Random pattern 14 for SPP scheme + units: dimensionless + description: Pattern 14 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213115 + shortname: spp15 + longname: Random pattern 15 for SPP scheme + units: dimensionless + description: Pattern 15 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213116 + shortname: spp16 + longname: Random pattern 16 for SPP scheme + units: dimensionless + description: Pattern 16 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213117 + shortname: spp17 + longname: Random pattern 17 for SPP scheme + units: dimensionless + description: Pattern 17 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213118 + shortname: spp18 + longname: Random pattern 18 for SPP scheme + units: dimensionless + description: Pattern 18 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213119 + shortname: spp19 + longname: Random pattern 19 for SPP scheme + units: dimensionless + description: Pattern 19 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213120 + shortname: spp20 + longname: Random pattern 20 for SPP scheme + units: dimensionless + description: Pattern 20 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213121 + shortname: spp21 + longname: Random pattern 21 for SPP scheme + units: dimensionless + description: Pattern 21 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213122 + shortname: spp22 + longname: Random pattern 22 for SPP scheme + units: dimensionless + description: Pattern 22 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213123 + shortname: spp23 + longname: Random pattern 23 for SPP scheme + units: dimensionless + description: Pattern 23 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213124 + shortname: spp24 + longname: Random pattern 24 for SPP scheme + units: dimensionless + description: Pattern 24 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213125 + shortname: spp25 + longname: Random pattern 25 for SPP scheme + units: dimensionless + description: Pattern 25 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213126 + shortname: spp26 + longname: Random pattern 26 for SPP scheme + units: dimensionless + description: Pattern 26 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213127 + shortname: spp27 + longname: Random pattern 27 for SPP scheme + units: dimensionless + description: Pattern 27 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213128 + shortname: spp28 + longname: Random pattern 28 for SPP scheme + units: dimensionless + description: Pattern 28 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213129 + shortname: spp29 + longname: Random pattern 29 for SPP scheme + units: dimensionless + description: Pattern 29 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213130 + shortname: spp30 + longname: Random pattern 30 for SPP scheme + units: dimensionless + description: Pattern 30 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213131 + shortname: spp31 + longname: Random pattern 31 for SPP scheme + units: dimensionless + description: Pattern 31 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213132 + shortname: spp32 + longname: Random pattern 32 for SPP scheme + units: dimensionless + description: Pattern 32 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213133 + shortname: spp33 + longname: Random pattern 33 for SPP scheme + units: dimensionless + description: Pattern 33 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213134 + shortname: spp34 + longname: Random pattern 34 for SPP scheme + units: dimensionless + description: Pattern 34 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213135 + shortname: spp35 + longname: Random pattern 35 for SPP scheme + units: dimensionless + description: Pattern 35 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213136 + shortname: spp36 + longname: Random pattern 36 for SPP scheme + units: dimensionless + description: Pattern 36 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213137 + shortname: spp37 + longname: Random pattern 37 for SPP scheme + units: dimensionless + description: Pattern 37 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213138 + shortname: spp38 + longname: Random pattern 38 for SPP scheme + units: dimensionless + description: Pattern 38 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213139 + shortname: spp39 + longname: Random pattern 39 for SPP scheme + units: dimensionless + description: Pattern 39 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213140 + shortname: spp40 + longname: Random pattern 40 for SPP scheme + units: dimensionless + description: Pattern 40 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213141 + shortname: spp41 + longname: Random pattern 41 for SPP scheme + units: dimensionless + description: Pattern 41 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213142 + shortname: spp42 + longname: Random pattern 42 for SPP scheme + units: dimensionless + description: Pattern 42 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213143 + shortname: spp43 + longname: Random pattern 43 for SPP scheme + units: dimensionless + description: Pattern 43 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213144 + shortname: spp44 + longname: Random pattern 44 for SPP scheme + units: dimensionless + description: Pattern 44 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213145 + shortname: spp45 + longname: Random pattern 45 for SPP scheme + units: dimensionless + description: Pattern 45 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213146 + shortname: spp46 + longname: Random pattern 46 for SPP scheme + units: dimensionless + description: Pattern 46 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213147 + shortname: spp47 + longname: Random pattern 47 for SPP scheme + units: dimensionless + description: Pattern 47 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213148 + shortname: spp48 + longname: Random pattern 48 for SPP scheme + units: dimensionless + description: Pattern 48 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213149 + shortname: spp49 + longname: Random pattern 49 for SPP scheme + units: dimensionless + description: Pattern 49 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213150 + shortname: spp50 + longname: Random pattern 50 for SPP scheme + units: dimensionless + description: Pattern 50 for Stochastically Perturbed Parametrisation (SPP) scheme.

These + fields are for internal use by ECMWF and will not be disseminated.
The SPP + fields as well as the SPPT fields are required by the perturbed ensemble members + to propagate information about the state of the model uncertainty scheme from + one model integration to another. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213151 + shortname: spp51 + longname: Random pattern 51 for SPP scheme + units: dimensionless + description: "Pattern 51 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213152 + shortname: spp52 + longname: Random pattern 52 for SPP scheme + units: dimensionless + description: "Pattern 52 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213153 + shortname: spp53 + longname: Random pattern 53 for SPP scheme + units: dimensionless + description: "Pattern 53 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213154 + shortname: spp54 + longname: Random pattern 54 for SPP scheme + units: dimensionless + description: "Pattern 54 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213155 + shortname: spp55 + longname: Random pattern 55 for SPP scheme + units: dimensionless + description: "Pattern 55 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213156 + shortname: spp56 + longname: Random pattern 56 for SPP scheme + units: dimensionless + description: "Pattern 56 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213157 + shortname: spp57 + longname: Random pattern 57 for SPP scheme + units: dimensionless + description: "Pattern 57 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213158 + shortname: spp58 + longname: Random pattern 58 for SPP scheme + units: dimensionless + description: "Pattern 58 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213159 + shortname: spp59 + longname: Random pattern 59 for SPP scheme + units: dimensionless + description: "Pattern 59 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213160 + shortname: spp60 + longname: Random pattern 60 for SPP scheme + units: dimensionless + description: "Pattern 60 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213161 + shortname: spp61 + longname: Random pattern 61 for SPP scheme + units: dimensionless + description: "Pattern 61 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213162 + shortname: spp62 + longname: Random pattern 62 for SPP scheme + units: dimensionless + description: "Pattern 62 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213163 + shortname: spp63 + longname: Random pattern 63 for SPP scheme + units: dimensionless + description: "Pattern 63 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213164 + shortname: spp64 + longname: Random pattern 64 for SPP scheme + units: dimensionless + description: "Pattern 64 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213165 + shortname: spp65 + longname: Random pattern 65 for SPP scheme + units: dimensionless + description: "Pattern 65 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213166 + shortname: spp66 + longname: Random pattern 66 for SPP scheme + units: dimensionless + description: "Pattern 66 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213167 + shortname: spp67 + longname: Random pattern 67 for SPP scheme + units: dimensionless + description: "Pattern 67 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213168 + shortname: spp68 + longname: Random pattern 68 for SPP scheme + units: dimensionless + description: "Pattern 68 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213169 + shortname: spp69 + longname: Random pattern 69 for SPP scheme + units: dimensionless + description: "Pattern 69 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213170 + shortname: spp70 + longname: Random pattern 70 for SPP scheme + units: dimensionless + description: "Pattern 70 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213171 + shortname: spp71 + longname: Random pattern 71 for SPP scheme + units: dimensionless + description: "Pattern 71 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213172 + shortname: spp72 + longname: Random pattern 72 for SPP scheme + units: dimensionless + description: "Pattern 72 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213173 + shortname: spp73 + longname: Random pattern 73 for SPP scheme + units: dimensionless + description: "Pattern 73 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213174 + shortname: spp74 + longname: Random pattern 74 for SPP scheme + units: dimensionless + description: "Pattern 74 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213175 + shortname: spp75 + longname: Random pattern 75 for SPP scheme + units: dimensionless + description: "Pattern 75 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213176 + shortname: spp76 + longname: Random pattern 76 for SPP scheme + units: dimensionless + description: "Pattern 76 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213177 + shortname: spp77 + longname: Random pattern 77 for SPP scheme + units: dimensionless + description: "Pattern 77 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213178 + shortname: spp78 + longname: Random pattern 78 for SPP scheme + units: dimensionless + description: "Pattern 78 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213179 + shortname: spp79 + longname: Random pattern 79 for SPP scheme + units: dimensionless + description: "Pattern 79 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213180 + shortname: spp80 + longname: Random pattern 80 for SPP scheme + units: dimensionless + description: "Pattern 80 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213181 + shortname: spp81 + longname: Random pattern 81 for SPP scheme + units: dimensionless + description: "Pattern 81 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213182 + shortname: spp82 + longname: Random pattern 82 for SPP scheme + units: dimensionless + description: "Pattern 82 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213183 + shortname: spp83 + longname: Random pattern 83 for SPP scheme + units: dimensionless + description: "Pattern 83 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213184 + shortname: spp84 + longname: Random pattern 84 for SPP scheme + units: dimensionless + description: "Pattern 84 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213185 + shortname: spp85 + longname: Random pattern 85 for SPP scheme + units: dimensionless + description: "Pattern 85 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213186 + shortname: spp86 + longname: Random pattern 86 for SPP scheme + units: dimensionless + description: "Pattern 86 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213187 + shortname: spp87 + longname: Random pattern 87 for SPP scheme + units: dimensionless + description: "Pattern 87 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213188 + shortname: spp88 + longname: Random pattern 88 for SPP scheme + units: dimensionless + description: "Pattern 88 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213189 + shortname: spp89 + longname: Random pattern 89 for SPP scheme + units: dimensionless + description: "Pattern 89 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213190 + shortname: spp90 + longname: Random pattern 90 for SPP scheme + units: dimensionless + description: "Pattern 90 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213191 + shortname: spp91 + longname: Random pattern 91 for SPP scheme + units: dimensionless + description: "Pattern 91 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213192 + shortname: spp92 + longname: Random pattern 92 for SPP scheme + units: dimensionless + description: "Pattern 92 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213193 + shortname: spp93 + longname: Random pattern 93 for SPP scheme + units: dimensionless + description: "Pattern 93 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213194 + shortname: spp94 + longname: Random pattern 94 for SPP scheme + units: dimensionless + description: "Pattern 94 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213195 + shortname: spp95 + longname: Random pattern 95 for SPP scheme + units: dimensionless + description: "Pattern 95 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213196 + shortname: spp96 + longname: Random pattern 96 for SPP scheme + units: dimensionless + description: "Pattern 96 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213197 + shortname: spp97 + longname: Random pattern 97 for SPP scheme + units: dimensionless + description: "Pattern 97 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213198 + shortname: spp98 + longname: Random pattern 98 for SPP scheme + units: dimensionless + description: "Pattern 98 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213199 + shortname: spp99 + longname: Random pattern 99 for SPP scheme + units: dimensionless + description: "Pattern 99 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213200 + shortname: spp100 + longname: Random pattern 100 for SPP scheme + units: dimensionless + description: "Pattern 100 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213201 + shortname: spp101 + longname: Random pattern 101 for SPP scheme + units: dimensionless + description: "Pattern 101 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213202 + shortname: spp102 + longname: Random pattern 102 for SPP scheme + units: dimensionless + description: "Pattern 102 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213203 + shortname: spp103 + longname: Random pattern 103 for SPP scheme + units: dimensionless + description: "Pattern 103 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213204 + shortname: spp104 + longname: Random pattern 104 for SPP scheme + units: dimensionless + description: "Pattern 104 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213205 + shortname: spp105 + longname: Random pattern 105 for SPP scheme + units: dimensionless + description: "Pattern 105 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213206 + shortname: spp106 + longname: Random pattern 106 for SPP scheme + units: dimensionless + description: "Pattern 106 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213207 + shortname: spp107 + longname: Random pattern 107 for SPP scheme + units: dimensionless + description: "Pattern 107 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213208 + shortname: spp108 + longname: Random pattern 108 for SPP scheme + units: dimensionless + description: "Pattern 108 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213209 + shortname: spp109 + longname: Random pattern 109 for SPP scheme + units: dimensionless + description: "Pattern 109 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213210 + shortname: spp110 + longname: Random pattern 110 for SPP scheme + units: dimensionless + description: "Pattern 110 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213211 + shortname: spp111 + longname: Random pattern 111 for SPP scheme + units: dimensionless + description: "Pattern 111 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213212 + shortname: spp112 + longname: Random pattern 112 for SPP scheme + units: dimensionless + description: "Pattern 112 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213213 + shortname: spp113 + longname: Random pattern 113 for SPP scheme + units: dimensionless + description: "Pattern 113 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213214 + shortname: spp114 + longname: Random pattern 114 for SPP scheme + units: dimensionless + description: "Pattern 114 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213215 + shortname: spp115 + longname: Random pattern 115 for SPP scheme + units: dimensionless + description: "Pattern 115 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213216 + shortname: spp116 + longname: Random pattern 116 for SPP scheme + units: dimensionless + description: "Pattern 116 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213217 + shortname: spp117 + longname: Random pattern 117 for SPP scheme + units: dimensionless + description: "Pattern 117 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213218 + shortname: spp118 + longname: Random pattern 118 for SPP scheme + units: dimensionless + description: "Pattern 118 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213219 + shortname: spp119 + longname: Random pattern 119 for SPP scheme + units: dimensionless + description: "Pattern 119 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213220 + shortname: spp120 + longname: Random pattern 120 for SPP scheme + units: dimensionless + description: "Pattern 120 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 213221 + shortname: spp121 + longname: Random pattern 121 for SPP scheme + units: dimensionless + description: "Pattern 121 for Stochastically Perturbed Parametrisation (SPP) scheme.\r\ + \n\r\nThese fields are for internal use by ECMWF and will not be disseminated.\r\ + \nThe SPP fields as well as the SPPT fields are required by the perturbed ensemble\ + \ members to propagate information about the state of the model uncertainty scheme\ + \ from one model integration to another" + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 214001 + shortname: cossza + longname: Cosine of solar zenith angle + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 214002 + shortname: uvbed + longname: UV biologically effective dose + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 214003 + shortname: uvbedcs + longname: UV biologically effective dose clear-sky + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 214004 + shortname: uvsflxt280285 + longname: Total surface UV spectral flux (280-285 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214005 + shortname: uvsflxt285290 + longname: Total surface UV spectral flux (285-290 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214006 + shortname: uvsflxt290295 + longname: Total surface UV spectral flux (290-295 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214007 + shortname: uvsflxt295300 + longname: Total surface UV spectral flux (295-300 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214008 + shortname: uvsflxt300305 + longname: Total surface UV spectral flux (300-305 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214009 + shortname: uvsflxt305310 + longname: Total surface UV spectral flux (305-310 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214010 + shortname: uvsflxt310315 + longname: Total surface UV spectral flux (310-315 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214011 + shortname: uvsflxt315320 + longname: Total surface UV spectral flux (315-320 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214012 + shortname: uvsflxt320325 + longname: Total surface UV spectral flux (320-325 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214013 + shortname: uvsflxt325330 + longname: Total surface UV spectral flux (325-330 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214014 + shortname: uvsflxt330335 + longname: Total surface UV spectral flux (330-335 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214015 + shortname: uvsflxt335340 + longname: Total surface UV spectral flux (335-340 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214016 + shortname: uvsflxt340345 + longname: Total surface UV spectral flux (340-345 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214017 + shortname: uvsflxt345350 + longname: Total surface UV spectral flux (345-350 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214018 + shortname: uvsflxt350355 + longname: Total surface UV spectral flux (350-355 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214019 + shortname: uvsflxt355360 + longname: Total surface UV spectral flux (355-360 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214020 + shortname: uvsflxt360365 + longname: Total surface UV spectral flux (360-365 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214021 + shortname: uvsflxt365370 + longname: Total surface UV spectral flux (365-370 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214022 + shortname: uvsflxt370375 + longname: Total surface UV spectral flux (370-375 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214023 + shortname: uvsflxt375380 + longname: Total surface UV spectral flux (375-380 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214024 + shortname: uvsflxt380385 + longname: Total surface UV spectral flux (380-385 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214025 + shortname: uvsflxt385390 + longname: Total surface UV spectral flux (385-390 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214026 + shortname: uvsflxt390395 + longname: Total surface UV spectral flux (390-395 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214027 + shortname: uvsflxt395400 + longname: Total surface UV spectral flux (395-400 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214028 + shortname: uvsflxcs280285 + longname: Clear-sky surface UV spectral flux (280-285 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214029 + shortname: uvsflxcs285290 + longname: Clear-sky surface UV spectral flux (285-290 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214030 + shortname: uvsflxcs290295 + longname: Clear-sky surface UV spectral flux (290-295 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214031 + shortname: uvsflxcs295300 + longname: Clear-sky surface UV spectral flux (295-300 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214032 + shortname: uvsflxcs300305 + longname: Clear-sky surface UV spectral flux (300-305 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214033 + shortname: uvsflxcs305310 + longname: Clear-sky surface UV spectral flux (305-310 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214034 + shortname: uvsflxcs310315 + longname: Clear-sky surface UV spectral flux (310-315 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214035 + shortname: uvsflxcs315320 + longname: Clear-sky surface UV spectral flux (315-320 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214036 + shortname: uvsflxcs320325 + longname: Clear-sky surface UV spectral flux (320-325 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214037 + shortname: uvsflxcs325330 + longname: Clear-sky surface UV spectral flux (325-330 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214038 + shortname: uvsflxcs330335 + longname: Clear-sky surface UV spectral flux (330-335 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214039 + shortname: uvsflxcs335340 + longname: Clear-sky surface UV spectral flux (335-340 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214040 + shortname: uvsflxcs340345 + longname: Clear-sky surface UV spectral flux (340-345 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214041 + shortname: uvsflxcs345350 + longname: Clear-sky surface UV spectral flux (345-350 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214042 + shortname: uvsflxcs350355 + longname: Clear-sky surface UV spectral flux (350-355 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214043 + shortname: uvsflxcs355360 + longname: Clear-sky surface UV spectral flux (355-360 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214044 + shortname: uvsflxcs360365 + longname: Clear-sky surface UV spectral flux (360-365 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214045 + shortname: uvsflxcs365370 + longname: Clear-sky surface UV spectral flux (365-370 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214046 + shortname: uvsflxcs370375 + longname: Clear-sky surface UV spectral flux (370-375 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214047 + shortname: uvsflxcs375380 + longname: Clear-sky surface UV spectral flux (375-380 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214048 + shortname: uvsflxcs380385 + longname: Clear-sky surface UV spectral flux (380-385 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214049 + shortname: uvsflxcs385390 + longname: Clear-sky surface UV spectral flux (385-390 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214050 + shortname: uvsflxcs390395 + longname: Clear-sky surface UV spectral flux (390-395 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214051 + shortname: uvsflxcs395400 + longname: Clear-sky surface UV spectral flux (395-400 nm) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 214052 + shortname: aot340 + longname: Profile of optical thickness at 340 nm + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 215001 + shortname: aersrcsss + longname: Source/gain of sea salt aerosol (0.03 - 0.5 um) + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215002 + shortname: aersrcssm + longname: Source/gain of sea salt aerosol (0.5 - 5 um) + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215003 + shortname: aersrcssl + longname: Source/gain of sea salt aerosol (5 - 20 um) + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215004 + shortname: aerddpsss + longname: Dry deposition of sea salt aerosol (0.03 - 0.5 um) + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215005 + shortname: aerddpssm + longname: Dry deposition of sea salt aerosol (0.5 - 5 um) + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215006 + shortname: aerddpssl + longname: Dry deposition of sea salt aerosol (5 - 20 um) + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215007 + shortname: aersdmsss + longname: Sedimentation of sea salt aerosol (0.03 - 0.5 um) + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215008 + shortname: aersdmssm + longname: Sedimentation of sea salt aerosol (0.5 - 5 um) + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215009 + shortname: aersdmssl + longname: Sedimentation of sea salt aerosol (5 - 20 um) + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215010 + shortname: aerwdlssss + longname: Wet deposition of sea salt aerosol (0.03 - 0.5 um) by large-scale precipitation + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215011 + shortname: aerwdlsssm + longname: Wet deposition of sea salt aerosol (0.5 - 5 um) by large-scale precipitation + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215012 + shortname: aerwdlsssl + longname: Wet deposition of sea salt aerosol (5 - 20 um) by large-scale precipitation + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215013 + shortname: aerwdccsss + longname: Wet deposition of sea salt aerosol (0.03 - 0.5 um) by convective precipitation + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215014 + shortname: aerwdccssm + longname: Wet deposition of sea salt aerosol (0.5 - 5 um) by convective precipitation + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215015 + shortname: aerwdccssl + longname: Wet deposition of sea salt aerosol (5 - 20 um) by convective precipitation + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215016 + shortname: aerngtsss + longname: Negative fixer of sea salt aerosol (0.03 - 0.5 um) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 215017 + shortname: aerngtssm + longname: Negative fixer of sea salt aerosol (0.5 - 5 um) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 215018 + shortname: aerngtssl + longname: Negative fixer of sea salt aerosol (5 - 20 um) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 215019 + shortname: aermsssss + longname: Vertically integrated mass of sea salt aerosol (0.03 - 0.5 um) + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215020 + shortname: aermssssm + longname: Vertically integrated mass of sea salt aerosol (0.5 - 5 um) + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215021 + shortname: aermssssl + longname: Vertically integrated mass of sea salt aerosol (5 - 20 um) + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215022 + shortname: aerodsss + longname: Sea salt aerosol (0.03 - 0.5 um) optical depth + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215023 + shortname: aerodssm + longname: Sea salt aerosol (0.5 - 5 um) optical depth + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215024 + shortname: aerodssl + longname: Sea salt aerosol (5 - 20 um) optical depth + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215025 + shortname: aersrcdus + longname: Source/gain of dust aerosol (0.03 - 0.55 um) + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215026 + shortname: aersrcdum + longname: Source/gain of dust aerosol (0.55 - 0.9 um) + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215027 + shortname: aersrcdul + longname: Source/gain of dust aerosol (0.9 - 20 um) + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215028 + shortname: aerddpdus + longname: Dry deposition of dust aerosol (0.03 - 0.55 um) + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215029 + shortname: aerddpdum + longname: Dry deposition of dust aerosol (0.55 - 0.9 um) + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215030 + shortname: aerddpdul + longname: Dry deposition of dust aerosol (0.9 - 20 um) + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215031 + shortname: aersdmdus + longname: Sedimentation of dust aerosol (0.03 - 0.55 um) + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215032 + shortname: aersdmdum + longname: Sedimentation of dust aerosol (0.55 - 0.9 um) + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215033 + shortname: aersdmdul + longname: Sedimentation of dust aerosol (0.9 - 20 um) + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215034 + shortname: aerwdlsdus + longname: Wet deposition of dust aerosol (0.03 - 0.55 um) by large-scale precipitation + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215035 + shortname: aerwdlsdum + longname: Wet deposition of dust aerosol (0.55 - 0.9 um) by large-scale precipitation + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215036 + shortname: aerwdlsdul + longname: Wet deposition of dust aerosol (0.9 - 20 um) by large-scale precipitation + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215037 + shortname: aerwdccdus + longname: Wet deposition of dust aerosol (0.03 - 0.55 um) by convective precipitation + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215038 + shortname: aerwdccdum + longname: Wet deposition of dust aerosol (0.55 - 0.9 um) by convective precipitation + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215039 + shortname: aerwdccdul + longname: Wet deposition of dust aerosol (0.9 - 20 um) by convective precipitation + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215040 + shortname: aerngtdus + longname: Negative fixer of dust aerosol (0.03 - 0.55 um) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 215041 + shortname: aerngtdum + longname: Negative fixer of dust aerosol (0.55 - 0.9 um) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 215042 + shortname: aerngtdul + longname: Negative fixer of dust aerosol (0.9 - 20 um) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 215043 + shortname: aermssdus + longname: Vertically integrated mass of dust aerosol (0.03 - 0.55 um) + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215044 + shortname: aermssdum + longname: Vertically integrated mass of dust aerosol (0.55 - 0.9 um) + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215045 + shortname: aermssdul + longname: Vertically integrated mass of dust aerosol (0.9 - 20 um) + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215046 + shortname: aeroddus + longname: Dust aerosol (0.03 - 0.55 um) optical depth + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215047 + shortname: aeroddum + longname: Dust aerosol (0.55 - 0.9 um) optical depth + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215048 + shortname: aeroddul + longname: Dust aerosol (0.9 - 20 um) optical depth + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215049 + shortname: aersrcomhphob + longname: Source/gain of hydrophobic organic matter aerosol + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215050 + shortname: aersrcomhphil + longname: Source/gain of hydrophilic organic matter aerosol + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215051 + shortname: aerddpomhphob + longname: Dry deposition of hydrophobic organic matter aerosol + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215052 + shortname: aerddpomhphil + longname: Dry deposition of hydrophilic organic matter aerosol + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215053 + shortname: aersdmomhphob + longname: Sedimentation of hydrophobic organic matter aerosol + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215054 + shortname: aersdmomhphil + longname: Sedimentation of hydrophilic organic matter aerosol + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215055 + shortname: aerwdlsomhphob + longname: Wet deposition of hydrophobic organic matter aerosol by large-scale precipitation + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215056 + shortname: aerwdlsomhphil + longname: Wet deposition of hydrophilic organic matter aerosol by large-scale precipitation + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215057 + shortname: aerwdccomhphob + longname: Wet deposition of hydrophobic organic matter aerosol by convective precipitation + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215058 + shortname: aerwdccomhphil + longname: Wet deposition of hydrophilic organic matter aerosol by convective precipitation + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215059 + shortname: aerngtomhphob + longname: Negative fixer of hydrophobic organic matter aerosol + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 215060 + shortname: aerngtomhphil + longname: Negative fixer of hydrophilic organic matter aerosol + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 215061 + shortname: aermssomhphob + longname: Vertically integrated mass of hydrophobic organic matter aerosol + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215062 + shortname: aermssomhphil + longname: Vertically integrated mass of hydrophilic organic matter aerosol + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215063 + shortname: aerodomhphob + longname: Hydrophobic organic matter aerosol optical depth + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215064 + shortname: aerodomhphil + longname: Hydrophilic organic matter aerosol optical depth + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215065 + shortname: aersrcbchphob + longname: Source/gain of hydrophobic black carbon aerosol + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215066 + shortname: aersrcbchphil + longname: Source/gain of hydrophilic black carbon aerosol + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215067 + shortname: aerddpbchphob + longname: Dry deposition of hydrophobic black carbon aerosol + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215068 + shortname: aerddpbchphil + longname: Dry deposition of hydrophilic black carbon aerosol + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215069 + shortname: aersdmbchphob + longname: Sedimentation of hydrophobic black carbon aerosol + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215070 + shortname: aersdmbchphil + longname: Sedimentation of hydrophilic black carbon aerosol + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215071 + shortname: aerwdlsbchphob + longname: Wet deposition of hydrophobic black carbon aerosol by large-scale precipitation + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215072 + shortname: aerwdlsbchphil + longname: Wet deposition of hydrophilic black carbon aerosol by large-scale precipitation + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215073 + shortname: aerwdccbchphob + longname: Wet deposition of hydrophobic black carbon aerosol by convective precipitation + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215074 + shortname: aerwdccbchphil + longname: Wet deposition of hydrophilic black carbon aerosol by convective precipitation + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215075 + shortname: aerngtbchphob + longname: Negative fixer of hydrophobic black carbon aerosol + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 215076 + shortname: aerngtbchphil + longname: Negative fixer of hydrophilic black carbon aerosol + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 215077 + shortname: aermssbchphob + longname: Vertically integrated mass of hydrophobic black carbon aerosol + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215078 + shortname: aermssbchphil + longname: Vertically integrated mass of hydrophilic black carbon aerosol + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215079 + shortname: aerodbchphob + longname: Hydrophobic black carbon aerosol optical depth + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215080 + shortname: aerodbchphil + longname: Hydrophilic black carbon aerosol optical depth + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215081 + shortname: aersrcsu + longname: Source/gain of sulphate aerosol + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215082 + shortname: aerddpsu + longname: Dry deposition of sulphate aerosol + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215083 + shortname: aersdmsu + longname: Sedimentation of sulphate aerosol + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215084 + shortname: aerwdlssu + longname: Wet deposition of sulphate aerosol by large-scale precipitation + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215085 + shortname: aerwdccsu + longname: Wet deposition of sulphate aerosol by convective precipitation + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215086 + shortname: aerngtsu + longname: Negative fixer of sulphate aerosol + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 215087 + shortname: aermsssu + longname: Vertically integrated mass of sulphate aerosol + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215088 + shortname: aerodsu + longname: Sulphate aerosol optical depth + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 215089 + shortname: accaod550 + longname: Accumulated total aerosol optical depth at 550 nm + units: s + description: null + access_ids: [] + origin_ids: + - 98 +- id: 215090 + shortname: aluvpsn + longname: Effective (snow effect included) UV visible albedo for direct radiation + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 98 +- id: 215091 + shortname: aerdep10si + longname: 10 metre wind speed dust emission potential + units: kg s**2 m**-5 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 215092 + shortname: aerdep10fg + longname: 10 metre wind gustiness dust emission potential + units: kg s**2 m**-5 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 215093 + shortname: aot532 + longname: Total aerosol optical thickness at 532 nm + units: dimensionless + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 215094 + shortname: naot532 + longname: Natural (sea-salt and dust) aerosol optical thickness at 532 nm + units: dimensionless + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 215095 + shortname: aaot532 + longname: Anthropogenic (black carbon, organic matter, sulphate) aerosol optical + thickness at 532 nm + units: dimensionless + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 215096 + shortname: aodabs340 + longname: Total absorption aerosol optical depth at 340 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215097 + shortname: aodabs355 + longname: Total absorption aerosol optical depth at 355 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215098 + shortname: aodabs380 + longname: Total absorption aerosol optical depth at 380 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215099 + shortname: aodabs400 + longname: Total absorption aerosol optical depth at 400 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215100 + shortname: aodabs440 + longname: Total absorption aerosol optical depth at 440 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215101 + shortname: aodabs469 + longname: Total absorption aerosol optical depth at 469 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215102 + shortname: aodabs500 + longname: Total absorption aerosol optical depth at 500 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215103 + shortname: aodabs532 + longname: Total absorption aerosol optical depth at 532 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215104 + shortname: aodabs550 + longname: Total absorption aerosol optical depth at 550 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215105 + shortname: aodabs645 + longname: Total absorption aerosol optical depth at 645 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215106 + shortname: aodabs670 + longname: Total absorption aerosol optical depth at 670 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215107 + shortname: aodabs800 + longname: Total absorption aerosol optical depth at 800 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215108 + shortname: aodabs858 + longname: Total absorption aerosol optical depth at 858 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215109 + shortname: aodabs865 + longname: Total absorption aerosol optical depth at 865 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215110 + shortname: aodabs1020 + longname: Total absorption aerosol optical depth at 1020 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215111 + shortname: aodabs1064 + longname: Total absorption aerosol optical depth at 1064 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215112 + shortname: aodabs1240 + longname: Total absorption aerosol optical depth at 1240 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215113 + shortname: aodabs1640 + longname: Total absorption aerosol optical depth at 1640 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215114 + shortname: aodfm340 + longname: Total fine mode (r < 0.5 um) aerosol optical depth at 340 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215115 + shortname: aodfm355 + longname: Total fine mode (r < 0.5 um) aerosol optical depth at 355 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215116 + shortname: aodfm380 + longname: Total fine mode (r < 0.5 um) aerosol optical depth at 380 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215117 + shortname: aodfm400 + longname: Total fine mode (r < 0.5 um) aerosol optical depth at 400 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215118 + shortname: aodfm440 + longname: Total fine mode (r < 0.5 um) aerosol optical depth at 440 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215119 + shortname: aodfm469 + longname: Total fine mode (r < 0.5 um) aerosol optical depth at 469 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215120 + shortname: aodfm500 + longname: Total fine mode (r < 0.5 um) aerosol optical depth at 500 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215121 + shortname: aodfm532 + longname: Total fine mode (r < 0.5 um) aerosol optical depth at 532 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215122 + shortname: aodfm550 + longname: Total fine mode (r < 0.5 um) aerosol optical depth at 550 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215123 + shortname: aodfm645 + longname: Total fine mode (r < 0.5 um) aerosol optical depth at 645 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215124 + shortname: aodfm670 + longname: Total fine mode (r < 0.5 um) aerosol optical depth at 670 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215125 + shortname: aodfm800 + longname: Total fine mode (r < 0.5 um) aerosol optical depth at 800 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215126 + shortname: aodfm858 + longname: Total fine mode (r < 0.5 um) aerosol optical depth at 858 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215127 + shortname: aodfm865 + longname: Total fine mode (r < 0.5 um) aerosol optical depth at 865 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215128 + shortname: aodfm1020 + longname: Total fine mode (r < 0.5 um) aerosol optical depth at 1020 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215129 + shortname: aodfm1064 + longname: Total fine mode (r < 0.5 um) aerosol optical depth at 1064 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215130 + shortname: aodfm1240 + longname: Total fine mode (r < 0.5 um) aerosol optical depth at 1240 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215131 + shortname: aodfm1640 + longname: Total fine mode (r < 0.5 um) aerosol optical depth at 1640 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215132 + shortname: ssa340 + longname: Single scattering albedo at 340 nm + units: (0 - 1) + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215133 + shortname: ssa355 + longname: Single scattering albedo at 355 nm + units: (0 - 1) + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215134 + shortname: ssa380 + longname: Single scattering albedo at 380 nm + units: (0 - 1) + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215135 + shortname: ssa400 + longname: Single scattering albedo at 400 nm + units: (0 - 1) + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215136 + shortname: ssa440 + longname: Single scattering albedo at 440 nm + units: (0 - 1) + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215137 + shortname: ssa469 + longname: Single scattering albedo at 469 nm + units: (0 - 1) + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215138 + shortname: ssa500 + longname: Single scattering albedo at 500 nm + units: (0 - 1) + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215139 + shortname: ssa532 + longname: Single scattering albedo at 532 nm + units: (0 - 1) + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215140 + shortname: ssa550 + longname: Single scattering albedo at 550 nm + units: (0 - 1) + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215141 + shortname: ssa645 + longname: Single scattering albedo at 645 nm + units: (0 - 1) + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215142 + shortname: ssa670 + longname: Single scattering albedo at 670 nm + units: (0 - 1) + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215143 + shortname: ssa800 + longname: Single scattering albedo at 800 nm + units: (0 - 1) + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215144 + shortname: ssa858 + longname: Single scattering albedo at 858 nm + units: (0 - 1) + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215145 + shortname: ssa865 + longname: Single scattering albedo at 865 nm + units: (0 - 1) + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215146 + shortname: ssa1020 + longname: Single scattering albedo at 1020 nm + units: (0 - 1) + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215147 + shortname: ssa1064 + longname: Single scattering albedo at 1064 nm + units: (0 - 1) + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215148 + shortname: ssa1240 + longname: Single scattering albedo at 1240 nm + units: (0 - 1) + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215149 + shortname: ssa1640 + longname: Single scattering albedo at 1640 nm + units: (0 - 1) + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215150 + shortname: asymmetry340 + longname: Asymmetry factor at 340 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215151 + shortname: asymmetry355 + longname: Asymmetry factor at 355 nm + units: '~' + description: '' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215152 + shortname: asymmetry380 + longname: Asymmetry factor at 380 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215153 + shortname: asymmetry400 + longname: Asymmetry factor at 400 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215154 + shortname: asymmetry440 + longname: Asymmetry factor at 440 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215155 + shortname: asymmetry469 + longname: Asymmetry factor at 469 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215156 + shortname: asymmetry500 + longname: Asymmetry factor at 500 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215157 + shortname: asymmetry532 + longname: Asymmetry factor at 532 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215158 + shortname: asymmetry550 + longname: Asymmetry factor at 550 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215159 + shortname: asymmetry645 + longname: Asymmetry factor at 645 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215160 + shortname: asymmetry670 + longname: Asymmetry factor at 670 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215161 + shortname: asymmetry800 + longname: Asymmetry factor at 800 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215162 + shortname: asymmetry858 + longname: Asymmetry factor at 858 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215163 + shortname: asymmetry865 + longname: Asymmetry factor at 865 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215164 + shortname: asymmetry1020 + longname: Asymmetry factor at 1020 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215165 + shortname: asymmetry1064 + longname: Asymmetry factor at 1064 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215166 + shortname: asymmetry1240 + longname: Asymmetry factor at 1240 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215167 + shortname: asymmetry1640 + longname: Asymmetry factor at 1640 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215168 + shortname: aersrcso2 + longname: Source/gain of sulphur dioxide + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 215169 + shortname: aerddpso2 + longname: Dry deposition of sulphur dioxide + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 215170 + shortname: aersdmso2 + longname: Sedimentation of sulphur dioxide + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 215171 + shortname: aerwdlsso2 + longname: Wet deposition of sulphur dioxide by large-scale precipitation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 215172 + shortname: aerwdccso2 + longname: Wet deposition of sulphur dioxide by convective precipitation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 215173 + shortname: aerngtso2 + longname: Negative fixer of sulphur dioxide + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 215174 + shortname: aermssso2 + longname: Vertically integrated mass of sulphur dioxide + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 215175 + shortname: aerodso2 + longname: Sulphur dioxide optical depth + units: '~' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 215176 + shortname: aodabs2130 + longname: Total absorption aerosol optical depth at 2130 nm + units: '~' + description: '' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215177 + shortname: aodfm2130 + longname: Total fine mode (r < 0.5 um) aerosol optical depth at 2130 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215178 + shortname: ssa2130 + longname: Single scattering albedo at 2130 nm + units: (0 - 1) + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215179 + shortname: asymmetry2130 + longname: Asymmetry factor at 2130 nm + units: '~' + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215180 + shortname: aerext355 + longname: Aerosol extinction coefficient at 355 nm + units: m**-1 + description: '' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215181 + shortname: aerext532 + longname: Aerosol extinction coefficient at 532 nm + units: m**-1 + description: '' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215182 + shortname: aerext1064 + longname: Aerosol extinction coefficient at 1064 nm + units: m**-1 + description: '' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215183 + shortname: aerbackscattoa355 + longname: Aerosol backscatter coefficient at 355 nm (from top of atmosphere) + units: m**-1 sr**-1 + description: '' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215184 + shortname: aerbackscattoa532 + longname: Aerosol backscatter coefficient at 532 nm (from top of atmosphere) + units: m**-1 sr**-1 + description: '' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215185 + shortname: aerbackscattoa1064 + longname: Aerosol backscatter coefficient at 1064 nm (from top of atmosphere) + units: m**-1 sr**-1 + description: '' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215186 + shortname: aerbackscatgnd355 + longname: Aerosol backscatter coefficient at 355 nm (from ground) + units: m**-1 sr**-1 + description: '' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215187 + shortname: aerbackscatgnd532 + longname: Aerosol backscatter coefficient at 532 nm (from ground) + units: m**-1 sr**-1 + description: '' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215188 + shortname: aerbackscatgnd1064 + longname: Aerosol backscatter coefficient at 1064 nm (from ground) + units: m**-1 sr**-1 + description: '' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215189 + shortname: aersrcnif + longname: Source/gain of fine-mode nitrate aerosol + units: kg m**-2 s**-1 + description: '' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215190 + shortname: aersrcnic + longname: Source/gain of coarse-mode nitrate aerosol + units: kg m**-2 s**-1 + description: '' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215191 + shortname: aerddpnif + longname: Dry deposition of fine-mode nitrate aerosol + units: kg m**-2 s**-1 + description: '' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215192 + shortname: aerddpnic + longname: Dry deposition of coarse-mode nitrate aerosol + units: kg m**-2 s**-1 + description: '' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215193 + shortname: aersdmnif + longname: Sedimentation of fine-mode nitrate aerosol + units: kg m**-2 s**-1 + description: '' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215194 + shortname: aersdmnic + longname: Sedimentation of coarse-mode nitrate aerosol + units: kg m**-2 s**-1 + description: '' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215195 + shortname: aerwdlnif + longname: Wet deposition of fine-mode nitrate aerosol by large-scale precipitation + units: kg m**-2 s**-1 + description: '' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215196 + shortname: aerwdlnic + longname: Wet deposition of coarse-mode nitrate aerosol by large-scale precipitation + units: kg m**-2 s**-1 + description: '' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215197 + shortname: aerwdcnif + longname: Wet deposition of fine-mode nitrate aerosol by convective precipitation + units: kg m**-2 s**-1 + description: '' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215198 + shortname: aerwdcnic + longname: Wet deposition of coarse-mode nitrate aerosol by convective precipitation + units: kg m**-2 s**-1 + description: '' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215199 + shortname: aerngtnif + longname: Negative fixer of fine-mode nitrate aerosol + units: kg m**-2 s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 215200 + shortname: aerngtnic + longname: Negative fixer of coarse-mode nitrate aerosol + units: kg m**-2 s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 215201 + shortname: aermssnif + longname: Vertically integrated mass of fine-mode nitrate aerosol + units: kg m**-2 + description: '' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215202 + shortname: aermssnic + longname: Vertically integrated mass of coarse-mode nitrate aerosol + units: kg m**-2 + description: '' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215203 + shortname: aerodnif + longname: Fine-mode nitrate aerosol optical depth at 550 nm + units: dimensionless + description: '' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215204 + shortname: aerodnic + longname: Coarse-mode nitrate aerosol optical depth at 550 nm + units: dimensionless + description: '' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215205 + shortname: aersrcam + longname: Source/gain of ammonium aerosol + units: kg m**-2 s**-1 + description: '' + access_ids: + - dissemination + origin_ids: + - 98 +- id: 215206 + shortname: aerddpam + longname: Dry deposition of ammonium aerosol + units: kg m**-2 s**-1 + description: '' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 215207 + shortname: aersdmam + longname: Sedimentation of ammonium aerosol + units: kg m**-2 s**-1 + description: '' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 215208 + shortname: aerwdlam + longname: Wet deposition of ammonium aerosol by large-scale precipitation + units: kg m**-2 s**-1 + description: '' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 215209 + shortname: aerwdcam + longname: Wet deposition of ammonium aerosol by convective precipitation + units: kg m**-2 s**-1 + description: '' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 215210 + shortname: aerngtam + longname: Negative fixer of ammonium aerosol + units: kg m**-2 s**-1 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 215211 + shortname: aermssam + longname: Vertically integrated mass of ammonium aerosol + units: kg m**-2 + description: '' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 215212 + shortname: aersrcsoab + longname: Source/gain of biogenic secondary organic aerosol + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 215213 + shortname: aerddpsoab + longname: Dry deposition of biogenic secondary organic aerosol + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 215214 + shortname: aersdmsoab + longname: Sedimentation of biogenic secondary organic aerosol + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 215215 + shortname: aerwdlsoab + longname: Wet deposition of biogenic secondary organic aerosol by large-scale precipitation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 215216 + shortname: aerwdcsoab + longname: Wet deposition of biogenic secondary organic aerosol by convective precipitation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 215217 + shortname: aerngtsoab + longname: Negative fixer of biogenic secondary organic aerosol + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 215218 + shortname: aermsssoab + longname: Vertically integrated mass of biogenic secondary organic aerosol + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 215219 + shortname: aersrcsoaa + longname: Source/gain of anthropogenic secondary organic aerosol + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 215220 + shortname: aerddpsoaa + longname: Dry deposition of anthropogenic secondary organic aerosol + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 215221 + shortname: aersdmsoaa + longname: Sedimentation of anthropogenic secondary organic aerosol + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 215222 + shortname: aerwdlsoaa + longname: Wet deposition of anthropogenic secondary organic aerosol by large-scale + precipitation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 215223 + shortname: aerwdcsoaa + longname: Wet deposition of anthropogenic secondary organic aerosol by convective + precipitation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 215224 + shortname: aerngtsoaa + longname: Negative fixer of anthropogenic secondary organic aerosol + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 215225 + shortname: aermsssoaa + longname: Vertically integrated mass of anthropogenic secondary organic aerosol + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 215226 + shortname: soaod550 + longname: Secondary organic aerosol optical depth at 550 nm + units: dimensionless + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 216001 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216002 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216003 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216004 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216005 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216006 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216007 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216008 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216009 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216010 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216011 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216012 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216013 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216014 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216015 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216016 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216017 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216018 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216019 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216020 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216021 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216022 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216023 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216024 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216025 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216026 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216027 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216028 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216029 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216030 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216031 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216032 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216033 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216034 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216035 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216036 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216037 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216038 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216039 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216040 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216041 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216042 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216043 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216044 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216045 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216046 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216047 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216048 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216049 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216050 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216051 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216052 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216053 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216054 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216055 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216056 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216057 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216058 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216059 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216060 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216061 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216062 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216063 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216064 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216065 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216066 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216067 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216068 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216069 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216070 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216071 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216072 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216073 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216074 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216075 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216076 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216077 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216078 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216079 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216080 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216081 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216082 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216083 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216084 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216085 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216086 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216087 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216088 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216089 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216090 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216091 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216092 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216093 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216094 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216095 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216096 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216097 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216098 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216099 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216100 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216101 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216102 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216103 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216104 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216105 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216106 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216107 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216108 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216109 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216110 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216111 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216112 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216113 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216114 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216115 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216116 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216117 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216118 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216119 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216120 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216121 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216122 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216123 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216124 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216125 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216126 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216127 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216128 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216129 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216130 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216131 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216132 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216133 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216134 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216135 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216136 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216137 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216138 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216139 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216140 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216141 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216142 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216143 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216144 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216145 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216146 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216147 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216148 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216149 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216150 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216151 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216152 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216153 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216154 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216155 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216156 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216157 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216158 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216159 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216160 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216161 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216162 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216163 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216164 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216165 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216166 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216167 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216168 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216169 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216170 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216171 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216172 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216173 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216174 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216175 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216176 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216177 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216178 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216179 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216180 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216181 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216182 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216183 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216184 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216185 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216186 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216187 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216188 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216189 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216190 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216191 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216192 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216193 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216194 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216195 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216196 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216197 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216198 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216199 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216200 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216201 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216202 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216203 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216204 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216205 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216206 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216207 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216208 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216209 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216210 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216211 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216212 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216213 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216214 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216215 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216216 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216217 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216218 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216219 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216220 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216221 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216222 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216223 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216224 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216225 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216226 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216227 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216228 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216229 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216230 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216231 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216232 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216233 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216234 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216235 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216236 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216237 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216238 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216239 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216240 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216241 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216242 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216243 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216244 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216245 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216246 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216247 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216248 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216249 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216250 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216251 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216252 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216253 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216254 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 216255 + shortname: '~' + longname: Experimental product + units: '~' + description: MACC experimental products for the chemistry integration in IFS + access_ids: [] + origin_ids: + - 98 +- id: 217003 + shortname: h2o2 + longname: Hydrogen peroxide + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217004 + shortname: ch4_c + longname: Methane (chemistry) + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217006 + shortname: hno3 + longname: Nitric acid + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217007 + shortname: ch3ooh + longname: Methyl peroxide + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217009 + shortname: par + longname: Paraffins + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217010 + shortname: c2h4 + longname: Ethene + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217011 + shortname: ole + longname: Olefins + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217012 + shortname: ald2 + longname: Aldehydes + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217013 + shortname: pan + longname: Peroxyacetyl nitrate + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217014 + shortname: rooh + longname: Peroxides + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217015 + shortname: onit + longname: Organic nitrates + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217016 + shortname: c5h8 + longname: Isoprene + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217018 + shortname: dms + longname: Dimethyl sulfide + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217019 + shortname: nh3 + longname: Ammonia mass mixing ratio + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 217020 + shortname: so4 + longname: Sulfate + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217021 + shortname: nh4 + longname: Ammonium + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217022 + shortname: msa + longname: Methane sulfonic acid + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217023 + shortname: ch3cocho + longname: Methyl glyoxal + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217024 + shortname: o3s + longname: Stratospheric ozone + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217026 + shortname: pb + longname: Lead + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217027 + shortname: 'no' + longname: Nitrogen monoxide mass mixing ratio + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 217028 + shortname: ho2 + longname: Hydroperoxy radical + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217029 + shortname: ch3o2 + longname: Methylperoxy radical + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217030 + shortname: oh + longname: Hydroxyl radical + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217032 + shortname: no3 + longname: Nitrate radical + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217033 + shortname: n2o5 + longname: Dinitrogen pentoxide + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217034 + shortname: ho2no2 + longname: Pernitric acid + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217035 + shortname: c2o3 + longname: Peroxy acetyl radical + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217036 + shortname: ror + longname: Organic ethers + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217037 + shortname: rxpar + longname: PAR budget corrector + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217038 + shortname: xo2 + longname: NO to NO2 operator + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217039 + shortname: xo2n + longname: NO to alkyl nitrate operator + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217040 + shortname: nh2 + longname: Amine + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217041 + shortname: psc + longname: Polar stratospheric cloud + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217042 + shortname: ch3oh + longname: Methanol + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217043 + shortname: hcooh + longname: Formic acid + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217044 + shortname: mcooh + longname: Methacrylic acid + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217045 + shortname: c2h6 + longname: Ethane + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217046 + shortname: c2h5oh + longname: Ethanol + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217047 + shortname: c3h8 + longname: Propane + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217048 + shortname: c3h6 + longname: Propene + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217049 + shortname: c10h16 + longname: Terpenes + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217050 + shortname: ispd + longname: Methacrolein MVK + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217051 + shortname: no3_a + longname: Nitrate + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217052 + shortname: ch3coch3 + longname: Acetone + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217053 + shortname: aco2 + longname: Acetone product + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217054 + shortname: ic3h7o2 + longname: IC3H7O2 + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217055 + shortname: hypropo2 + longname: HYPROPO2 + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217056 + shortname: noxa + longname: Nitrogen oxides Transp + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217057 + shortname: co2_c + longname: Carbon dioxide (chemistry) + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217058 + shortname: n2o_c + longname: Nitrous oxide (chemistry) + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217059 + shortname: h2o + longname: Water vapour (chemistry) + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217060 + shortname: o2 + longname: Oxygen + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217061 + shortname: o2_1s + longname: Singlet oxygen + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217062 + shortname: o2_1d + longname: Singlet delta oxygen + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217063 + shortname: oclo + longname: Chlorine dioxide + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217064 + shortname: clono2 + longname: Chlorine nitrate + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217065 + shortname: hocl + longname: Hypochlorous acid + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217066 + shortname: cl2 + longname: Chlorine + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217067 + shortname: clno2 + longname: Nitryl chloride + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217068 + shortname: hbr + longname: Hydrogen bromide + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217069 + shortname: cl2o2 + longname: Dichlorine dioxide + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217070 + shortname: hobr + longname: Hypobromous acid + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217071 + shortname: cfc11 + longname: Trichlorofluoromethane + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217072 + shortname: cfc12 + longname: Dichlorodifluoromethane + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217073 + shortname: cfc113 + longname: Trichlorotrifluoroethane + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217074 + shortname: cfc114 + longname: Dichlorotetrafluoroethane + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217075 + shortname: cfc115 + longname: Chloropentafluoroethane + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217076 + shortname: ccl4 + longname: Tetrachloromethane + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217077 + shortname: ch3ccl3 + longname: Methyl chloroform + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217078 + shortname: ch3cl + longname: Methyl chloride + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217079 + shortname: hcfc22 + longname: Chlorodifluoromethane + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217080 + shortname: ch3br + longname: Methyl bromide + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217081 + shortname: ha1202 + longname: Dibromodifluoromethane + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217082 + shortname: ha1211 + longname: Bromochlorodifluoromethane + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217083 + shortname: ha1301 + longname: Trifluorobromomethane + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217084 + shortname: ha2402 + longname: Cbrf2cbrf2 + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217085 + shortname: h2so4 + longname: Sulfuric acid + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217086 + shortname: hono + longname: Nitrous acid + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217087 + shortname: hc3 + longname: Alkanes low oh rate + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217088 + shortname: hc5 + longname: Alkanes med oh rate + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217089 + shortname: hc8 + longname: Alkanes high oh rate + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217090 + shortname: olt + longname: Terminal alkenes + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217091 + shortname: oli + longname: Internal alkenes + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217092 + shortname: c2h5o2 + longname: Ethylperoxy radical + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217093 + shortname: dien + longname: Butadiene + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217094 + shortname: c2h5ooh + longname: Ethyl hydroperoxide + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217095 + shortname: api + longname: A-pinene cyclic terpenes + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217096 + shortname: ch3cooh + longname: Acetic acid + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217097 + shortname: lim + longname: D-limonene cyclic diene + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217098 + shortname: ch3cho + longname: Acetaldehyde + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217099 + shortname: tol + longname: Toluene and less reactive aromatics + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217100 + shortname: xyl + longname: Xylene and more reactive aromatics + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217101 + shortname: glyald + longname: Glycolaldehyde + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217102 + shortname: cresol + longname: Cresol + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217103 + shortname: ald + longname: Acetaldehyde and higher + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217104 + shortname: ch3coooh + longname: Peracetic acid + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217105 + shortname: ket + longname: Ketones + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217106 + shortname: eo2 + longname: Hoch2ch2o2 + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217107 + shortname: glyoxal + longname: Glyoxal + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217108 + shortname: eo + longname: Hoch2ch2o + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217109 + shortname: dcb + longname: Unsaturated dicarbonyls + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217110 + shortname: macr + longname: Methacrolein + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217111 + shortname: udd + longname: Unsaturated hydroxy dicarbonyl + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217112 + shortname: c3h7o2 + longname: Isopropyldioxidanyl + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217113 + shortname: hket + longname: Hydroxy ketone + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217114 + shortname: c3h7ooh + longname: Isopropyl hydroperoxide + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217115 + shortname: po2 + longname: C3h6oho2 + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217116 + shortname: pooh + longname: C3h6ohooh + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217117 + shortname: op2 + longname: Higher organic peroxides + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217118 + shortname: hyac + longname: Hydroxyacetone + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217119 + shortname: paa + longname: Peroxyacetic acid + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217120 + shortname: ro2 + longname: Ch3coch2o2 + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217121 + shortname: ethp + longname: Peroxy radical from c2h6 + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217122 + shortname: hc3p + longname: Peroxy radical from hc3 + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217123 + shortname: hc5p + longname: Peroxy radical from hc5 + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217124 + shortname: bigene + longname: Lumped alkenes + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217125 + shortname: hc8p + longname: Peroxy radical from hc8 + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217126 + shortname: bigalk + longname: Lumped alkanes + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217127 + shortname: etep + longname: Peroxy radical from c2h4 + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217128 + shortname: mek + longname: C4h8o + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217129 + shortname: oltp + longname: Peroxy radical from terminal alkenes + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217130 + shortname: eneo2 + longname: C4h9o3 + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217131 + shortname: olip + longname: Peroxy radical from internal alkenes + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217132 + shortname: meko2 + longname: Ch3coch(oo)ch3 + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217133 + shortname: isopo2 + longname: Peroxy radical from c5h8 + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217134 + shortname: mekooh + longname: Ch3coch(ooh)ch3 + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217135 + shortname: apip + longname: Peroxy radical from a-pinene cyclic terpenes + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217136 + shortname: mco3 + longname: Ch2=c(ch3)co3 + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217137 + shortname: limp + longname: Peroxy radical from d-limonene cyclic diene + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217138 + shortname: mvk + longname: Methylvinylketone + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217139 + shortname: pho + longname: Phenoxy radical + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217140 + shortname: tolp + longname: Peroxy radical from toluene and less reactive aromatics + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217141 + shortname: macro2 + longname: Ch3c(o)ch(oo)ch2oh + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217142 + shortname: xylp + longname: Peroxy radical from xylene and more reactive aromatics + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217143 + shortname: macrooh + longname: H3c(o)ch(ooh)ch2oh + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217144 + shortname: cslp + longname: Peroxy radical from cresol + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217145 + shortname: mpan + longname: Unsaturated pans + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217146 + shortname: tco3_c + longname: Unsaturated acyl peroxy radical + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217147 + shortname: ketp + longname: Peroxy radical from ketones + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217148 + shortname: alko2 + longname: C5h11o2 + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217149 + shortname: olnn + longname: No3-alkenes adduct reacting to form carbonitrates + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217150 + shortname: alkooh + longname: C5h11ooh + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217151 + shortname: olnd + longname: No3-alkenes adduct reacting via decomposition + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217152 + shortname: bigald + longname: Hoch2c(ch3)=chcho + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217153 + shortname: hydrald + longname: C5h6o2 + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217154 + shortname: sulf + longname: Trop sulfuric acid + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217155 + shortname: ox + longname: Oxides + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217156 + shortname: isopno3 + longname: Ch2chc(ch3)(oo)ch2ono2 + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217157 + shortname: onitr + longname: C3 organic nitrate + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217158 + shortname: clox + longname: Chlorine oxides + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217159 + shortname: brox + longname: Bromine oxides + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217160 + shortname: xooh + longname: Hoch2c(ooh)(ch3)chchoh + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217161 + shortname: isopooh + longname: Hoch2c(ooh)(ch3)ch=ch2 + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217162 + shortname: toluene + longname: Lumped aromatics + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217163 + shortname: dmso + longname: Dimethyl sulfoxyde + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217164 + shortname: tolo2 + longname: C7h9o5 + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217165 + shortname: tolooh + longname: C7h10o5 + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217166 + shortname: h2s + longname: Hydrogensulfide + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217167 + shortname: xoh + longname: C7h10o6 + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217168 + shortname: noy + longname: All nitrogen oxides + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217169 + shortname: cly + longname: Chlorine family + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217170 + shortname: terpo2 + longname: C10h16(oh)(oo) + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217171 + shortname: bry + longname: Bromine family + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217172 + shortname: terpooh + longname: C10h18o3 + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217173 + shortname: n + longname: Nitrogen atom + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217174 + shortname: clo + longname: Chlorine monoxide + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217175 + shortname: cl_c + longname: Chlorine atom + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217176 + shortname: bro + longname: Bromine monoxide + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217177 + shortname: h_c + longname: Hydrogen atom + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217178 + shortname: ch3 + longname: Methyl group + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217179 + shortname: addt + longname: Aromatic-ho from toluene and less reactive aromatics + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217180 + shortname: addx + longname: Aromatic-ho from xylene and more reactive aromatics + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217181 + shortname: nh4no3 + longname: Ammonium nitrate + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217182 + shortname: addc + longname: Aromatic-ho from csl + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217183 + shortname: soa1 + longname: Secondary organic aerosol type 1 + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217184 + shortname: soa2a + longname: Secondary organic aerosol type 2a + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217185 + shortname: soa2b + longname: Secondary organic aerosol type 2b + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217186 + shortname: sog1 + longname: Condensable gas type 1 + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217187 + shortname: sog2a + longname: Condensable gas type 2a + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217188 + shortname: sog2b + longname: Condensable gas type 2b + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217189 + shortname: so3 + longname: Sulfur trioxide + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217190 + shortname: ocs_c + longname: Carbonyl sulfide + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217191 + shortname: br + longname: Bromine atom + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217192 + shortname: br2 + longname: Bromine + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217193 + shortname: brcl + longname: Bromine monochloride + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217194 + shortname: brono2 + longname: Bromine nitrate + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217195 + shortname: ch2br2 + longname: Dibromomethane + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217196 + shortname: ch3o + longname: Methoxy radical + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217197 + shortname: chbr3 + longname: Tribromomethane + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217198 + shortname: cloo + longname: Asymmetric chlorine dioxide radical + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217199 + shortname: h2 + longname: Hydrogen + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217200 + shortname: hcl + longname: Hydrogen chloride + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217201 + shortname: hco + longname: Formyl radical + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217202 + shortname: hf + longname: Hydrogen fluoride + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 217203 + shortname: o + longname: Oxygen atom + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217204 + shortname: o1d + longname: Excited oxygen atom + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217205 + shortname: o3p + longname: Ground state oxygen atom + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217206 + shortname: strataer + longname: Stratospheric aerosol + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217222 + shortname: AROO2 + longname: Aromatic peroxy radical mass mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 217223 + shortname: C2H2 + longname: Ethyne mass mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 217224 + shortname: CH3CN + longname: Acetonitrile mass mixing ratio + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 217225 + shortname: CH3O2NO2 + longname: Methyl peroxy nitrate mass mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 217226 + shortname: HCN + longname: Hydrogen cyanide mass mixing ratio + units: kg kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 217227 + shortname: HPALD1 + longname: Hydroperoxy aldehydes type 1 mass mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 217228 + shortname: HPALD + longname: Hydroperoxy aldehydes type 2 mass mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 217229 + shortname: ISOPBO2 + longname: Isoprene peroxy type B mass mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 217230 + shortname: ISOPDO2 + longname: Isoprene peroxy type D mass mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 217231 + shortname: VOCA + longname: Anthropogenic volatile organic compounds mass mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 217232 + shortname: VOCBB + longname: Biomass burning volatile organic compounds mass mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218003 + shortname: tc_h2o2 + longname: Total column hydrogen peroxide + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218004 + shortname: tc_ch4 + longname: Total column methane + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218006 + shortname: tc_hno3 + longname: Total column nitric acid + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218007 + shortname: tc_ch3ooh + longname: Total column methyl peroxide + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218009 + shortname: tc_par + longname: Total column paraffins + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218010 + shortname: tc_c2h4 + longname: Total column ethene + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218011 + shortname: tc_ole + longname: Total column olefins + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218012 + shortname: tc_ald2 + longname: Total column aldehydes + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218013 + shortname: tc_pan + longname: Total column peroxyacetyl nitrate + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218014 + shortname: tc_rooh + longname: Total column peroxides + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218015 + shortname: tc_onit + longname: Total column organic nitrates + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218016 + shortname: tc_c5h8 + longname: Total column isoprene + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218018 + shortname: tc_dms + longname: Total column dimethyl sulfide + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218019 + shortname: tc_nh3 + longname: Total column ammonia + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218020 + shortname: tc_so4 + longname: Total column sulfate + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218021 + shortname: tc_nh4 + longname: Total column ammonium + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218022 + shortname: tc_msa + longname: Total column methane sulfonic acid + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218023 + shortname: tc_ch3cocho + longname: Total column methyl glyoxal + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218024 + shortname: tc_o3s + longname: Total column stratospheric ozone + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218026 + shortname: tc_pb + longname: Total column lead + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218027 + shortname: tc_no + longname: Total column nitrogen monoxide + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218028 + shortname: tc_ho2 + longname: Total column hydroperoxy radical + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218029 + shortname: tc_ch3o2 + longname: Total column methylperoxy radical + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218030 + shortname: tc_oh + longname: Total column hydroxyl radical + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218032 + shortname: tc_no3 + longname: Total column nitrate radical + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218033 + shortname: tc_n2o5 + longname: Total column dinitrogen pentoxide + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218034 + shortname: tc_ho2no2 + longname: Total column pernitric acid + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218035 + shortname: tc_c2o3 + longname: Total column peroxy acetyl radical + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218036 + shortname: tc_ror + longname: Total column organic ethers + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218037 + shortname: tc_rxpar + longname: Total column PAR budget corrector + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218038 + shortname: tc_xo2 + longname: Total column NO to NO2 operator + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218039 + shortname: tc_xo2n + longname: Total column NO to alkyl nitrate operator + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218040 + shortname: tc_nh2 + longname: Total column amine + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218041 + shortname: tc_psc + longname: Total column polar stratospheric cloud + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218042 + shortname: tc_ch3oh + longname: Total column methanol + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218043 + shortname: tc_hcooh + longname: Total column formic acid + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218044 + shortname: tc_mcooh + longname: Total column methacrylic acid + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218045 + shortname: tc_c2h6 + longname: Total column ethane + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218046 + shortname: tc_c2h5oh + longname: Total column ethanol + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218047 + shortname: tc_c3h8 + longname: Total column propane + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218048 + shortname: tc_c3h6 + longname: Total column propene + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218049 + shortname: tc_c10h16 + longname: Total column terpenes + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218050 + shortname: tc_ispd + longname: Total column methacrolein MVK + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218051 + shortname: tc_no3_a + longname: Total column nitrate + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218052 + shortname: tc_ch3coch3 + longname: Total column acetone + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218053 + shortname: tc_aco2 + longname: Total column acetone product + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218054 + shortname: tc_ic3h7o2 + longname: Total column IC3H7O2 + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218055 + shortname: tc_hypropo2 + longname: Total column HYPROPO2 + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218056 + shortname: tc_noxa + longname: Total column nitrogen oxides Transp + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218057 + shortname: tc_co2_c + longname: Total column of carbon dioxide (chemistry) + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218058 + shortname: tc_n2o_c + longname: Total column of nitrous oxide (chemistry) + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218059 + shortname: tc_h2o + longname: Total column of water vapour (chemistry) + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218060 + shortname: tc_o2 + longname: Total column of oxygen + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218061 + shortname: tc_o2_1s + longname: Total column of singlet oxygen + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218062 + shortname: tc_o2_1d + longname: Total column of singlet delta oxygen + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218063 + shortname: tc_oclo + longname: Total column of chlorine dioxide + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218064 + shortname: tc_clono2 + longname: Total column of chlorine nitrate + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218065 + shortname: tc_hocl + longname: Total column of hypochlorous acid + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218066 + shortname: tc_cl2 + longname: Total column of chlorine + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218067 + shortname: tc_clno2 + longname: Total column of nitryl chloride + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218068 + shortname: tc_hbr + longname: Total column of hydrogen bromide + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218069 + shortname: tc_cl2o2 + longname: Total column of dichlorine dioxide + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218070 + shortname: tc_hobr + longname: Total column of hypobromous acid + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218071 + shortname: tc_cfc11 + longname: Total column of trichlorofluoromethane + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218072 + shortname: tc_cfc12 + longname: Total column of dichlorodifluoromethane + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218073 + shortname: tc_cfc113 + longname: Total column of trichlorotrifluoroethane + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218074 + shortname: tc_cfc114 + longname: Total column of dichlorotetrafluoroethane + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218075 + shortname: tc_cfc115 + longname: Total column of chloropentafluoroethane + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218076 + shortname: tc_ccl4 + longname: Total column of tetrachloromethane + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218077 + shortname: tc_ch3ccl3 + longname: Total column of methyl chloroform + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218078 + shortname: tc_ch3cl + longname: Total column of methyl chloride + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218079 + shortname: tc_hcfc22 + longname: Total column of chlorodifluoromethane + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218080 + shortname: tc_ch3br + longname: Total column of methyl bromide + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218081 + shortname: tc_ha1202 + longname: Total column of dibromodifluoromethane + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218082 + shortname: tc_ha1211 + longname: Total column of bromochlorodifluoromethane + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218083 + shortname: tc_ha1301 + longname: Total column of trifluorobromomethane + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218084 + shortname: tc_ha2402 + longname: Total column of cbrf2cbrf2 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218085 + shortname: tc_h2so4 + longname: Total column of sulfuric acid + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218086 + shortname: tc_hono + longname: Total column of nitrous acid + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218087 + shortname: tc_hc3 + longname: Total column of alkanes low oh rate + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218088 + shortname: tc_hc5 + longname: Total column of alkanes med oh rate + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218089 + shortname: tc_hc8 + longname: Total column of alkanes high oh rate + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218090 + shortname: tc_olt + longname: Total column of terminal alkenes + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218091 + shortname: tc_oli + longname: Total column of internal alkenes + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218092 + shortname: tc_c2h5o2 + longname: Total column of ethylperoxy radical + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218093 + shortname: tc_dien + longname: Total column of butadiene + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218094 + shortname: tc_c2h5ooh + longname: Total column of ethyl hydroperoxide + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218095 + shortname: tc_api + longname: Total column of a-pinene cyclic terpenes + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218096 + shortname: tc_ch3cooh + longname: Total column of acetic acid + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218097 + shortname: tc_lim + longname: Total column of d-limonene cyclic diene + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218098 + shortname: tc_ch3cho + longname: Total column of acetaldehyde + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218099 + shortname: tc_tol + longname: Total column of toluene and less reactive aromatics + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218100 + shortname: tc_xyl + longname: Total column of xylene and more reactive aromatics + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218101 + shortname: tc_glyald + longname: Total column of glycolaldehyde + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218102 + shortname: tc_cresol + longname: Total column of cresol + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218103 + shortname: tc_ald + longname: Total column of acetaldehyde and higher + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218104 + shortname: tc_ch3coooh + longname: Total column of peracetic acid + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218105 + shortname: tc_ket + longname: Total column of ketones + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218106 + shortname: tc_eo2 + longname: Total column of hoch2ch2o2 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218107 + shortname: tc_glyoxal + longname: Total column of glyoxal + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218108 + shortname: tc_eo + longname: Total column of hoch2ch2o + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218109 + shortname: tc_dcb + longname: Total column of unsaturated dicarbonyls + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218110 + shortname: tc_macr + longname: Total column of methacrolein + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218111 + shortname: tc_udd + longname: Total column of unsaturated hydroxy dicarbonyl + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218112 + shortname: tc_c3h7o2 + longname: Total column of isopropyldioxidanyl + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218113 + shortname: tc_hket + longname: Total column of hydroxy ketone + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218114 + shortname: tc_c3h7ooh + longname: Total column of isopropyl hydroperoxide + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218115 + shortname: tc_po2 + longname: Total column of c3h6oho2 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218116 + shortname: tc_pooh + longname: Total column of c3h6ohooh + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218117 + shortname: tc_op2 + longname: Total column of higher organic peroxides + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218118 + shortname: tc_hyac + longname: Total column of hydroxyacetone + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218119 + shortname: tc_paa + longname: Total column of peroxyacetic acid + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218120 + shortname: tc_ro2 + longname: Total column of ch3coch2o2 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218121 + shortname: tc_ethp + longname: Total column of peroxy radical from c2h6 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218122 + shortname: tc_hc3p + longname: Total column of peroxy radical from hc3 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218123 + shortname: tc_hc5p + longname: Total column of peroxy radical from hc5 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218124 + shortname: tc_bigene + longname: Total column of lumped alkenes + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218125 + shortname: tc_hc8p + longname: Total column of peroxy radical from hc8 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218126 + shortname: tc_bigalk + longname: Total column of lumped alkanes + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218127 + shortname: tc_etep + longname: Total column of peroxy radical from c2h4 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218128 + shortname: tc_mek + longname: Total column of c4h8o + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218129 + shortname: tc_oltp + longname: Total column of peroxy radical from terminal alkenes + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218130 + shortname: tc_eneo2 + longname: Total column of c4h9o3 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218131 + shortname: tc_olip + longname: Total column of peroxy radical from internal alkenes + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218132 + shortname: tc_meko2 + longname: Total column of ch3coch(oo)ch3 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218133 + shortname: tc_isopo2 + longname: Total column of peroxy radical from c5h8 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218134 + shortname: tc_mekooh + longname: Total column of ch3coch(ooh)ch3 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218135 + shortname: tc_apip + longname: Total column of peroxy radical from a-pinene cyclic terpenes + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218136 + shortname: tc_mco3 + longname: Total column of ch2=c(ch3)co3 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218137 + shortname: tc_limp + longname: Total column of peroxy radical from d-limonene cyclic diene + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218138 + shortname: tc_mvk + longname: Total column of methylvinylketone + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218139 + shortname: tc_pho + longname: Total column of phenoxy radical + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218140 + shortname: tc_tolp + longname: Total column of peroxy radical from toluene and less reactive aromatics + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218141 + shortname: tc_macro2 + longname: Total column of ch3c(o)ch(oo)ch2oh + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218142 + shortname: tc_xylp + longname: Total column of peroxy radical from xylene and more reactive aromatics + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218143 + shortname: tc_macrooh + longname: Total column of h3c(o)ch(ooh)ch2oh + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218144 + shortname: tc_cslp + longname: Total column of peroxy radical from cresol + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218145 + shortname: tc_mpan + longname: Total column of unsaturated pans + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218146 + shortname: tc_tco3_c + longname: Total column of unsaturated acyl peroxy radical + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218147 + shortname: tc_ketp + longname: Total column of peroxy radical from ketones + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218148 + shortname: tc_alko2 + longname: Total column of c5h11o2 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218149 + shortname: tc_olnn + longname: Total column of no3-alkenes adduct reacting to form carbonitrates + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218150 + shortname: tc_alkooh + longname: Total column of c5h11ooh + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218151 + shortname: tc_olnd + longname: Total column of no3-alkenes adduct reacting via decomposition + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218152 + shortname: tc_bigald + longname: Total column of hoch2c(ch3)=chcho + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218153 + shortname: tc_hydrald + longname: Total column of c5h6o2 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218154 + shortname: tc_sulf + longname: Total column of trop sulfuric acid + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218155 + shortname: tc_ox + longname: Total column of oxides + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218156 + shortname: tc_isopno3 + longname: Total column of ch2chc(ch3)(oo)ch2ono2 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218157 + shortname: tc_onitr + longname: Total column of c3 organic nitrate + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218158 + shortname: tc_clox + longname: Total column of chlorine oxides + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218159 + shortname: tc_brox + longname: Total column of bromine oxides + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218160 + shortname: tc_xooh + longname: Total column of hoch2c(ooh)(ch3)chchoh + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218161 + shortname: tc_isopooh + longname: Total column of hoch2c(ooh)(ch3)ch=ch2 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218162 + shortname: tc_toluene + longname: Total column of lumped aromatics + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218163 + shortname: tc_dmso + longname: Total column of dimethyl sulfoxyde + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218164 + shortname: tc_tolo2 + longname: Total column of c7h9o5 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218165 + shortname: tc_tolooh + longname: Total column of c7h10o5 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218166 + shortname: tc_h2s + longname: Total column of hydrogensulfide + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218167 + shortname: tc_xoh + longname: Total column of c7h10o6 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218168 + shortname: tc_noy + longname: Total column of all nitrogen oxides + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218169 + shortname: tc_cly + longname: Total column of chlorine family + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218170 + shortname: tc_terpo2 + longname: Total column of c10h16(oh)(oo) + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218171 + shortname: tc_bry + longname: Total column of bromine family + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218172 + shortname: tc_terpooh + longname: Total column of c10h18o3 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218173 + shortname: tc_n + longname: Total column of nitrogen atom + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218174 + shortname: tc_clo + longname: Total column of chlorine monoxide + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218175 + shortname: tc_cl_c + longname: Total column of chlorine atom + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218176 + shortname: tc_bro + longname: Total column of bromine monoxide + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218177 + shortname: tc_h_c + longname: Total column of hydrogen atom + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218178 + shortname: tc_ch3 + longname: Total column of methyl group + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218179 + shortname: tc_addt + longname: Total column of aromatic-ho from toluene and less reactive aromatics + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218180 + shortname: tc_addx + longname: Total column of aromatic-ho from xylene and more reactive aromatics + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218181 + shortname: tc_nh4no3 + longname: Total column of ammonium nitrate + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218182 + shortname: tc_addc + longname: Total column of aromatic-ho from csl + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218183 + shortname: tc_soa1 + longname: Total column of secondary organic aerosol type 1 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218184 + shortname: tc_soa2a + longname: Total column of secondary organic aerosol type 2a + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218185 + shortname: tc_soa2b + longname: Total column of secondary organic aerosol type 2b + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218186 + shortname: tc_sog1 + longname: Total column of condensable gas type 1 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218187 + shortname: tc_sog2a + longname: Total column of condensable gas type 2a + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218188 + shortname: tc_sog2b + longname: Total column of condensable gas type 2b + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218189 + shortname: tc_so3 + longname: Total column of sulfur trioxide + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218190 + shortname: tc_ocs_c + longname: Total column of carbonyl sulfide + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218191 + shortname: tc_br + longname: Total column of bromine atom + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218192 + shortname: tc_br2 + longname: Total column of bromine + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218193 + shortname: tc_brcl + longname: Total column of bromine monochloride + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218194 + shortname: tc_brono2 + longname: Total column of bromine nitrate + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218195 + shortname: tc_ch2br2 + longname: Total column of dibromomethane + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218196 + shortname: tc_ch3o + longname: Total column of methoxy radical + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218197 + shortname: tc_chbr3 + longname: Total column of tribromomethane + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218198 + shortname: tc_cloo + longname: Total column of asymmetric chlorine dioxide radical + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218199 + shortname: tc_h2 + longname: Total column of hydrogen + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218200 + shortname: tc_hcl + longname: Total column of hydrogen chloride + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218201 + shortname: tc_hco + longname: Total column of formyl radical + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218202 + shortname: tc_hf + longname: Total column of hydrogen fluoride + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 98 +- id: 218203 + shortname: tc_o + longname: Total column of oxygen atom + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218204 + shortname: tc_o1d + longname: Total column of excited oxygen atom + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218205 + shortname: tc_o3p + longname: Total column of ground state oxygen atom + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218206 + shortname: tc_strataer + longname: Total column of stratospheric aerosol + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218221 + shortname: tc_VSO2 + longname: Column integrated mass density of Volcanic sulfur dioxide + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 218222 + shortname: tc_AROO2 + longname: Column integrated mass density of Aromatic peroxy radical + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 218223 + shortname: tc_C2H2 + longname: Column integrated mass density of Ethyne + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 218224 + shortname: tc_CH3CN + longname: Column integrated mass density of Acetonitrile + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 218225 + shortname: tc_CH3O2NO2 + longname: Column integrated mass density of Methyl peroxy nitrate + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 218226 + shortname: tc_HCN + longname: Column integrated mass density of Hydrogen cyanide + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 218227 + shortname: tc_HPALD1 + longname: Column integrated mass density of Hydroperoxy aldehydes type 1 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 218228 + shortname: tc_HPALD2 + longname: Column integrated mass density of Hydroperoxy aldehydes type 2 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 218229 + shortname: tc_ISOPBO2 + longname: Column integrated mass density of Isoprene peroxy type B + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 218230 + shortname: tc_ISOPDO2 + longname: Column integrated mass density of Isoprene peroxy type D + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 218231 + shortname: tc_VOCA + longname: Column integrated mass density of Anthropogenic volatile organic compounds + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 218232 + shortname: tc_VOCBB + longname: Column integrated mass density of Biomass burning volatile organic compounds + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219001 + shortname: e_go3 + longname: Ozone emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219002 + shortname: e_nox + longname: Nitrogen oxides emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219003 + shortname: e_h2o2 + longname: Hydrogen peroxide emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219004 + shortname: e_ch4 + longname: Methane emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219005 + shortname: e_co + longname: Carbon monoxide emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219006 + shortname: e_hno3 + longname: Nitric acid emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219007 + shortname: e_ch3ooh + longname: Methyl peroxide emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219008 + shortname: e_hcho + longname: Formaldehyde emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219009 + shortname: e_par + longname: Paraffins emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219010 + shortname: e_c2h4 + longname: Ethene emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219011 + shortname: e_ole + longname: Olefins emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219012 + shortname: e_ald2 + longname: Aldehydes emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219013 + shortname: e_pan + longname: Peroxyacetyl nitrate emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219014 + shortname: e_rooh + longname: Peroxides emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219015 + shortname: e_onit + longname: Organic nitrates emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219016 + shortname: e_c5h8 + longname: Isoprene emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219017 + shortname: e_so2 + longname: Sulfur dioxide emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219018 + shortname: e_dms + longname: Dimethyl sulfide emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219019 + shortname: e_nh3 + longname: Ammonia emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219020 + shortname: e_so4 + longname: Sulfate emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219021 + shortname: e_nh4 + longname: Ammonium emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219022 + shortname: e_msa + longname: Methane sulfonic acid emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219023 + shortname: e_ch3cocho + longname: Methyl glyoxal emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219024 + shortname: e_o3s + longname: Stratospheric ozone emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219025 + shortname: e_ra + longname: Radon emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219026 + shortname: e_pb + longname: Lead emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219027 + shortname: e_no + longname: Nitrogen monoxide emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219028 + shortname: e_ho2 + longname: Hydroperoxy radical emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219029 + shortname: e_ch3o2 + longname: Methylperoxy radical emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219030 + shortname: e_oh + longname: Hydroxyl radical emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219031 + shortname: e_no2 + longname: Nitrogen dioxide emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219032 + shortname: e_no3 + longname: Nitrate radical emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219033 + shortname: e_n2o5 + longname: Dinitrogen pentoxide emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219034 + shortname: e_ho2no2 + longname: Pernitric acid emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219035 + shortname: e_c2o3 + longname: Peroxy acetyl radical emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219036 + shortname: e_ror + longname: Organic ethers emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219037 + shortname: e_rxpar + longname: PAR budget corrector emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219038 + shortname: e_xo2 + longname: NO to NO2 operator emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219039 + shortname: e_xo2n + longname: NO to alkyl nitrate operator emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219040 + shortname: e_nh2 + longname: Amine emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219041 + shortname: e_psc + longname: Polar stratospheric cloud emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219042 + shortname: e_ch3oh + longname: Methanol emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219043 + shortname: e_hcooh + longname: Formic acid emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219044 + shortname: e_mcooh + longname: Methacrylic acid emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219045 + shortname: e_c2h6 + longname: Ethane emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219046 + shortname: e_c2h5oh + longname: Ethanol emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219047 + shortname: e_c3h8 + longname: Propane emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219048 + shortname: e_c3h6 + longname: Propene emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219049 + shortname: e_c10h16 + longname: Terpenes emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219050 + shortname: e_ispd + longname: Methacrolein MVK emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219051 + shortname: e_no3_a + longname: Nitrate emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219052 + shortname: e_ch3coch3 + longname: Acetone emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219053 + shortname: e_aco2 + longname: Acetone product emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219054 + shortname: e_ic3h7o2 + longname: IC3H7O2 emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219055 + shortname: e_hypropo2 + longname: HYPROPO2 emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219056 + shortname: e_noxa + longname: Nitrogen oxides Transp emissions + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219057 + shortname: e_co2_c + longname: Emissions of carbon dioxide (chemistry) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219058 + shortname: e_n2o_c + longname: Emissions of nitrous oxide (chemistry) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219059 + shortname: e_h2o + longname: Emissions of water vapour (chemistry) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219060 + shortname: e_o2 + longname: Emissions of oxygen + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219061 + shortname: e_o2_1s + longname: Emissions of singlet oxygen + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219062 + shortname: e_o2_1d + longname: Emissions of singlet delta oxygen + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219063 + shortname: e_oclo + longname: Emissions of chlorine dioxide + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219064 + shortname: e_clono2 + longname: Emissions of chlorine nitrate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219065 + shortname: e_hocl + longname: Emissions of hypochlorous acid + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219066 + shortname: e_cl2 + longname: Emissions of chlorine + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219067 + shortname: e_clno2 + longname: Emissions of nitryl chloride + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219068 + shortname: e_hbr + longname: Emissions of hydrogen bromide + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219069 + shortname: e_cl2o2 + longname: Emissions of dichlorine dioxide + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219070 + shortname: e_hobr + longname: Emissions of hypobromous acid + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219071 + shortname: e_cfc11 + longname: Emissions of trichlorofluoromethane + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219072 + shortname: e_cfc12 + longname: Emissions of dichlorodifluoromethane + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219073 + shortname: e_cfc113 + longname: Emissions of trichlorotrifluoroethane + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219074 + shortname: e_cfc114 + longname: Emissions of dichlorotetrafluoroethane + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219075 + shortname: e_cfc115 + longname: Emissions of chloropentafluoroethane + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219076 + shortname: e_ccl4 + longname: Emissions of tetrachloromethane + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219077 + shortname: e_ch3ccl3 + longname: Emissions of methyl chloroform + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219078 + shortname: e_ch3cl + longname: Emissions of methyl chloride + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219079 + shortname: e_hcfc22 + longname: Emissions of chlorodifluoromethane + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219080 + shortname: e_ch3br + longname: Emissions of methyl bromide + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219081 + shortname: e_ha1202 + longname: Emissions of dibromodifluoromethane + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219082 + shortname: e_ha1211 + longname: Emissions of bromochlorodifluoromethane + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219083 + shortname: e_ha1301 + longname: Emissions of trifluorobromomethane + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219084 + shortname: e_ha2402 + longname: Emissions of cbrf2cbrf2 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219085 + shortname: e_h2so4 + longname: Emissions of sulfuric acid + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219086 + shortname: e_hono + longname: Emissions of nitrous acid + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219087 + shortname: e_hc3 + longname: Emissions of alkanes low oh rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219088 + shortname: e_hc5 + longname: Emissions of alkanes med oh rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219089 + shortname: e_hc8 + longname: Emissions of alkanes high oh rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219090 + shortname: e_olt + longname: Emissions of terminal alkenes + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219091 + shortname: e_oli + longname: Emissions of internal alkenes + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219092 + shortname: e_c2h5o2 + longname: Emissions of ethylperoxy radical + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219093 + shortname: e_dien + longname: Emissions of butadiene + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219094 + shortname: e_c2h5ooh + longname: Emissions of ethyl hydroperoxide + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219095 + shortname: e_api + longname: Emissions of a-pinene cyclic terpenes + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219096 + shortname: e_ch3cooh + longname: Emissions of acetic acid + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219097 + shortname: e_lim + longname: Emissions of d-limonene cyclic diene + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219098 + shortname: e_ch3cho + longname: Emissions of acetaldehyde + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219099 + shortname: e_tol + longname: Emissions of toluene and less reactive aromatics + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219100 + shortname: e_xyl + longname: Emissions of xylene and more reactive aromatics + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219101 + shortname: e_glyald + longname: Emissions of glycolaldehyde + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219102 + shortname: e_cresol + longname: Emissions of cresol + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219103 + shortname: e_ald + longname: Emissions of acetaldehyde and higher + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219104 + shortname: e_ch3coooh + longname: Emissions of peracetic acid + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219105 + shortname: e_ket + longname: Emissions of ketones + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219106 + shortname: e_eo2 + longname: Emissions of hoch2ch2o2 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219107 + shortname: e_glyoxal + longname: Emissions of glyoxal + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219108 + shortname: e_eo + longname: Emissions of hoch2ch2o + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219109 + shortname: e_dcb + longname: Emissions of unsaturated dicarbonyls + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219110 + shortname: e_macr + longname: Emissions of methacrolein + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219111 + shortname: e_udd + longname: Emissions of unsaturated hydroxy dicarbonyl + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219112 + shortname: e_c3h7o2 + longname: Emissions of isopropyldioxidanyl + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219113 + shortname: e_hket + longname: Emissions of hydroxy ketone + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219114 + shortname: e_c3h7ooh + longname: Emissions of isopropyl hydroperoxide + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219115 + shortname: e_po2 + longname: Emissions of c3h6oho2 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219116 + shortname: e_pooh + longname: Emissions of c3h6ohooh + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219117 + shortname: e_op2 + longname: Emissions of higher organic peroxides + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219118 + shortname: e_hyac + longname: Emissions of hydroxyacetone + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219119 + shortname: e_paa + longname: Emissions of peroxyacetic acid + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219120 + shortname: e_ro2 + longname: Emissions of ch3coch2o2 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219121 + shortname: e_ethp + longname: Emissions of peroxy radical from c2h6 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219122 + shortname: e_hc3p + longname: Emissions of peroxy radical from hc3 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219123 + shortname: e_hc5p + longname: Emissions of peroxy radical from hc5 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219124 + shortname: e_bigene + longname: Emissions of lumped alkenes + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219125 + shortname: e_hc8p + longname: Emissions of peroxy radical from hc8 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219126 + shortname: e_bigalk + longname: Emissions of lumped alkanes + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219127 + shortname: e_etep + longname: Emissions of peroxy radical from c2h4 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219128 + shortname: e_mek + longname: Emissions of c4h8o + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219129 + shortname: e_oltp + longname: Emissions of peroxy radical from terminal alkenes + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219130 + shortname: e_eneo2 + longname: Emissions of c4h9o3 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219131 + shortname: e_olip + longname: Emissions of peroxy radical from internal alkenes + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219132 + shortname: e_meko2 + longname: Emissions of ch3coch(oo)ch3 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219133 + shortname: e_isopo2 + longname: Emissions of peroxy radical from c5h8 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219134 + shortname: e_mekooh + longname: Emissions of ch3coch(ooh)ch3 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219135 + shortname: e_apip + longname: Emissions of peroxy radical from a-pinene cyclic terpenes + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219136 + shortname: e_mco3 + longname: Emissions of ch2=c(ch3)co3 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219137 + shortname: e_limp + longname: Emissions of peroxy radical from d-limonene cyclic diene + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219138 + shortname: e_mvk + longname: Emissions of methylvinylketone + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219139 + shortname: e_pho + longname: Emissions of phenoxy radical + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219140 + shortname: e_tolp + longname: Emissions of peroxy radical from toluene and less reactive aromatics + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219141 + shortname: e_macro2 + longname: Emissions of ch3c(o)ch(oo)ch2oh + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219142 + shortname: e_xylp + longname: Emissions of peroxy radical from xylene and more reactive aromatics + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219143 + shortname: e_macrooh + longname: Emissions of h3c(o)ch(ooh)ch2oh + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219144 + shortname: e_cslp + longname: Emissions of peroxy radical from cresol + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219145 + shortname: e_mpan + longname: Emissions of unsaturated pans + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219146 + shortname: e_tco3_c + longname: Emissions of unsaturated acyl peroxy radical + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219147 + shortname: e_ketp + longname: Emissions of peroxy radical from ketones + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219148 + shortname: e_alko2 + longname: Emissions of c5h11o2 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219149 + shortname: e_olnn + longname: Emissions of no3-alkenes adduct reacting to form carbonitrates + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219150 + shortname: e_alkooh + longname: Emissions of c5h11ooh + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219151 + shortname: e_olnd + longname: Emissions of no3-alkenes adduct reacting via decomposition + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219152 + shortname: e_bigald + longname: Emissions of hoch2c(ch3)=chcho + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219153 + shortname: e_hydrald + longname: Emissions of c5h6o2 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219154 + shortname: e_sulf + longname: Emissions of trop sulfuric acid + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219155 + shortname: e_ox + longname: Emissions of oxides + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219156 + shortname: e_isopno3 + longname: Emissions of ch2chc(ch3)(oo)ch2ono2 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219157 + shortname: e_onitr + longname: Emissions of c3 organic nitrate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219158 + shortname: e_clox + longname: Emissions of chlorine oxides + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219159 + shortname: e_brox + longname: Emissions of bromine oxides + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219160 + shortname: e_xooh + longname: Emissions of hoch2c(ooh)(ch3)chchoh + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219161 + shortname: e_isopooh + longname: Emissions of hoch2c(ooh)(ch3)ch=ch2 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219162 + shortname: e_toluene + longname: Emissions of lumped aromatics + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219163 + shortname: e_dmso + longname: Emissions of dimethyl sulfoxyde + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219164 + shortname: e_tolo2 + longname: Emissions of c7h9o5 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219165 + shortname: e_tolooh + longname: Emissions of c7h10o5 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219166 + shortname: e_h2s + longname: Emissions of hydrogensulfide + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219167 + shortname: e_xoh + longname: Emissions of c7h10o6 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219168 + shortname: e_noy + longname: Emissions of all nitrogen oxides + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219169 + shortname: e_cly + longname: Emissions of chlorine family + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219170 + shortname: e_terpo2 + longname: Emissions of c10h16(oh)(oo) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219171 + shortname: e_bry + longname: Emissions of bromine family + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219172 + shortname: e_terpooh + longname: Emissions of c10h18o3 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219173 + shortname: e_n + longname: Emissions of nitrogen atom + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219174 + shortname: e_clo + longname: Emissions of chlorine monoxide + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219175 + shortname: e_cl_c + longname: Emissions of chlorine atom + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219176 + shortname: e_bro + longname: Emissions of bromine monoxide + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219177 + shortname: e_h_c + longname: Emissions of hydrogen atom + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219178 + shortname: e_ch3 + longname: Emissions of methyl group + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219179 + shortname: e_addt + longname: Emissions of aromatic-ho from toluene and less reactive aromatics + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219180 + shortname: e_addx + longname: Emissions of aromatic-ho from xylene and more reactive aromatics + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219181 + shortname: e_nh4no3 + longname: Emissions of ammonium nitrate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219182 + shortname: e_addc + longname: Emissions of aromatic-ho from csl + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219183 + shortname: e_soa1 + longname: Emissions of secondary organic aerosol type 1 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219184 + shortname: e_soa2a + longname: Emissions of secondary organic aerosol type 2a + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219185 + shortname: e_soa2b + longname: Emissions of secondary organic aerosol type 2b + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219186 + shortname: e_sog1 + longname: Emissions of condensable gas type 1 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219187 + shortname: e_sog2a + longname: Emissions of condensable gas type 2a + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219188 + shortname: e_sog2b + longname: Emissions of condensable gas type 2b + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219189 + shortname: e_so3 + longname: Emissions of sulfur trioxide + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219190 + shortname: e_ocs_c + longname: Emissions of carbonyl sulfide + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219191 + shortname: e_br + longname: Emissions of bromine atom + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219192 + shortname: e_br2 + longname: Emissions of bromine + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219193 + shortname: e_brcl + longname: Emissions of bromine monochloride + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219194 + shortname: e_brono2 + longname: Emissions of bromine nitrate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219195 + shortname: e_ch2br2 + longname: Emissions of dibromomethane + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219196 + shortname: e_ch3o + longname: Emissions of methoxy radical + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219197 + shortname: e_chbr3 + longname: Emissions of tribromomethane + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219198 + shortname: e_cloo + longname: Emissions of asymmetric chlorine dioxide radical + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219199 + shortname: e_h2 + longname: Emissions of hydrogen + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219200 + shortname: e_hcl + longname: Emissions of hydrogen chloride + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219201 + shortname: e_hco + longname: Emissions of formyl radical + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219202 + shortname: e_hf + longname: Emissions of hydrogen fluoride + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219203 + shortname: e_o + longname: Emissions of oxygen atom + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219204 + shortname: e_o1d + longname: Emissions of excited oxygen atom + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219205 + shortname: e_o3p + longname: Emissions of ground state oxygen atom + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219206 + shortname: e_strataer + longname: Emissions of stratospheric aerosol + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219207 + shortname: parfire + longname: Wildfire flux of paraffins + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219208 + shortname: olefire + longname: Wildfire flux of olefines + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219209 + shortname: ald2fire + longname: Wildfire flux of aldehydes + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219210 + shortname: ketfire + longname: Wildfire flux of ketones + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219211 + shortname: apifire + longname: Wildfire flux of f a-pinene cyclic terpenes + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219212 + shortname: tolfire + longname: Wildfire flux of toluene less reactive aromatics + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219213 + shortname: xylfire + longname: Wildfire flux of xylene more reactive aromatics + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219214 + shortname: limfire + longname: Wildfire flux of d-limonene cyclic diene + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219215 + shortname: oltfire + longname: Wildfire flux of terminal alkenes + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219216 + shortname: hc3fire + longname: Wildfire flux of alkanes low oh rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219217 + shortname: hc5fire + longname: Wildfire flux of alkanes med oh rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219218 + shortname: hc8fire + longname: Wildfire flux of alkanes high oh rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219219 + shortname: hcnfire + longname: Wildfire flux of hydrogen cyanide + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219220 + shortname: ch3cnfire + longname: Wildfire flux of acetonitrile + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219221 + shortname: e_VSO2 + longname: Atmosphere emission mass flux of Volcanic sulfur dioxide + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 219222 + shortname: e_AROO2 + longname: Atmosphere emission mass flux of Aromatic peroxy radical + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 219223 + shortname: e_C2H2 + longname: Atmosphere emission mass flux of Ethyne + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 219224 + shortname: e_CH3CN + longname: Atmosphere emission mass flux of Acetonitrile + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 219225 + shortname: e_CH3O2NO2 + longname: Atmosphere emission mass flux of Methyl peroxy nitrate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 219226 + shortname: e_HCN + longname: Atmosphere emission mass flux of Hydrogen cyanide + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 219227 + shortname: e_HPALD1 + longname: Atmosphere emission mass flux of Hydroperoxy aldehydes type 1 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 219228 + shortname: e_HPALD2 + longname: Atmosphere emission mass flux of Hydroperoxy aldehydes type 2 + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 219229 + shortname: e_ISOPBO2 + longname: Atmosphere emission mass flux of Isoprene peroxy type B + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 219230 + shortname: e_ISOPDO2 + longname: Atmosphere emission mass flux of Isoprene peroxy type D + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 219231 + shortname: e_VOCA + longname: Atmosphere emission mass flux of Anthropogenic volatile organic compounds + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 219232 + shortname: e_VOCBB + longname: Atmosphere emission mass flux of Biomass burning volatile organic compounds + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 220228 + shortname: tpoc + longname: Total precipitation observation count + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221001 + shortname: dv_go3 + longname: Ozone deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221002 + shortname: dv_nox + longname: Nitrogen oxides deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221003 + shortname: dv_h2o2 + longname: Hydrogen peroxide deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221004 + shortname: dv_ch4 + longname: Methane deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221005 + shortname: dv_co + longname: Carbon monoxide deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221006 + shortname: dv_hno3 + longname: Nitric acid deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221007 + shortname: dv_ch3ooh + longname: Methyl peroxide deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221008 + shortname: dv_hcho + longname: Formaldehyde deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221009 + shortname: dv_par + longname: Paraffins deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221010 + shortname: dv_c2h4 + longname: Ethene deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221011 + shortname: dv_ole + longname: Olefins deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221012 + shortname: dv_ald2 + longname: Aldehydes deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221013 + shortname: dv_pan + longname: Peroxyacetyl nitrate deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221014 + shortname: dv_rooh + longname: Peroxides deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221015 + shortname: dv_onit + longname: Organic nitrates deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221016 + shortname: dv_c5h8 + longname: Isoprene deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221017 + shortname: dv_so2 + longname: Sulfur dioxide deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221018 + shortname: dv_dms + longname: Dimethyl sulfide deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221019 + shortname: dv_nh3 + longname: Ammonia deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221020 + shortname: dv_so4 + longname: Sulfate deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221021 + shortname: dv_nh4 + longname: Ammonium deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221022 + shortname: dv_msa + longname: Methane sulfonic acid deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221023 + shortname: dv_ch3cocho + longname: Methyl glyoxal deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221024 + shortname: dv_o3s + longname: Stratospheric ozone deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221025 + shortname: dv_ra + longname: Radon deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221026 + shortname: dv_pb + longname: Lead deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221027 + shortname: dv_no + longname: Nitrogen monoxide deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221028 + shortname: dv_ho2 + longname: Hydroperoxy radical deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221029 + shortname: dv_ch3o2 + longname: Methylperoxy radical deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221030 + shortname: dv_oh + longname: Hydroxyl radical deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221031 + shortname: dv_no2 + longname: Nitrogen dioxide deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221032 + shortname: dv_no3 + longname: Nitrate radical deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221033 + shortname: dv_n2o5 + longname: Dinitrogen pentoxide deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221034 + shortname: dv_ho2no2 + longname: Pernitric acid deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221035 + shortname: dv_c2o3 + longname: Peroxy acetyl radical deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221036 + shortname: dv_ror + longname: Organic ethers deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221037 + shortname: dv_rxpar + longname: PAR budget corrector deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221038 + shortname: dv_xo2 + longname: NO to NO2 operator deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221039 + shortname: dv_xo2n + longname: NO to alkyl nitrate operator deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221040 + shortname: dv_nh2 + longname: Amine deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221041 + shortname: dv_psc + longname: Polar stratospheric cloud deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221042 + shortname: dv_ch3oh + longname: Methanol deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221043 + shortname: dv_hcooh + longname: Formic acid deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221044 + shortname: dv_mcooh + longname: Methacrylic acid deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221045 + shortname: dv_c2h6 + longname: Ethane deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221046 + shortname: dv_c2h5oh + longname: Ethanol deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221047 + shortname: dv_c3h8 + longname: Propane deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221048 + shortname: dv_c3h6 + longname: Propene deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221049 + shortname: dv_c10h16 + longname: Terpenes deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221050 + shortname: dv_ispd + longname: Methacrolein MVK deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221051 + shortname: dv_no3_a + longname: Nitrate deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221052 + shortname: dv_ch3coch3 + longname: Acetone deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221053 + shortname: dv_aco2 + longname: Acetone product deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221054 + shortname: dv_ic3h7o2 + longname: IC3H7O2 deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221055 + shortname: dv_hypropo2 + longname: HYPROPO2 deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221056 + shortname: dv_noxa + longname: Nitrogen oxides Transp deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221057 + shortname: dv_co2_c + longname: Dry deposition velocity of carbon dioxide (chemistry) + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221058 + shortname: dv_n2o_c + longname: Dry deposition velocity of nitrous oxide (chemistry) + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221059 + shortname: dv_h2o + longname: Dry deposition velocity of water vapour (chemistry) + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221060 + shortname: dv_o2 + longname: Dry deposition velocity of oxygen + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221061 + shortname: dv_o2_1s + longname: Dry deposition velocity of singlet oxygen + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221062 + shortname: dv_o2_1d + longname: Dry deposition velocity of singlet delta oxygen + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221063 + shortname: dv_oclo + longname: Dry deposition velocity of chlorine dioxide + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221064 + shortname: dv_clono2 + longname: Dry deposition velocity of chlorine nitrate + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221065 + shortname: dv_hocl + longname: Dry deposition velocity of hypochlorous acid + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221066 + shortname: dv_cl2 + longname: Dry deposition velocity of chlorine + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221067 + shortname: dv_clno2 + longname: Dry deposition velocity of nitryl chloride + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221068 + shortname: dv_hbr + longname: Dry deposition velocity of hydrogen bromide + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221069 + shortname: dv_cl2o2 + longname: Dry deposition velocity of dichlorine dioxide + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221070 + shortname: dv_hobr + longname: Dry deposition velocity of hypobromous acid + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221071 + shortname: dv_cfc11 + longname: Dry deposition velocity of trichlorofluoromethane + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221072 + shortname: dv_cfc12 + longname: Dry deposition velocity of dichlorodifluoromethane + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221073 + shortname: dv_cfc113 + longname: Dry deposition velocity of trichlorotrifluoroethane + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221074 + shortname: dv_cfc114 + longname: Dry deposition velocity of dichlorotetrafluoroethane + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221075 + shortname: dv_cfc115 + longname: Dry deposition velocity of chloropentafluoroethane + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221076 + shortname: dv_ccl4 + longname: Dry deposition velocity of tetrachloromethane + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221077 + shortname: dv_ch3ccl3 + longname: Dry deposition velocity of methyl chloroform + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221078 + shortname: dv_ch3cl + longname: Dry deposition velocity of methyl chloride + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221079 + shortname: dv_hcfc22 + longname: Dry deposition velocity of chlorodifluoromethane + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221080 + shortname: dv_ch3br + longname: Dry deposition velocity of methyl bromide + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221081 + shortname: dv_ha1202 + longname: Dry deposition velocity of dibromodifluoromethane + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221082 + shortname: dv_ha1211 + longname: Dry deposition velocity of bromochlorodifluoromethane + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221083 + shortname: dv_ha1301 + longname: Dry deposition velocity of trifluorobromomethane + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221084 + shortname: dv_ha2402 + longname: Dry deposition velocity of cbrf2cbrf2 + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221085 + shortname: dv_h2so4 + longname: Dry deposition velocity of sulfuric acid + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221086 + shortname: dv_hono + longname: Dry deposition velocity of nitrous acid + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221087 + shortname: dv_hc3 + longname: Dry deposition velocity of alkanes low oh rate + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221088 + shortname: dv_hc5 + longname: Dry deposition velocity of alkanes med oh rate + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221089 + shortname: dv_hc8 + longname: Dry deposition velocity of alkanes high oh rate + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221090 + shortname: dv_olt + longname: Dry deposition velocity of terminal alkenes + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221091 + shortname: dv_oli + longname: Dry deposition velocity of internal alkenes + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221092 + shortname: dv_c2h5o2 + longname: Dry deposition velocity of ethylperoxy radical + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221093 + shortname: dv_dien + longname: Dry deposition velocity of butadiene + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221094 + shortname: dv_c2h5ooh + longname: Dry deposition velocity of ethyl hydroperoxide + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221095 + shortname: dv_api + longname: Dry deposition velocity of a-pinene cyclic terpenes + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221096 + shortname: dv_ch3cooh + longname: Dry deposition velocity of acetic acid + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221097 + shortname: dv_lim + longname: Dry deposition velocity of d-limonene cyclic diene + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221098 + shortname: dv_ch3cho + longname: Dry deposition velocity of acetaldehyde + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221099 + shortname: dv_tol + longname: Dry deposition velocity of toluene and less reactive aromatics + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221100 + shortname: dv_xyl + longname: Dry deposition velocity of xylene and more reactive aromatics + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221101 + shortname: dv_glyald + longname: Dry deposition velocity of glycolaldehyde + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221102 + shortname: dv_cresol + longname: Dry deposition velocity of cresol + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221103 + shortname: dv_ald + longname: Dry deposition velocity of acetaldehyde and higher + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221104 + shortname: dv_ch3coooh + longname: Dry deposition velocity of peracetic acid + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221105 + shortname: dv_ket + longname: Dry deposition velocity of ketones + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221106 + shortname: dv_eo2 + longname: Dry deposition velocity of hoch2ch2o2 + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221107 + shortname: dv_glyoxal + longname: Dry deposition velocity of glyoxal + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221108 + shortname: dv_eo + longname: Dry deposition velocity of hoch2ch2o + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221109 + shortname: dv_dcb + longname: Dry deposition velocity of unsaturated dicarbonyls + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221110 + shortname: dv_macr + longname: Dry deposition velocity of methacrolein + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221111 + shortname: dv_udd + longname: Dry deposition velocity of unsaturated hydroxy dicarbonyl + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221112 + shortname: dv_c3h7o2 + longname: Dry deposition velocity of isopropyldioxidanyl + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221113 + shortname: dv_hket + longname: Dry deposition velocity of hydroxy ketone + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221114 + shortname: dv_c3h7ooh + longname: Dry deposition velocity of isopropyl hydroperoxide + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221115 + shortname: dv_po2 + longname: Dry deposition velocity of c3h6oho2 + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221116 + shortname: dv_pooh + longname: Dry deposition velocity of c3h6ohooh + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221117 + shortname: dv_op2 + longname: Dry deposition velocity of higher organic peroxides + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221118 + shortname: dv_hyac + longname: Dry deposition velocity of hydroxyacetone + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221119 + shortname: dv_paa + longname: Dry deposition velocity of peroxyacetic acid + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221120 + shortname: dv_ro2 + longname: Dry deposition velocity of ch3coch2o2 + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221121 + shortname: dv_ethp + longname: Dry deposition velocity of peroxy radical from c2h6 + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221122 + shortname: dv_hc3p + longname: Dry deposition velocity of peroxy radical from hc3 + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221123 + shortname: dv_hc5p + longname: Dry deposition velocity of peroxy radical from hc5 + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221124 + shortname: dv_bigene + longname: Dry deposition velocity of lumped alkenes + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221125 + shortname: dv_hc8p + longname: Dry deposition velocity of peroxy radical from hc8 + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221126 + shortname: dv_bigalk + longname: Dry deposition velocity of lumped alkanes + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221127 + shortname: dv_etep + longname: Dry deposition velocity of peroxy radical from c2h4 + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221128 + shortname: dv_mek + longname: Dry deposition velocity of c4h8o + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221129 + shortname: dv_oltp + longname: Dry deposition velocity of peroxy radical from terminal alkenes + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221130 + shortname: dv_eneo2 + longname: Dry deposition velocity of c4h9o3 + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221131 + shortname: dv_olip + longname: Dry deposition velocity of peroxy radical from internal alkenes + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221132 + shortname: dv_meko2 + longname: Dry deposition velocity of ch3coch(oo)ch3 + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221133 + shortname: dv_isopo2 + longname: Dry deposition velocity of peroxy radical from c5h8 + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221134 + shortname: dv_mekooh + longname: Dry deposition velocity of ch3coch(ooh)ch3 + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221135 + shortname: dv_apip + longname: Dry deposition velocity of peroxy radical from a-pinene cyclic terpenes + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221136 + shortname: dv_mco3 + longname: Dry deposition velocity of ch2=c(ch3)co3 + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221137 + shortname: dv_limp + longname: Dry deposition velocity of peroxy radical from d-limonene cyclic diene + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221138 + shortname: dv_mvk + longname: Dry deposition velocity of methylvinylketone + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221139 + shortname: dv_pho + longname: Dry deposition velocity of phenoxy radical + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221140 + shortname: dv_tolp + longname: Dry deposition velocity of peroxy radical from toluene and less reactive + aromatics + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221141 + shortname: dv_macro2 + longname: Dry deposition velocity of ch3c(o)ch(oo)ch2oh + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221142 + shortname: dv_xylp + longname: Dry deposition velocity of peroxy radical from xylene and more reactive + aromatics + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221143 + shortname: dv_macrooh + longname: Dry deposition velocity of h3c(o)ch(ooh)ch2oh + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221144 + shortname: dv_cslp + longname: Dry deposition velocity of peroxy radical from cresol + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221145 + shortname: dv_mpan + longname: Dry deposition velocity of unsaturated pans + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221146 + shortname: dv_tco3_c + longname: Dry deposition velocity of unsaturated acyl peroxy radical + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221147 + shortname: dv_ketp + longname: Dry deposition velocity of peroxy radical from ketones + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221148 + shortname: dv_alko2 + longname: Dry deposition velocity of c5h11o2 + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221149 + shortname: dv_olnn + longname: Dry deposition velocity of no3-alkenes adduct reacting to form carbonitrates + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221150 + shortname: dv_alkooh + longname: Dry deposition velocity of c5h11ooh + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221151 + shortname: dv_olnd + longname: Dry deposition velocity of no3-alkenes adduct reacting via decomposition + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221152 + shortname: dv_bigald + longname: Dry deposition velocity of hoch2c(ch3)=chcho + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221153 + shortname: dv_hydrald + longname: Dry deposition velocity of c5h6o2 + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221154 + shortname: dv_sulf + longname: Dry deposition velocity of trop sulfuric acid + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221155 + shortname: dv_ox + longname: Dry deposition velocity of oxides + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221156 + shortname: dv_isopno3 + longname: Dry deposition velocity of ch2chc(ch3)(oo)ch2ono2 + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221157 + shortname: dv_onitr + longname: Dry deposition velocity of c3 organic nitrate + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221158 + shortname: dv_clox + longname: Dry deposition velocity of chlorine oxides + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221159 + shortname: dv_brox + longname: Dry deposition velocity of bromine oxides + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221160 + shortname: dv_xooh + longname: Dry deposition velocity of hoch2c(ooh)(ch3)chchoh + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221161 + shortname: dv_isopooh + longname: Dry deposition velocity of hoch2c(ooh)(ch3)ch=ch2 + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221162 + shortname: dv_toluene + longname: Dry deposition velocity of lumped aromatics + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221163 + shortname: dv_dmso + longname: Dry deposition velocity of dimethyl sulfoxyde + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221164 + shortname: dv_tolo2 + longname: Dry deposition velocity of c7h9o5 + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221165 + shortname: dv_tolooh + longname: Dry deposition velocity of c7h10o5 + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221166 + shortname: dv_h2s + longname: Dry deposition velocity of hydrogensulfide + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221167 + shortname: dv_xoh + longname: Dry deposition velocity of c7h10o6 + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221168 + shortname: dv_noy + longname: Dry deposition velocity of all nitrogen oxides + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221169 + shortname: dv_cly + longname: Dry deposition velocity of chlorine family + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221170 + shortname: dv_terpo2 + longname: Dry deposition velocity of c10h16(oh)(oo) + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221171 + shortname: dv_bry + longname: Dry deposition velocity of bromine family + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221172 + shortname: dv_terpooh + longname: Dry deposition velocity of c10h18o3 + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221173 + shortname: dv_n + longname: Dry deposition velocity of nitrogen atom + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221174 + shortname: dv_clo + longname: Dry deposition velocity of chlorine monoxide + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221175 + shortname: dv_cl_c + longname: Dry deposition velocity of chlorine atom + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221176 + shortname: dv_bro + longname: Dry deposition velocity of bromine monoxide + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221177 + shortname: dv_h_c + longname: Dry deposition velocity of hydrogen atom + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221178 + shortname: dv_ch3 + longname: Dry deposition velocity of methyl group + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221179 + shortname: dv_addt + longname: Dry deposition velocity of aromatic-ho from toluene and less reactive + aromatics + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221180 + shortname: dv_addx + longname: Dry deposition velocity of aromatic-ho from xylene and more reactive aromatics + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221181 + shortname: dv_nh4no3 + longname: Dry deposition velocity of ammonium nitrate + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221182 + shortname: dv_addc + longname: Dry deposition velocity of aromatic-ho from csl + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221183 + shortname: dv_soa1 + longname: Dry deposition velocity of secondary organic aerosol type 1 + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221184 + shortname: dv_soa2a + longname: Dry deposition velocity of secondary organic aerosol type 2a + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221185 + shortname: dv_soa2b + longname: Dry deposition velocity of secondary organic aerosol type 2b + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221186 + shortname: dv_sog1 + longname: Dry deposition velocity of condensable gas type 1 + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221187 + shortname: dv_sog2a + longname: Dry deposition velocity of condensable gas type 2a + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221188 + shortname: dv_sog2b + longname: Dry deposition velocity of condensable gas type 2b + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221189 + shortname: dv_so3 + longname: Dry deposition velocity of sulfur trioxide + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221190 + shortname: dv_ocs_c + longname: Dry deposition velocity of carbonyl sulfide + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221191 + shortname: dv_br + longname: Dry deposition velocity of bromine atom + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221192 + shortname: dv_br2 + longname: Dry deposition velocity of bromine + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221193 + shortname: dv_brcl + longname: Dry deposition velocity of bromine monochloride + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221194 + shortname: dv_brono2 + longname: Dry deposition velocity of bromine nitrate + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221195 + shortname: dv_ch2br2 + longname: Dry deposition velocity of dibromomethane + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221196 + shortname: dv_ch3o + longname: Dry deposition velocity of methoxy radical + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221197 + shortname: dv_chbr3 + longname: Dry deposition velocity of tribromomethane + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221198 + shortname: dv_cloo + longname: Dry deposition velocity of asymmetric chlorine dioxide radical + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221199 + shortname: dv_h2 + longname: Dry deposition velocity of hydrogen + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221200 + shortname: dv_hcl + longname: Dry deposition velocity of hydrogen chloride + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221201 + shortname: dv_hco + longname: Dry deposition velocity of formyl radical + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221202 + shortname: dv_hf + longname: Dry deposition velocity of hydrogen fluoride + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221203 + shortname: dv_o + longname: Dry deposition velocity of oxygen atom + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221204 + shortname: dv_o1d + longname: Dry deposition velocity of excited oxygen atom + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221205 + shortname: dv_o3p + longname: Dry deposition velocity of ground state oxygen atom + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221206 + shortname: dv_strataer + longname: Dry deposition velocity of stratospheric aerosol + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221221 + shortname: dv_VSO2 + longname: Dry deposition velocity of Volcanic sulfur dioxide + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 221222 + shortname: dv_AROO2 + longname: Dry deposition velocity of Aromatic peroxy radical + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 221223 + shortname: dv_C2H2 + longname: Dry deposition velocity of Ethyne + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 221224 + shortname: dv_CH3CN + longname: Dry deposition velocity of Acetonitrile + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 221225 + shortname: dv_CH3O2NO2 + longname: Dry deposition velocity of Methyl peroxy nitrate + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 221226 + shortname: dv_HCN + longname: Dry deposition velocity of Hydrogen cyanide + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 221227 + shortname: dv_HPALD1 + longname: Dry deposition velocity of Hydroperoxy aldehydes type 1 + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 221228 + shortname: dv_HPALD2 + longname: Dry deposition velocity of Hydroperoxy aldehydes type 2 + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 221229 + shortname: dv_ISOPBO2 + longname: Dry deposition velocity of Isoprene peroxy type B + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 221230 + shortname: dv_ISOPDO2 + longname: Dry deposition velocity of Isoprene peroxy type D + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 221231 + shortname: dv_VOCA + longname: Dry deposition velocity of Anthropogenic volatile organic compounds + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 221232 + shortname: dv_VOCBB + longname: Dry deposition velocity of Biomass burning volatile organic compounds + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 222001 + shortname: acc_dry_depm_O3 + longname: Time-integrated dry deposition mass flux of Ozone + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 222003 + shortname: acc_dry_depm_H2O2 + longname: Time-integrated dry deposition mass flux of Hydrogen peroxide + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 222005 + shortname: acc_dry_depm_CO + longname: Time-integrated dry deposition mass flux of Carbon monoxide + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 222006 + shortname: acc_dry_depm_HNO3 + longname: Time-integrated dry deposition mass flux of Nitric acid + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 222007 + shortname: acc_dry_depm_CH3OOH + longname: Time-integrated dry deposition mass flux of Methyl peroxide + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 222008 + shortname: acc_dry_depm_HCHO + longname: Time-integrated dry deposition mass flux of Formaldehyde + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 222012 + shortname: acc_dry_depm_ALD2 + longname: Time-integrated dry deposition mass flux of Aldehydes + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 222013 + shortname: acc_dry_depm_PAN + longname: Time-integrated dry deposition mass flux of Peroxyacetyl nitrate + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 222014 + shortname: acc_dry_depm_ROOH + longname: Time-integrated dry deposition mass flux of Peroxides + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 222015 + shortname: acc_dry_depm_ONIT + longname: Time-integrated dry deposition mass flux of Organic nitrates + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 222016 + shortname: acc_dry_depm_C5H8 + longname: Time-integrated dry deposition mass flux of Isoprene + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 222017 + shortname: acc_dry_depm_SO2 + longname: Time-integrated dry deposition mass flux of Sulphur dioxide + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 222019 + shortname: acc_dry_depm_NH3 + longname: Time-integrated dry deposition mass flux of Ammonia + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 222020 + shortname: acc_dry_depm_SO4 + longname: Time-integrated dry deposition mass flux of Sulfate + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 222021 + shortname: acc_dry_depm_NH4 + longname: Time-integrated dry deposition mass flux of Ammonium + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 222023 + shortname: acc_dry_depm_CH3COCHO + longname: Time-integrated dry deposition mass flux of Methyl glyoxal + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 222024 + shortname: acc_dry_depm_O3S + longname: Time-integrated dry deposition mass flux of Ozone (stratospheric) + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 222027 + shortname: acc_dry_depm_NO + longname: Time-integrated dry deposition mass flux of Nitrogen monoxide + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 222028 + shortname: acc_dry_depm_HO2 + longname: Time-integrated dry deposition mass flux of Hydroperoxy radical + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 222029 + shortname: acc_dry_depm_CH3O2 + longname: Time-integrated dry deposition mass flux of Methylperoxy radical + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 222031 + shortname: acc_dry_depm_NO2 + longname: Time-integrated dry deposition mass flux of Nitrogen dioxide + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 222032 + shortname: acc_dry_depm_NO3 + longname: Time-integrated dry deposition mass flux of Nitrate radical + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 222033 + shortname: acc_dry_depm_N2O5 + longname: Time-integrated dry deposition mass flux of Dinitrogen pentoxide + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 222034 + shortname: acc_dry_depm_HO2NO2 + longname: Time-integrated dry deposition mass flux of Pernitric acid + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 222042 + shortname: acc_dry_depm_CH3OH + longname: Time-integrated dry deposition mass flux of Methanol + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 222043 + shortname: acc_dry_depm_HCOOH + longname: Time-integrated dry deposition mass flux of Formic acid + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 222044 + shortname: acc_dry_depm_MCOOH + longname: Time-integrated dry deposition mass flux of Methacrylic acid + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 222045 + shortname: acc_dry_depm_C2H6 + longname: Time-integrated dry deposition mass flux of Ethane + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 222046 + shortname: acc_dry_depm_C2H5OH + longname: Time-integrated dry deposition mass flux of Ethanol + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 222050 + shortname: acc_dry_depm_ISPD + longname: Time-integrated dry deposition mass flux of Methacrolein + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 222051 + shortname: acc_dry_depm_NO3_A + longname: Time-integrated dry deposition mass flux of Nitrate + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 222052 + shortname: acc_dry_depm_CH3COCH3 + longname: Time-integrated dry deposition mass flux of Acetone + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 222086 + shortname: acc_dry_depm_HONO + longname: Time-integrated dry deposition mass flux of Nitrous acid + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 222099 + shortname: acc_dry_depm_TOL + longname: Time-integrated dry deposition mass flux of Toluene and less reactive + aromatics + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 222100 + shortname: acc_dry_depm_XYL + longname: Time-integrated dry deposition mass flux of Xylene and more reactive aromatics + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 222101 + shortname: acc_dry_depm_GLYALD + longname: Time-integrated dry deposition mass flux of Glycolaldehyde + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 222107 + shortname: acc_dry_depm_GLY + longname: Time-integrated dry deposition mass flux of Glyoxal + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 222118 + shortname: acc_dry_depm_HYAC + longname: Time-integrated dry deposition mass flux of Hydroxyacetone + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 222161 + shortname: acc_dry_depm_ISOPOOH + longname: Time-integrated dry deposition mass flux of all hydroxy-peroxides products + of the reaction of hydroxy-isoprene adducts with O2 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 222224 + shortname: acc_dry_depm_CH3CN + longname: Time-integrated dry deposition mass flux of Acetonitrile + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 222226 + shortname: acc_dry_depm_HCN + longname: Time-integrated dry deposition mass flux of Hydrogen cyanide + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223001 + shortname: acc_wet_depm_O3 + longname: Time-integrated wet deposition mass flux of Ozone + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223003 + shortname: acc_wet_depm_H2O2 + longname: Time-integrated wet deposition mass flux of Hydrogen peroxide + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223006 + shortname: acc_wet_depm_HNO3 + longname: Time-integrated wet deposition mass flux of Nitric acid + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 223007 + shortname: acc_wet_depm_CH3OOH + longname: Time-integrated wet deposition mass flux of Methyl peroxide + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223008 + shortname: acc_wet_depm_HCHO + longname: Time-integrated wet deposition mass flux of Formaldehyde + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223012 + shortname: acc_wet_depm_ALD2 + longname: Time-integrated wet deposition mass flux of Aldehydes + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223013 + shortname: acc_wet_depm_PAN + longname: Time-integrated wet deposition mass flux of Peroxyacetyl nitrate + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 223014 + shortname: acc_wet_depm_ROOH + longname: Time-integrated wet deposition mass flux of Peroxides + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223015 + shortname: acc_wet_depm_ONIT + longname: Time-integrated wet deposition mass flux of Organic nitrates + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 223016 + shortname: acc_wet_depm_C5H8 + longname: Time-integrated wet deposition mass flux of Isoprene + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223017 + shortname: acc_wet_depm_SO2 + longname: Time-integrated wet deposition mass flux of Sulphur dioxide + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 223019 + shortname: acc_wet_depm_NH3 + longname: Time-integrated wet deposition mass flux of Ammonia + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 223020 + shortname: acc_wet_depm_SO4 + longname: Time-integrated wet deposition mass flux of Sulfate + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223021 + shortname: acc_wet_depm_NH4 + longname: Time-integrated wet deposition mass flux of Ammonium + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223022 + shortname: acc_wet_depm_MSA + longname: Time-integrated wet deposition mass flux of Methane sulfonic acid + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223023 + shortname: acc_wet_depm_CH3COCHO + longname: Time-integrated wet deposition mass flux of Methyl glyoxal + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223025 + shortname: acc_wet_depm_CO + longname: Time-integrated wet deposition mass flux of Carbon monoxide + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223026 + shortname: acc_wet_depm_Pb + longname: Time-integrated wet deposition mass flux of Lead + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223027 + shortname: acc_wet_depm_NO + longname: Time-integrated wet deposition mass flux of Nitrogen monoxide + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 223028 + shortname: acc_wet_depm_HO2 + longname: Time-integrated wet deposition mass flux of Hydroperoxy radical + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223029 + shortname: acc_wet_depm_CH3O2 + longname: Time-integrated wet deposition mass flux of Methylperoxy radical + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223031 + shortname: acc_wet_depm_NO2 + longname: Time-integrated wet deposition mass flux of Nitrogen dioxide + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 223032 + shortname: acc_wet_depm_NO3 + longname: Time-integrated wet deposition mass flux of Nitrate radical + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223033 + shortname: acc_wet_depm_N2O5 + longname: Time-integrated wet deposition mass flux of Dinitrogen pentoxide + units: kg m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 223034 + shortname: acc_wet_depm_HO2NO2 + longname: Time-integrated wet deposition mass flux of Pernitric acid + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223042 + shortname: acc_wet_depm_CH3OH + longname: Time-integrated wet deposition mass flux of Methanol + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223043 + shortname: acc_wet_depm_HCOOH + longname: Time-integrated wet deposition mass flux of Formic acid + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223044 + shortname: acc_wet_depm_MCOOH + longname: Time-integrated wet deposition mass flux of Methacrylic acid + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223045 + shortname: acc_wet_depm_C2H6 + longname: Time-integrated wet deposition mass flux of Ethane + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223046 + shortname: acc_wet_depm_C2H5OH + longname: Time-integrated wet deposition mass flux of Ethanol + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223050 + shortname: acc_wet_depm_ISPD + longname: Time-integrated wet deposition mass flux of Methacrolein + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223051 + shortname: acc_wet_depm_NO3_A + longname: Time-integrated wet deposition mass flux of Nitrate + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 223052 + shortname: acc_wet_depm_CH3COCH3 + longname: Time-integrated wet deposition mass flux of Acetone + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223064 + shortname: acc_wet_depm_CLONO2 + longname: Time-integrated wet deposition mass flux of Chlorine nitrate + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223065 + shortname: acc_wet_depm_HOCL + longname: Time-integrated wet deposition mass flux of Hypochlorous acid + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223068 + shortname: acc_wet_depm_HBR + longname: Time-integrated wet deposition mass flux of Hydrogen bromide + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223070 + shortname: acc_wet_depm_HOBR + longname: Time-integrated wet deposition mass flux of Hypobromous acid + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223086 + shortname: acc_wet_depm_HONO + longname: Time-integrated wet deposition mass flux of Nitrous acid + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223099 + shortname: acc_wet_depm_TOL + longname: Time-integrated wet deposition mass flux of Toluene and less reactive + aromatics + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223100 + shortname: acc_wet_depm_XYL + longname: Time-integrated wet deposition mass flux of Xylene and more reactive aromatics + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223101 + shortname: acc_wet_depm_GLYALD + longname: Time-integrated wet deposition mass flux of Glycolaldehyde + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223107 + shortname: acc_wet_depm_GLY + longname: Time-integrated wet deposition mass flux of Glyoxal + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223118 + shortname: acc_wet_depm_HYAC + longname: Time-integrated wet deposition mass flux of Hydroxyacetone + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223161 + shortname: acc_wet_depm_ISOPOOH + longname: Time-integrated wet deposition mass flux of all hydroxy-peroxides products + of the reaction of hydroxy-isoprene adducts with O2 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223186 + shortname: acc_wet_depm_SOG1 + longname: Time-integrated wet deposition mass flux of Condensable gas type 1 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 223187 + shortname: acc_wet_depm_SOG2A + longname: Time-integrated wet deposition mass flux of Condensable gas type 2a + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 223188 + shortname: acc_wet_depm_SOG2B + longname: Time-integrated wet deposition mass flux of Condensable gas type 2b + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 223194 + shortname: acc_wet_depm_BRONO2 + longname: Time-integrated wet deposition mass flux of Bromine nitrate + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223200 + shortname: acc_wet_depm_HCL + longname: Time-integrated wet deposition mass flux of Hydrogen chloride + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223224 + shortname: acc_wet_depm_CH3CN + longname: Time-integrated wet deposition mass flux of Acetonitrile + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223226 + shortname: acc_wet_depm_HCN + longname: Time-integrated wet deposition mass flux of Hydrogen cyanide + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223227 + shortname: acc_wet_depm_HPALD1 + longname: Time-integrated wet deposition mass flux of Hydroperoxy aldehydes type + 1 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 223228 + shortname: acc_wet_depm_HPALD2 + longname: Time-integrated wet deposition mass flux of Hydroperoxy aldehydes type + 2 + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 228001 + shortname: cin + longname: Convective inhibition + units: J kg**-1 + description: This parameter is a measure of the amount of energy required for convection + to commence. If the value of this parameter is too high, then deep, moist convection + is unlikely to occur even if the convective available potential energy or convective + available potential energy shear are large. CIN values greater than 200 J kg-1 + would be considered high.

An atmospheric layer where temperature increases + with height (known as a temperature inversion) would inhibit convective uplift + and is a situation in which convective inhibition would be large. + access_ids: [] + origin_ids: + - 0 + - 7 + - 98 +- id: 228002 + shortname: orog + longname: Orography + units: m + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 228003 + shortname: zust + longname: Friction velocity + units: m s**-1 + description: Air flowing over a surface exerts a stress that transfers momentum + to the surface and slows the wind. This parameter is a theoretical wind speed + at the Earth's surface that expresses the magnitude of stress. It is calculated + by dividing the surface stress by air density and taking its square root. For + turbulent flow, the friction velocity is approximately constant in the lowest + few metres of the atmosphere.

This parameter increases with the roughness + of the surface. It is used to calculate the way wind changes with height in the + lowest levels of the atmosphere. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228004 + shortname: avg_2t + longname: Time-mean 2 metre temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 228005 + shortname: avg_10ws + longname: Time-mean 10 metre wind speed + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 228006 + shortname: meantcc + longname: Mean total cloud cover + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - -90 + - -70 + - 98 +- id: 228007 + shortname: dl + longname: Lake total depth + units: m + description: This parameter is the mean depth of inland water bodies (lakes, reservoirs + and rivers) and coastal waters. This field is specified from in-situ measurements + and indirect estimates and is constant in time.

ECMWF implemented a lake + model in May 2015 to represent the water temperature and lake ice of all the world's + major inland water bodies in the Integrated Forecasting System (IFS). The IFS differentiates + between (i) ocean water, handled by the ocean model, and (ii) inland water (lakes, + reservoirs and rivers) and coastal waters handled by the lake parametrisation. + Lake depth and surface area (or fractional cover) are kept constant in time. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228008 + shortname: lmlt + longname: Lake mix-layer temperature + units: K + description: This parameter is the temperature of the uppermost layer of inland + water bodies (lakes, reservoirs and rivers) or coastal waters, that is well mixed + and has a near constant temperature with depth (i.e., a uniform distribution of + temperature with depth).

The ECMWF Integrated Forecasting System represents + inland water bodies and coastal waters with two layers in the vertical, the mixed + layer above and the thermocline below. The upper boundary of the thermocline is + located at the mixed layer bottom, and the lower boundary of the thermocline at + the lake bottom.

Mixing within the mixed layer can occur when the density + of the surface (and near-surface) water is greater than that of the water below. + Mixing can also occur through the action of wind on the surface of the lake.

This + parameter has units of kelvin (K). Temperature measured in kelvin can be converted + to degrees Celsius (°C) by subtracting 273.15.

ECMWF implemented + a lake model in May 2015 to represent the water temperature and lake ice of all + the world's major inland water bodies in the Integrated Forecasting System (IFS). + The IFS differentiates between (i) ocean water, handled by the ocean model, and + (ii) inland water (lakes, reservoirs and rivers) and coastal waters handled by + the lake parametrisation. Lake depth and surface area (or fractional cover) are + kept constant in time. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228009 + shortname: lmld + longname: Lake mix-layer depth + units: m + description: This parameter is the thickness of the uppermost layer of inland water + bodies (lakes, reservoirs and rivers) or coastal waters, that is well mixed and + has a near constant temperature with depth (i.e., a uniform distribution of temperature + with depth).

The ECMWF Integrated Forecasting System represents inland + water bodies and coastal waters with two layers in the vertical, the mixed layer + above and the thermocline below, where temperature changes with depth. The upper + boundary of the thermocline is located at the mixed layer bottom, and the lower + boundary of the thermocline at the lake bottom.

Mixing within the mixed + layer can occur when the density of the surface (and near-surface) water is greater + than that of the water below. Mixing can also occur through the action of wind + on the surface of the lake.

ECMWF implemented a lake model in May 2015 + to represent the water temperature and lake ice of all the world's major inland + water bodies in the Integrated Forecasting System (IFS). The IFS differentiates + between (i) ocean water, handled by the ocean model, and (ii) inland water (lakes, + reservoirs and rivers) and coastal waters handled by the lake parametrisation. + Lake depth and surface area (or fractional cover) are kept constant in time. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228010 + shortname: lblt + longname: Lake bottom temperature + units: K + description: This parameter is the temperature of water at the bottom of inland + water bodies (lakes, reservoirs, rivers) and coastal waters.

This parameter + has units of kelvin (K). Temperature measured in kelvin can be converted to degrees + Celsius (°C) by subtracting 273.15.

ECMWF implemented a lake model + in May 2015 to represent the water temperature and lake ice of all the world's + major inland water bodies in the Integrated Forecasting System (IFS). The IFS differentiates + between (i) ocean water, handled by the ocean model, and (ii) inland water (lakes, + reservoirs and rivers) and coastal waters handled by the lake parametrisation. + Lake depth and surface area (or fractional cover) are kept constant in time. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228011 + shortname: ltlt + longname: Lake total layer temperature + units: K + description: This parameter is the mean temperature of the total water column in + inland water bodies (lakes, reservoirs and rivers) and coastal waters.

The + ECMWF Integrated Forecasting System represents inland water bodies and coastal + waters with two layers in the vertical, the mixed layer above and the thermocline + below, where temperature changes with depth. This parameter is the mean over the + two layers.

The upper boundary of the thermocline is located at the mixed + layer bottom, and the lower boundary of the thermocline at the lake bottom.

This + parameter has units of kelvin (K). Temperature measured in kelvin can be converted + to degrees Celsius (°C) by subtracting 273.15.

ECMWF implemented + a lake model in May 2015 to represent the water temperature and lake ice of all + the world's major inland water bodies in the Integrated Forecasting System (IFS). + The IFS differentiates between (i) ocean water, handled by the ocean model, and + (ii) inland water (lakes, reservoirs and rivers) and coastal waters handled by + the lake parametrisation. Lake depth and surface area (or fractional cover) are + kept constant in time. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228012 + shortname: lshf + longname: Lake shape factor + units: dimensionless + description: This parameter describes the way that temperature changes with depth + in the thermocline layer of inland water bodies (lakes, reservoirs and rivers) + and coastal waters (i.e., it describes the shape of the vertical temperature profile). + It is used to calculate the lake bottom temperature and other lake-related parameters.

The + ECMWF Integrated Forecasting System represents inland water bodies and coastal + waters with two layers in the vertical, the mixed layer above and the thermocline + below, where temperature changes with depth. The upper boundary of the thermocline + is located at the mixed layer bottom, and the lower boundary of the thermocline + at the lake bottom.

ECMWF implemented a lake model in May 2015 to represent + the water temperature and lake ice of all the world's major inland water bodies + in the Integrated Forecasting System (IFS). The IFS differentiates between (i) + ocean water, handled by the ocean model, and (ii) inland water (lakes, reservoirs + and rivers) and coastal waters handled by the lake parametrisation. Lake depth + and surface area (or fractional cover) are kept constant in time. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228013 + shortname: lict + longname: Lake ice surface temperature + units: K + description: This parameter is the temperature of the uppermost surface of ice on + inland water bodies (lakes, reservoirs, and rivers) and coastal waters. That is + the temperature at the ice/atmosphere or ice/snow interface.

The ECMWF + Integrated Forecasting System represents the formation and melting of ice on lakes. + A single ice layer is represented.

This parameter has units of kelvin + (K). Temperature measured in kelvin can be converted to degrees Celsius (°C) + by subtracting 273.15.

ECMWF implemented a lake model in May 2015 to + represent the water temperature and lake ice of all the world's major inland water + bodies in the Integrated Forecasting System (IFS). The IFS differentiates between + (i) ocean water, handled by the ocean model, and (ii) inland water (lakes, reservoirs + and rivers) and coastal waters handled by the lake parametrisation. Lake depth + and surface area (or fractional cover) are kept constant in time. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228014 + shortname: licd + longname: Lake ice total depth + units: m + description: This parameter is the thickness of ice on inland water bodies (lakes, + reservoirs and rivers) and coastal waters.

The ECMWF Integrated Forecasting + System represents the formation and melting of ice on inland water bodies. A single + ice layer is represented. This parameter is the thickness of that ice layer.

ECMWF + implemented a lake model in May 2015 to represent the water temperature and lake + ice of all the world's major inland water bodies in the Integrated Forecasting + System (IFS). The IFS differentiates between (i) ocean water, handled by the + ocean model, and (ii) inland water (lakes, reservoirs and rivers) and coastal + waters handled by the lake parametrisation. Lake depth and surface area (or fractional + cover) are kept constant in time. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228015 + shortname: dndzn + longname: Minimum vertical gradient of refractivity inside trapping layer + units: m**-1 + description: Minimum vertical gradient of atmospheric refractivity inside trapping + layer.
A duct layer is an atmospheric layer with a refractivity which leads + to a trapping of electromagnetic waves. In a trapping layer the refractivity leads + to a bending of EM waves, which is stronger than the earth's curvature. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 228016 + shortname: dndza + longname: Mean vertical gradient of refractivity inside trapping layer + units: m**-1 + description: "Minimum vertical gradient of atmospheric refractivity\r\ninside trapping\ + \ layer.
A duct layer is an atmospheric layer with a refractivity which leads\ + \ to a trapping of electromagnetic waves. In a trapping layer the refractivity\ + \ leads to a bending of EM waves, which is stronger than the earth's curvature." + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 228017 + shortname: dctb + longname: Duct base height + units: m + description: Duct base height as diagnosed from vertical gradient of atmospheric + refractivity.
A duct layer is an atmospheric layer with a refractivity which + leads to a trapping of electromagnetic waves. In a trapping layer the refractivity + leads to a bending of EM waves, which is stronger than the earth's curvature. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 228018 + shortname: tplb + longname: Trapping layer base height + units: m + description: "Trapping layer base height as diagnosed from vertical\r\ngradient\ + \ of atmospheric refractivity.
A duct layer is an atmospheric layer with a\ + \ refractivity which leads to a trapping of electromagnetic waves. In a trapping\ + \ layer the refractivity leads to a bending of EM waves, which is stronger than\ + \ the earth's curvature." + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 228019 + shortname: tplt + longname: Trapping layer top height + units: m + description: "Trapping layer top height as diagnosed from vertical\r\ngradient of\ + \ atmospheric refractivity.
A duct layer is an atmospheric layer with a refractivity\ + \ which leads to a trapping of electromagnetic waves. In a trapping layer the\ + \ refractivity leads to a bending of EM waves, which is stronger than the earth's\ + \ curvature." + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 228020 + shortname: degm10l + longname: Geometric height of -10 degrees C atmospheric isothermal level above ground + units: m + description: "The height above the Earth's surface where the temperature crosses\ + \ the -10 degree isotherm. If more than one crossing is encountered, then the\ + \ -10 degree level corresponds to the top of the second atmospheric layer.\r\n\ + This parameter is set to zero when the temperature in the whole atmosphere is\ + \ below -10 degrees C." + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228021 + shortname: fdir + longname: Surface direct short-wave (solar) radiation + units: J m**-2 + description:

This parameter is the amount of direct solar radiation (also known + as shortwave radiation) reaching the surface of the Earth. It is the amount of + radiation passing through a horizontal plane, not a plane perpendicular to the + direction of the Sun.

Solar radiation at the surface can be direct or diffuse. + Solar radiation can be scattered in all directions by particles in the atmosphere, + some of which reaches the surface (diffuse solar radiation). Some solar radiation + reaches the surface without being scattered (direct solar radiation). See + further documentation.

This parameter is accumulated + over a particular time period which depends on the data extracted. The units + are joules per square metre (J m-2). To convert to watts per square metre (W m-2), + the accumulated values should be divided by the accumulation period expressed + in seconds.

The ECMWF convention for vertical fluxes is positive downwards.

+ access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228022 + shortname: cdir + longname: Surface direct short-wave radiation, clear sky + units: J m**-2 + description: This parameter is the amount of direct radiation from the Sun (also + known as solar or shortwave radiation) reaching the surface of the Earth, assuming + clear-sky (cloudless) conditions. It is the amount of radiation passing through + a horizontal plane, not a plane perpendicular to the direction of the Sun.

Solar + radiation at the surface can be direct or diffuse. Solar radiation can be scattered + in all directions by particles in the atmosphere, some of which reaches the surface + (diffuse solar radiation). Some solar radiation reaches the surface without being + scattered (direct solar radiation). See + further documentation.

Clear-sky radiation quantities are computed + for exactly the same atmospheric conditions of temperature, humidity, ozone, trace + gases and aerosol as the corresponding total-sky quantities (clouds included), + but assuming that the clouds are not there.

This parameter is accumulated + over a particular time period which depends on the data extracted. The units + are joules per square metre (J m-2). To convert to watts per square metre (W m-2), + the accumulated values should be divided by the accumulation period expressed + in seconds.

The ECMWF convention for vertical fluxes is positive downwards. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228023 + shortname: cbh + longname: Cloud base height + units: m + description: The height above the Earth's surface of the base of the lowest cloud + layer, at + the specified time.

This parameter is calculated by searching from + the second lowest model level upwards, to the height of the level where cloud + fraction becomes greater than 1% and condensate content greater than 1.E-6 kg + kg-1. Fog (i.e., cloud in the lowest model layer) is not considered when defining + cloud base height. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228024 + shortname: deg0l + longname: Geometric height of 0 degrees C atmospheric isothermal level above ground + units: m + description: The height above the Earth's surface where the temperature passes from + positive to negative values, corresponding to the top of a warm layer, at + the specified time. This parameter can be used to help forecast snow.

If + more than one warm layer is encountered, then the zero degree level corresponds + to the top of the second atmospheric layer.

This parameter is set to + zero when the temperature in the whole atmosphere is below 0℃. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228025 + shortname: hvis + longname: Horizontal visibility + units: m + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 228026 + shortname: mx2t3 + longname: Maximum temperature at 2 metres in the last 3 hours + units: K + description: The highest value of 2 metre temperature in the previous 3 hour period.

2m + temperature is calculated by interpolating between the lowest model level and + the Earth's surface, taking account of the atmospheric conditions. See + further information .

This parameter has units of kelvin (K). Temperature + measured in kelvin can be converted to degrees Celsius (°C) by subtracting + 273.15. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 228027 + shortname: mn2t3 + longname: Minimum temperature at 2 metres in the last 3 hours + units: K + description: The lowest value of 2 metre temperature in the previous 3 hour period.

2m + temperature is calculated by interpolating between the lowest model level and + the Earth's surface, taking account of the atmospheric conditions. See further + information.

This parameter has units of kelvin (K). Temperature + measured in kelvin can be converted to degrees Celsius (°C) by subtracting + 273.15. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 228028 + shortname: 10fg3 + longname: Maximum 10 metre wind gust in the last 3 hours + units: m s**-1 + description: This parameter is the maximum wind gust in the last 3 hours at a height + of ten metres above the surface of the Earth.

The WMO defines a wind + gust as the maximum of the wind averaged over 3 second intervals. This duration + is shorter than a model + time step, and so the ECMWF Integrated Forecasting System deduces the magnitude + of a gust within each time step from the time-step-averaged surface stress, surface + friction, wind shear and stability. Then, the maximum wind gust is selected from + the gusts at each time step during the last 3 hours.

Care should be taken + when comparing model parameters with observations, because observations are often + local to a particular point in space and time, rather than representing averages + over a model + grid box and model time step. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228029 + shortname: i10fg + longname: Instantaneous 10 metre wind gust + units: m s**-1 + description: This parameter is the maximum wind gust at + the specified time, at a height of ten metres above the surface of the Earth.

The + WMO defines a wind gust as the maximum of the wind averaged over 3 second intervals. + This duration is shorter than a + model time step , and so the ECMWF Integrated Forecasting System deduces the + magnitude of a gust within each time step from the time-step-averaged surface + stress, surface friction, wind shear and stability.

Care should be taken + when comparing model parameters with observations, because observations are often + local to a particular point in space and time, rather than representing averages + over a model + grid box and model time step. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228030 + shortname: rhw + longname: Relative humidity with respect to water + units: '%' + description: The relative humidity with respect to water of moist air at pressure + p and temperature T is the ratio in per cent of the vapour mole fraction xv to + the vapour mole fraction xvw which the air would have if it were saturated with + respect to water at the same pressure p and temperature T + access_ids: [] + origin_ids: + - 0 +- id: 228031 + shortname: rhi + longname: Relative humidity with respect to ice + units: '%' + description: The relative humidity with respect to ice of moist air at pressure + p and temperature T is the ratio in per cent of the vapour mole fraction xv to + the vapour mole fraction xvi which the air would have if it were saturated with + respect to ice at the same pressure p and temperature T + access_ids: [] + origin_ids: + - 0 +- id: 228032 + shortname: asn + longname: Snow albedo + units: '%' + description: 'The broadband albedo of snow. + +
[NOTE: See 32 for the equivalent parameter in "(0-1)"]' + access_ids: [] + origin_ids: + - -40 + - -20 + - 0 +- id: 228034 + shortname: fcpc + longname: Fraction of convective precipitation cover + units: Proportion + description: Horizontal fraction of the grid box covered by convective precipitation + access_ids: [] + origin_ids: + - 0 +- id: 228035 + shortname: mxcape6 + longname: Maximum CAPE in the last 6 hours + units: J kg**-1 + description:

From 48r1 this parameter is based on most unstable CAPE rather than + the previously used surface based CAPE.

The maximum CAPE (convective available + potential energy) value that has occurred over the last 6 hours.

CAPE is + an indication of the instability (or stability) of the atmosphere and can be used + to assess the potential for the development of deep convection. When air rises + through a large depth of the atmosphere, extensive condensation can occur and + heavy rainfall, thunderstorms and other severe weather can result. 

Care + should be taken when comparing model parameters with observations, because observations + are often local to a particular point in space and time, rather than representing + averages over a model + grid box and model time step.

+ access_ids: + - dissemination + origin_ids: + - 0 +- id: 228036 + shortname: mxcapes6 + longname: Maximum CAPES in the last 6 hours + units: m**2 s**-2 + description:

From 48r1 this parameter is based on most unstable CAPE rather than + the previously used surface based CAPE.

The maximum CAPES (convective available + potential energy shear) value that has occurred over the last 6 hours.

High + values of CAPES indicate where deep, organised convection is more likely to occur, + if it is initiated. When air rises through a large depth of the atmosphere, extensive + condensation can occur and heavy rainfall, thunderstorms and other severe weather + can result. 

Care should be taken when comparing model parameters + with observations, because observations are often local to a particular point + in space and time, rather than representing averages over a model + grid box and model time step.

+ access_ids: + - dissemination + origin_ids: + - 0 +- id: 228037 + shortname: 2rhw + longname: 2 metre relative humidity with respect to water + units: '%' + description: See 228030 + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 228038 + shortname: lwcs + longname: Liquid water content in snow pack + units: kg m**-2 + description: This parameter represent the liquid water content in snow pack, i.e. + the amount of water in its liquid form (not frozen/snowflake/etc). This is an + indicator of how "wet" the snow is. + access_ids: + - dissemination + origin_ids: + - 0 +- id: 228039 + shortname: sm + longname: Soil moisture + units: kg m**-3 + description:

This GRIB2 encoding is only to be used in TIGGE + as it is WMO deprecated. Please use paramId 260368 otherwise.

+ access_ids: [] + origin_ids: + - -30 + - 0 + - 98 +- id: 228040 + shortname: swi1 + longname: Soil wetness index in layer 1 + units: dimensionless + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 228041 + shortname: swi2 + longname: Soil wetness index in layer 2 + units: dimensionless + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 228042 + shortname: swi3 + longname: Soil wetness index in layer 3 + units: dimensionless + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 228043 + shortname: swi4 + longname: Soil wetness index in layer 4 + units: dimensionless + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 228044 + shortname: capes + longname: Convective available potential energy shear + units: m**2 s**-2 + description:

From 48r1 this parameter is based on most unstable CAPE rather than + the previously used surface based CAPE.

High values of this parameter indicate + where deep, organised convection is more likely to occur, if it is initiated. + When air rises through a large depth of the atmosphere, extensive condensation + can occur and heavy rainfall, thunderstorms and other severe weather can result.

The + likelihood of severe weather and its level of intensity tend to increase with + increasing organisation of convection. Convective supercells are the most prominent + example. Such organised areas of convection tend to occur where wind (intensity + and/or direction) changes rapidly with height i.e., areas with strong vertical + wind shear.

This parameter is the product of wind shear and the square + root of convective available potential energy (CAPE). The wind shear denotes bulk + shear which is a vector difference of winds at two different heights in the atmosphere + (925 hPa and 500 hPa). The square root of CAPE is proportional to the maximum + vertical velocity in convective updraughts.

To help determine whether deep, + moist convection will be initiated or not, the probability forecast for precipitation + (for example) can be used, in conjunction with this parameter.

+ access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228045 + shortname: trpp + longname: Tropopause pressure + units: Pa + description: This parameter uses a stability-based definition of the tropopause. + The use of this parameter is recommended for the tropical belt (typically +-30 + degrees). Outside of this belt the pressure of the surface PV=2 (Potential Vorticity + = 2 PV units) provides a more appropriate measure of the tropopause height. + access_ids: + - dissemination + origin_ids: + - 0 +- id: 228046 + shortname: hcct + longname: Height of convective cloud top + units: m + description: The height above the Earth's surface of the top of convective cloud + produced by the ECMWF Integrated Forecasting System convection scheme, at + the specified time. The convection scheme represents convection at spatial + scales smaller than the grid + box. See further + information. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228047 + shortname: hwbt0 + longname: Height of zero-degree wet-bulb temperature + units: m + description: "The height above the Earth's surface where the wet-bulb temperature\ + \ drops to 0℃, at\ + \ the specified time. This parameter can be used to help forecast snow.

The\ + \ wet-bulb temperature is the temperature to which the air must drop to become\ + \ saturated with moisture (keeping pressure constant and accounting only for latent\ + \ heat). It can also be defined as the temperature recorded by a thermometer with\ + \ its bulb covered by a wet cloth or wick. The greater the difference between\ + \ the dry-bulb and wet-bulb temperature, the lower the humidity.

This\ + \ parameter is set to zero when the wet bulb temperature in the whole atmosphere\ + \ is below 0℃.\r\n\r\nSee\ + \ here for further information." + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228048 + shortname: hwbt1 + longname: Height of one-degree wet-bulb temperature + units: m + description: "The height above the Earth's surface where the wet-bulb temperature\ + \ drops to 1℃, at\ + \ the specified time. This parameter can be used to help forecast snow.

The\ + \ wet-bulb temperature is the temperature to which the air must drop to become\ + \ saturated with moisture (keeping pressure constant and accounting only for latent\ + \ heat). It can also be defined as the temperature recorded by a thermometer with\ + \ its bulb covered by a wet cloth or wick. The greater the difference between\ + \ the dry-bulb and wet-bulb temperature, the lower the humidity.

This\ + \ parameter is set to zero when the wet bulb temperature in the whole atmosphere\ + \ is below 1℃.\r\n\r\nSee\ + \ here for further information." + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228050 + shortname: litoti + longname: Instantaneous total lightning flash density + units: km**-2 day**-1 + description: 'This parameter gives the total lightning flash rate at + the specified time. Users should be aware that it is prone to large errors, + e.g. due to any spatial and temporal discrepancies between model convection and + observed convection.

Note that this parameter has units of flashes per + square kilometre per day. Conversion of this parameter to units of flashes per + 100 square kilometres per hour can give values that are easier to interpret.

This + parameter accounts for cloud-to-ground flashes (between the the cloud and the + Earth''s surface) and intra-cloud flashes (between two cloud regions of opposite + electric charge). In the ECMWF Integrated Forecasting System, the total lightning + flash density is calculated using an empirical formula involving convective cloud + and precipitation information, convective available potential energy (CAPE) and + convective cloud base height, which are diagnosed by the convection scheme. ' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228051 + shortname: litota1 + longname: Averaged total lightning flash density in the last hour + units: km**-2 day**-1 + description: Averaged total (cloud-to-cloud and cloud-to-ground) lightning flash + density in the last hour. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228052 + shortname: licgi + longname: Instantaneous cloud-to-ground lightning flash density + units: km**-2 day**-1 + description: Instantaneous value of cloud-to-ground lightning flash density. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 228053 + shortname: licga1 + longname: Averaged cloud-to-ground lightning flash density in the last hour + units: km**-2 day**-1 + description: Averaged cloud-to-ground lightning flash density in the last hour. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 228054 + shortname: ucq + longname: Unbalanced component of specific humidity + units: kg kg**-1 + description: 'Unbalanced component of grid-box mean specific humidity.

+ + Residual resulting from subtracting from specific humidity (mass of water vapour + / mass of moist air) an + + approximate "balanced" value derived from relevant variable(s)' + access_ids: [] + origin_ids: + - 0 +- id: 228055 + shortname: ucclwc + longname: Unbalanced component of specific cloud liquid water content + units: kg kg**-1 + description: 'Unbalanced component of grid-box mean specific cloud liquid water + content.

+ + Residual resulting from subtracting from specific cloud liquid water content (mass + of condensate / mass of moist air) an approximate "balanced" + + value derived from relevant variable(s)' + access_ids: [] + origin_ids: + - 0 +- id: 228056 + shortname: ucciwc + longname: Unbalanced component of specific cloud ice water content + units: kg kg**-1 + description: 'Unbalanced component of grid-box mean specific cloud ice water content.

+ + Residual resulting from subtracting from specific cloud ice water content (mass + of condensate / mass of moist air) + + an approximate "balanced" value derived from relevant variable(s)' + access_ids: [] + origin_ids: + - 0 +- id: 228057 + shortname: litota3 + longname: Averaged total lightning flash density in the last 3 hours + units: km**-2 day**-1 + description: This parameter gives the total lightning flash rate averaged over the + last 3 hours.

Note that this parameter has units of flashes per square + kilometre per day. Conversion of this parameter to units of flashes per 100 square + kilometres per hour can give values that are easier to interpret.

This + parameter accounts for cloud-to-ground flashes (between the cloud and the Earth's + surface ) and intra-cloud flashes (between two cloud regions of opposite electric + charge). In the ECMWF Integrated Forecasting System, the total lightning flash + density is calculated using an empirical formula involving convective cloud and + precipitation information, convective available potential energy (CAPE) and convective + cloud base height, which are diagnosed by the convection scheme. + access_ids: + - dissemination + origin_ids: + - 0 +- id: 228058 + shortname: litota6 + longname: Averaged total lightning flash density in the last 6 hours + units: km**-2 day**-1 + description: 'This parameter gives the total lightning flash rate averaged over + the last 6 hours.

Note that this parameter has units of flashes per square + kilometre per day. Conversion of this parameter to units of flashes per 100 square + kilometres per hour can give values that are easier to interpret.

This + parameter accounts for cloud-to-ground flashes (between the cloud and the Earth''s + surface ) and intra-cloud flashes (between two cloud regions of opposite electric + charge). In the ECMWF Integrated Forecasting System, the total lightning flash + density is calculated using an empirical formula involving convective cloud and + precipitation information, convective available potential energy (CAPE) and convective + cloud base height, which are diagnosed by the convection scheme. ' + access_ids: + - dissemination + origin_ids: + - 0 +- id: 228059 + shortname: licga3 + longname: Averaged cloud-to-ground lightning flash density in the last 3 hours + units: km**-2 day**-1 + description: Averaged cloud-to-ground lightning flash density in the last 3 hours. + access_ids: [] + origin_ids: + - 0 +- id: 228060 + shortname: licga6 + longname: Averaged cloud-to-ground lightning flash density in the last 6 hours + units: km**-2 day**-1 + description: Averaged cloud-to-ground lightning flash density in the last 6 hours. + access_ids: [] + origin_ids: + - 0 +- id: 228070 + shortname: smnnob + longname: SMOS observed soil moisture retrieved using neural network + units: m**3 m**-3 + description: Observed soil moisture retrieved from passive microwave using neural + network + access_ids: [] + origin_ids: + - 98 +- id: 228071 + shortname: smnner + longname: SMOS observed soil moisture uncertainty retrieved using neural network + units: m**3 m**-3 + description: Observed soil moisture uncertainty retrieved from passive microwave + using neural network + access_ids: [] + origin_ids: + - 98 +- id: 228072 + shortname: smnnrfi + longname: SMOS radio frequency interference probability + units: '%' + description: Frequency Interference probability in the observed passive microwave + access_ids: [] + origin_ids: + - 98 +- id: 228073 + shortname: smnnnb + longname: SMOS number of observations per grid point + units: dimensionless + description: Number of soil moisture observations per grid point + access_ids: [] + origin_ids: + - 98 +- id: 228074 + shortname: smnntim + longname: SMOS observation time for the satellite soil moisture data + units: hour + description: Observation time for the satellite soil moisture data + access_ids: [] + origin_ids: + - 98 +- id: 228078 + shortname: gppbfas + longname: GPP coefficient from Biogenic Flux Adjustment System + units: dimensionless + description: "The two parameters \"gppbfas\" and \"recbfas\" are dimensionless re-scaling\ + \ factors which are applied to the\nCO2 ecosystem fluxes from the Carbon module\ + \ (CTESSEL) in the IFS:\n
    \r\n
  • gppbfas is applied to the Gross Primary Production\ + \ (GPP)
  • \r\n
  • recbfas is applied to the ecosystem Respiration (Reco)
  • \n\ +
\r\nThe factors are used in order to reduce the biases of the CO2 ecosystem\ + \ fluxes which are used in the operational CAMS CO2 forecast/analysis.\r\nThey\ + \ are currently computed before the beginning of the forecast by comparing the\ + \ Net Ecosystem Exchange budget of the model (NEE=GPP+Reco) within a 10-day window\ + \ and a reference climatology (based on optimized fluxes) plus/minus the NEE budget\ + \ anomaly of the model.\r\nIn the long term, these factors will be adjusted by\ + \ the data assimilation system using flux and/or atmospheric CO2 observations." + access_ids: [] + origin_ids: + - 98 +- id: 228079 + shortname: recbfas + longname: Rec coefficient from Biogenic Flux Adjustment System + units: dimensionless + description: 'The two parameters "gppbfas" and "recbfas" are dimensionless re-scaling + factors which are applied to the + + CO2 ecosystem fluxes from the Carbon module (CTESSEL) in the IFS: + +
    + +
  • gppbfas is applied to the Gross Primary Production (GPP)
  • + +
  • recbfas is applied to the ecosystem Respiration (Reco)
  • + +
+ + The factors are used in order to reduce the biases of the CO2 ecosystem fluxes + which are used in the operational CAMS CO2 forecast/analysis. + + They are currently computed before the beginning of the forecast by comparing + the Net Ecosystem Exchange budget of the model (NEE=GPP+Reco) within a 10-day + window and a reference climatology (based on optimized fluxes) plus/minus the + NEE budget anomaly of the model. + + In the long term, these factors will be adjusted by the data assimilation system + using flux and/or atmospheric CO2 observations.' + access_ids: [] + origin_ids: + - 98 +- id: 228080 + shortname: aco2nee + longname: Accumulated Carbon Dioxide Net Ecosystem Exchange + units: kg m**-2 + description: '' + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 228081 + shortname: aco2gpp + longname: Accumulated Carbon Dioxide Gross Primary Production + units: kg m**-2 + description: '' + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 228082 + shortname: aco2rec + longname: Accumulated Carbon Dioxide Ecosystem Respiration + units: kg m**-2 + description: '' + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 228083 + shortname: fco2nee + longname: Carbon dioxide net ecosystem exchange flux + units: kg m**-2 s**-1 + description: '' + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 228084 + shortname: fco2gpp + longname: Carbon dioxide gross primary production flux + units: kg m**-2 s**-1 + description: '' + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 228085 + shortname: fco2rec + longname: Carbon dioxide ecosystem respiration flux + units: kg m**-2 s**-1 + description: '' + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 228086 + shortname: sm20 + longname: Soil moisture top 20 cm + units: kg m**-3 + description:

The volumetric soil moisture on the top 20cm of the soil layer

Please + note that the encodings listed here for s2s are for Time-mean soil moisture top + 20 cm. The specific encoding for Time-mean soil moisture top 20 cm can be found + in 235113.

+ access_ids: [] + origin_ids: + - -40 + - 0 +- id: 228087 + shortname: sm100 + longname: Soil moisture top 100 cm + units: kg m**-3 + description:

The volumetric soil moisture on the top 100cm of the soil layer.

Please + note that the encodings listed here for s2s are for Time-mean soil moisture top + 100 cm. The specific encoding for Time-mean soil moisture top 100 cm can be found + in 235114.

+ access_ids: [] + origin_ids: + - -40 + - 0 +- id: 228088 + shortname: tcslw + longname: Total column supercooled liquid water + units: kg m**-2 + description: 'This parameter is the total amount of supercooled water in a column + extending from the surface of the Earth to the top of the atmosphere. Supercooled + water is water that exists in liquid form below 0oC. It is common in cold clouds + and is important in the formation of precipitation. Also, supercooled water in + clouds extending to the surface (i.e., fog) can cause icing/riming of various + structures.

This parameter represents the area averaged value for a grid + box.

Clouds contain a continuum of different sized water droplets + and ice particles. The ECMWF Integrated Forecasting System (IFS) cloud scheme + simplifies this to represent a number of discrete cloud droplets/particles including: + cloud water droplets, raindrops, ice crystals and snow (aggregated ice crystals). + The processes of droplet formation, conversion and aggregation are also highly + simplified in the IFS.' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228089 + shortname: tcrw + longname: Total column rain water + units: kg m**-2 + description: 'This parameter is the total amount of water in droplets of raindrop + size (which can fall to the surface as precipitation) in a column extending from + the surface of the Earth to the top of the atmosphere.

This parameter + represents the area averaged value for a grid + box.

Clouds contain a continuum of different sized water droplets + and ice particles. The ECMWF Integrated Forecasting System (IFS) cloud scheme + simplifies this to represent a number of discrete cloud droplets/particles including: + cloud water droplets, raindrops, ice crystals and snow (aggregated ice crystals). + The processes of droplet formation, conversion and aggregation are also highly + simplified in the IFS.' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228090 + shortname: tcsw + longname: Total column snow water + units: kg m**-2 + description: 'This parameter is the total amount of water in the form of snow (aggregated + ice crystals which can fall to the surface as precipitation) in a column extending + from the surface of the Earth to the top of the atmosphere.

This parameter + represents the area averaged value for a grid + box.

Clouds contain a continuum of different sized water droplets + and ice particles. The ECMWF Integrated Forecasting System (IFS) cloud scheme + simplifies this to represent a number of discrete cloud droplets/particles including: + cloud water droplets, raindrops, ice crystals and snow (aggregated ice crystals). + The processes of droplet formation, conversion and aggregation are also highly + simplified in the IFS.' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228091 + shortname: ccf + longname: Canopy cover fraction + units: (0 - 1) + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 228092 + shortname: stf + longname: Soil texture fraction + units: (0 - 1) + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 228093 + shortname: swv + longname: Volumetric soil moisture + units: m**3 m**-3 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 228094 + shortname: ist + longname: Ice temperature + units: K + description: '' + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 228095 + shortname: st20 + longname: Soil temperature top 20 cm + units: K + description:

The average soil temperature on the top 20cm of the soil layer.

Please + note that the encodings listed here for S2S are for Time-mean soil temperature + top 20 cm. The specific encoding for Time-mean soil temperature top 20 cm can + be found in 235115.

+ access_ids: [] + origin_ids: + - -40 + - 0 +- id: 228096 + shortname: st100 + longname: Soil temperature top 100 cm + units: K + description:

The average soil temperature on the top 100cm of the soil layer

Please + note that the encodings listed here for S2S are for Time-mean soil temperature + top 100 cm. The specific encoding for Time-mean soil temperature top 100 cm can + be found in 235116.

+ access_ids: [] + origin_ids: + - -40 + - 0 +- id: 228100 + shortname: evatc + longname: Evaporation from the top of canopy + units: m of water equivalent + description: The amount of evaporation from the canopy interception reservoir + access_ids: [] + origin_ids: + - -80 + - 98 +- id: 228101 + shortname: evabs + longname: Evaporation from bare soil + units: m of water equivalent + description: The amount of evaporation from bare soil + access_ids: [] + origin_ids: + - -80 + - 98 +- id: 228102 + shortname: evaow + longname: Evaporation from open water surfaces excluding oceans + units: m of water equivalent + description: Amount of evaporation from surface water storage like lakes and inundated + areas but excluding oceans + access_ids: [] + origin_ids: + - -80 + - 98 +- id: 228103 + shortname: evavt + longname: Evaporation from vegetation transpiration + units: m of water equivalent + description: Amount of evaporation from vegetation transpiration. This has the same + meaning as root extraction i.e. the amount of water extracted from the different + soil layers + access_ids: [] + origin_ids: + - -80 + - 98 +- id: 228104 + shortname: e_WLCH4 + longname: Atmosphere emission mass flux of Methane from Wetlands + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 228105 + shortname: sif740 + longname: Solar induced Chlorophyll fluorescence at 740nm + units: 10**-6 W m**-2 sr**-1 m**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 228106 + shortname: sif755 + longname: Solar induced Chlorophyll fluorescence at 755nm + units: 10**-6 W m**-2 sr**-1 m**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 228107 + shortname: sif771 + longname: Solar induced Chlorophyll fluorescence at 771nm + units: 10**-6 W m**-2 sr**-1 m**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 228108 + shortname: sif757 + longname: Solar induced Chlorophyll fluorescence at 757nm + units: 10**-6 W m**-2 sr**-1 m**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 228109 + shortname: acc_e_WLCH4 + longname: Accumulated mass emission of methane from Wetlands + units: kg m**-2 + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 228129 + shortname: ssrdc + longname: Surface short-wave (solar) radiation downward clear-sky + units: J m**-2 + description: 'clear-sky downward shortwave radiation flux at surface computed from + the model radiation scheme ' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228130 + shortname: strdc + longname: Surface long-wave (thermal) radiation downward clear-sky + units: J m**-2 + description: 'clear-sky downward longwave radiation flux at surface computed from + the model radiation scheme ' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228131 + shortname: u10n + longname: 10 metre u-component of neutral wind + units: m s**-1 + description: 'This parameter is the eastward component of the ''neutral wind'', + at a height of 10 metres above the surface of the Earth.

The neutral + wind is calculated from the surface stress and the corresponding roughness length + by assuming that the air is neutrally stratified. The neutral wind is slower than + the actual wind in stable conditions, and faster in unstable conditions. The neutral + wind is, by definition, in the direction of the surface stress. The size of the + roughness length depends on land surface properties or the sea state. ' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228132 + shortname: v10n + longname: 10 metre v-component of neutral wind + units: m s**-1 + description: 'This parameter is the northward component of the ''neutral wind'', + at a height of 10 metres above the surface of the Earth.

The neutral + wind is calculated from the surface stress and the corresponding roughness length + by assuming that the air is neutrally stratified. The neutral wind is slower than + the actual wind in stable conditions, and faster in unstable conditions. The neutral + wind is, by definition, in the direction of the surface stress. The size of the + roughness length depends on land surface properties or the sea state. ' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228134 + shortname: vtnowd + longname: V-tendency from non-orographic wave drag + units: m s**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 228136 + shortname: utnowd + longname: U-tendency from non-orographic wave drag + units: m s**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 228139 + shortname: st + longname: Soil temperature + units: K + description:

This GRIB2 encoding is only to be used in TIGGE + as it is WMO deprecated. Please use paramId 260360 otherwise.

+ access_ids: [] + origin_ids: + - -30 + - 0 + - 34 + - 98 +- id: 228141 + shortname: sd + longname: Snow depth water equivalent + units: kg m**-2 + description: '

Snow depth water equivalent in kg m**-2 (mm) water equivalent.

Please + note that the encodings listed here for s2s & uerra (which includes carra/cerra) + include entries for Time-mean snow depth water equivalent. The specific encoding + for Time-mean snow depth water equivalent can be found in 235078.

[NOTE: + See 141 for the equivalent parameter in "m of water equivalent"]

' + access_ids: + - dissemination + origin_ids: + - -40 + - -20 + - 0 + - 34 + - 98 +- id: 228143 + shortname: cp + longname: Convective precipitation + units: kg m**-2 + description: 'Precipitation produced by the convection scheme. Accumulated from + the beginning of the forecast. + +
[NOTE: See 143 for the equivalent parameter in "m"]' + access_ids: + - dissemination + origin_ids: + - 0 +- id: 228144 + shortname: sf + longname: Snowfall water equivalent + units: kg m**-2 + description: '[NOTE: See 144 for the equivalent parameter in "m of water equivalent"]' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228164 + shortname: tcc + longname: Total Cloud Cover + units: '%' + description: '[NOTE: See 164 for the equivalent parameter in "(0-1)"]' + access_ids: + - dissemination + origin_ids: + - -40 + - -20 + - 0 + - 7 + - 34 + - 98 +- id: 228170 + shortname: cap + longname: Field capacity + units: kg m**-3 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 228171 + shortname: wilt + longname: Wilting point + units: kg m**-3 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 228205 + shortname: ro + longname: Water runoff and drainage + units: kg m**-2 + description: Soil total column lateral water flow and bottom soil drainage + access_ids: [] + origin_ids: + - 0 +- id: 228216 + shortname: fzra + longname: Accumulated freezing rain + units: m + description: 'This parameter is the total amount of precipitation falling as freezing + rain, accumulated over a particular time period which + depends on the data extracted.

Freezing rain occurs when supercooled + water droplets (below 0°C but still in liquid form) immediately freeze as + they hit the ground (and other surfaces) to form a coating or glaze of clear ice. + Freezing rain creates hazardous, extremely slippery surface conditions and can + cause disruption to road, rail and air transport. If prolonged, it can damage + vegetation and crops and can accumulate on power lines, causing them to collapse. +

The units are depth in metres of liquid water equivalent. It is the + depth the liquid water would have if it were spread evenly over + the grid + box. Care should be taken when comparing model parameters with observations, + because observations are often local to a particular point in space and time, + rather than representing averages over a + model grid box and model time step
+ + [NOTE: See 231001 for the equivalent parameter in "kg m-2"]' + access_ids: + - dissemination + origin_ids: + - -80 + - -50 + - 98 +- id: 228217 + shortname: ilspf + longname: Instantaneous large-scale precipitation fraction + units: Proportion + description:

This parameter is the fraction of the grid + box (0-1) covered by large-scale precipitation at + the specified time .

Large-scale precipitation is rain and snow that + falls to the Earth's surface, and is generated by the cloud scheme in the ECMWF + Integrated Forecasting System (IFS). The cloud scheme represents the formation + and dissipation of clouds and large-scale precipitation due to changes in atmospheric + quantities (such as pressure, temperature and moisture) predicted directly by + the IFS at spatial scales of a grid box or larger. Precipitation can also be due + to convection generated by the convection scheme in the IFS. The convection scheme + represents convection at spatial scales smaller than the grid box. See further + information.

+ access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228218 + shortname: crr + longname: Convective rain rate + units: kg m**-2 s**-1 + description: This parameter is the rate of rainfall (rainfall intensity), at + the specified time , generated by the convection scheme in the ECMWF Integrated + Forecasting System (IFS). The convection scheme represents convection at spatial + scales smaller than the grid + box.

Total rainfall is made up of convective and large-scale rainfall. + Large-scale rainfall is generated by the cloud scheme in the IFS. The cloud scheme + represents the formation and dissipation of clouds and large-scale rainfall due + to changes in atmospheric quantities (such as pressure, temperature and moisture) + predicted directly by the IFS at spatial scales of a grid + boxor larger. See further + information. Rainfall is one component of precipitation. In the IFS, precipitation + is rain and snow that falls to the Earth's surface.

1 kg of water spread + over 1 square metre of surface is 1 mm deep (neglecting the effects of temperature + on the density of water), therefore the units are equivalent to mm per second.

Care + should be taken when comparing model parameters with observations, because observations + are often local to a particular point in space and time, rather than representing + averages over a model + grid box and model time step. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228219 + shortname: lsrr + longname: Large scale rain rate + units: kg m**-2 s**-1 + description: This parameter is the rate of rainfall (rainfall intensity), at + the specified time, generated by the cloud scheme in the ECMWF Integrated + Forecasting System (IFS). The cloud scheme represents the formation and dissipation + of clouds and large-scale precipitation due to changes in atmospheric quantities + (such as pressure, temperature and moisture) predicted directly by the IFS at + spatial scales of a grid + box or larger.

Rainfall can also be due to convection generated by + the convection scheme in the IFS. The convection scheme represents convection + at spatial scales smaller than the grid box. See further + information. Rainfall is one component of precipitation. In the IFS, precipitation + is rain and snow that falls to the Earth's surface.

1 kg of water spread + over 1 square metre of surface is 1 mm deep (neglecting the effects of temperature + on the density of water), therefore the units are equivalent to mm per second.

Care + should be taken when comparing model parameters with observations, because observations + are often local to a particular point in space and time, rather than representing + averages over a model + grid box and model time step. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228220 + shortname: csfr + longname: Convective snowfall rate water equivalent + units: kg m**-2 s**-1 + description: This parameter is the rate of snowfall (snowfall intensity), at + the specified time, generated by the convection scheme in the ECMWF Integrated + Forecasting System (IFS). The convection scheme represents convection at spatial + scales smaller than the grid + box.

Total snowfall is made up of convective and large-scale snowfall. + Large-scale snowfall is generated by the cloud scheme in the IFS. The cloud scheme + represents the formation and dissipation of clouds and large-scale snowfall due + to changes in atmospheric quantities (such as pressure, temperature and moisture) + predicted directly by the IFS at spatial scales of a grid + box or larger. See further + information. Snowfall is one component of precipitation. In the IFS, precipitation + is rain and snow that falls to the Earth's surface

Snowfall rate is considered + here in terms of its water equivalent. Since 1 kg of water spread over 1 square + metre of surface is 1 mm thick (neglecting the effects of temperature on the density + of water), the units are equivalent to mm (of liquid water) per second.

Care + should be taken when comparing model parameters with observations, because observations + are often local to a particular point in space and time, rather than representing + averages over a model + grid box and model time step. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228221 + shortname: lssfr + longname: Large scale snowfall rate water equivalent + units: kg m**-2 s**-1 + description: This parameter is the rate of snowfall (snowfall intensity), at + the specified time, generated by the cloud scheme in the ECMWF Integrated + Forecasting System (IFS). The cloud scheme represents the formation and dissipation + of clouds and large-scale snowfall due to changes in atmospheric quantities (such + as pressure, temperature and moisture) predicted directly by the IFS at spatial + scales of a grid + box or larger.

Snowfall can also be due to convection generated by + the convection scheme in the IFS. The convection scheme represents convection + at spatial scales smaller than the grid box. See further + information. Snowfall is one component of precipitation. In the IFS, precipitation + is rain and snow that falls to the Earth's surface

Snowfall rate is considered + here in terms of its water equivalent. Since 1 kg of water spread over 1 square + metre of surface is 1 mm thick (neglecting the effects of temperature on the density + of water), the units are equivalent to mm (of liquid water) per second.

Care + should be taken when comparing model parameters with observations, because observations + are often local to a particular point in space and time, rather than representing + averages over a model + grid box and model time step. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228222 + shortname: mxtpr3 + longname: Maximum total precipitation rate in the last 3 hours + units: kg m**-2 s**-1 + description: The maximum total precipitation rate in the previous 3 hour period. + The maximum is calculated from the precipitation rate at each model + time step.

In the ECMWF Integrated Forecasting System (IFS), total + precipitation is rain and snow that falls to the Earth's surface. It is the sum + of large-scale precipitation and convective precipitation. Large-scale precipitation + is generated by the cloud scheme in the IFS. The cloud scheme represents the formation + and dissipation of clouds and large-scale precipitation due to changes in atmospheric + quantities (such as pressure, temperature and moisture) predicted directly by + the IFS at spatial scales of a grid + box or larger. Convective precipitation is generated by the convection scheme + in the IFS. The convection scheme represents convection at spatial scales smaller + than the grid box. See + further information .

1 kg of water spread over 1 square metre of + surface is 1 mm deep (neglecting the effects of temperature on the density of + water), therefore the units are equivalent to mm per second.

Care should + be taken when comparing model parameters with observations, because observations + are often local to a particular point in space and time, rather than representing + averages over a model + grid box and model time step. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 228223 + shortname: mntpr3 + longname: Minimum total precipitation rate in the last 3 hours + units: kg m**-2 s**-1 + description: The minimum total precipitation rate in the previous 3 hour period. + The minimum is calculated from the precipitation rate at each model + time step.

In the ECMWF Integrated Forecasting System (IFS), total + precipitation is rain and snow that falls to the Earth's surface. It is the sum + of large-scale precipitation and convective precipitation. Large-scale precipitation + is generated by the cloud scheme in the IFS. The cloud scheme represents the formation + and dissipation of clouds and large-scale precipitation due to changes in atmospheric + quantities (such as pressure, temperature and moisture) predicted directly by + the IFS at spatial scales of a grid + box or larger. Convective precipitation is generated by the convection scheme + in the IFS. The convection scheme represents convection at spatial scales smaller + than the grid box. See + further information .

1 kg of water spread over 1 square metre of + surface is 1 mm deep (neglecting the effects of temperature on the density of + water), therefore the units are equivalent to mm per second.

Care should + be taken when comparing model parameters with observations, because observations + are often local to a particular point in space and time, rather than representing + averages over a model + grid box and model time step. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 228224 + shortname: mxtpr6 + longname: Maximum total precipitation rate in the last 6 hours + units: kg m**-2 s**-1 + description: The maximum total precipitation rate in the previous 6 hour period. + The maximum is calculated from the precipitation rate at each model + time step.

In the ECMWF Integrated Forecasting System (IFS), total + precipitation is rain and snow that falls to the Earth's surface. It is the sum + of large-scale precipitation and convective precipitation. Large-scale precipitation + is generated by the cloud scheme in the IFS. The cloud scheme represents the formation + and dissipation of clouds and large-scale precipitation due to changes in atmospheric + quantities (such as pressure, temperature and moisture) predicted directly by + the IFS at spatial scales of a grid + box or larger. Convective precipitation is generated by the convection scheme + in the IFS. The convection scheme represents convection at spatial scales smaller + than the grid box. See further + information.

1 kg of water spread over 1 square metre of surface + is 1 mm deep (neglecting the effects of temperature on the density of water), + therefore the units are equivalent to mm per second.

Care should be taken + when comparing model parameters with observations, because observations are often + local to a particular point in space and time, rather than representing averages + over a model + grid box and model time step. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 228225 + shortname: mntpr6 + longname: Minimum total precipitation rate in the last 6 hours + units: kg m**-2 s**-1 + description: The minimum total precipitation rate in the previous 6 hour period. + The minimum is calculated from the precipitation rate at each model + time step.

In the ECMWF Integrated Forecasting System (IFS), total + precipitation is rain and snow that falls to the Earth's surface. It is the sum + of large-scale precipitation and convective precipitation. Large-scale precipitation + is generated by the cloud scheme in the IFS. The cloud scheme represents the formation + and dissipation of clouds and large-scale precipitation due to changes in atmospheric + quantities (such as pressure, temperature and moisture) predicted directly by + the IFS at spatial scales of a grid + box or larger. Convective precipitation is generated by the convection scheme + in the IFS. The convection scheme represents convection at spatial scales smaller + than the grid box. See further + information.

1 kg of water spread over 1 square metre of surface + is 1 mm deep (neglecting the effects of temperature on the density of water), + therefore the units are equivalent to mm per second.

Care should be taken + when comparing model parameters with observations, because observations are often + local to a particular point in space and time, rather than representing averages + over a model + grid box and model time step. + access_ids: + - dissemination + origin_ids: + - 98 +- id: 228226 + shortname: mxtpr + longname: Maximum total precipitation rate since previous post-processing + units: kg m**-2 s**-1 + description: The total precipitation is calculated from the combined large-scale + and convective rainfall and snowfall rates every time step and the maximum is + kept since the last postprocessing + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228227 + shortname: mntpr + longname: Minimum total precipitation rate since previous post-processing + units: kg m**-2 s**-1 + description: The total precipitation is calculated from the combined large-scale + and convective rainfall and snowfall rates every time step and the minimum is + kept since the last postprocessing + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228228 + shortname: tp + longname: Total Precipitation + units: kg m**-2 + description: '[NOTE: See 228 for the equivalent parameter in "m"]' + access_ids: + - dissemination + origin_ids: + - 0 + - 7 + - 98 +- id: 228229 + shortname: smos_tb_cdfa + longname: SMOS first Brightness Temperature Bias Correction parameter + units: K + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 228230 + shortname: smos_tb_cdfb + longname: SMOS second Brightness Temperature Bias Correction parameter + units: dimensionless + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 228231 + shortname: mlcape50 + longname: Mixed-layer CAPE in the lowest 50 hPa + units: J kg**-1 + description: Convective Available Potential Energy (CAPE) is a measure of the amount + of energy available for convection. It is related to the maximum potential vertical + velocity in the updraught. MLCAPE50 refers to CAPE of a pseudoadiabatically ascending + air parcel representing the mean conditions in the lowest 50 hPa of the atmosphere. + access_ids: + - dissemination + origin_ids: + - 0 +- id: 228232 + shortname: mlcin50 + longname: Mixed-layer CIN in the lowest 50 hPa + units: J kg**-1 + description: Convective Inhibition (CIN) is a measure of the amount of energy needed + to be overcome for storm initiation. CIN reflects the strength of the capping + inversion. MLCIN50 refers to CIN of a pseudoadiabatically ascending air parcel + representing the mean conditions in the lowest 50 hPa of the atmosphere. + access_ids: + - dissemination + origin_ids: + - 0 +- id: 228233 + shortname: mlcape100 + longname: Mixed-layer CAPE in the lowest 100 hPa + units: J kg**-1 + description: Convective Available Potential Energy (CAPE) is a measure of the amount + of energy available for convection. It is related to the maximum potential vertical + velocity in the updraught. MLCAPE100 refers to CAPE of a pseudoadiabatically ascending + air parcel representing the mean conditions in the lowest 100 hPa of the atmosphere. + access_ids: + - dissemination + origin_ids: + - 0 +- id: 228234 + shortname: mlcin100 + longname: Mixed-layer CIN in the lowest 100 hPa + units: J kg**-1 + description: Convective Inhibition (CIN) is a measure of the amount of energy needed + to be overcome for storm initiation. CIN reflects the strength of the capping + inversion. MLCIN100 refers to CIN of a pseudoadiabatically ascending air parcel + representing the mean conditions in the lowest 100 hPa of the atmosphere. + access_ids: + - dissemination + origin_ids: + - 0 +- id: 228235 + shortname: mucape + longname: Most-unstable CAPE + units: J kg**-1 + description: Convective Available Potential Energy (CAPE) is a measure of the amount + of energy available for convection. It is related to the maximum potential vertical + velocity in the updraught. In the IFS MUCAPE refers to the most unstable parcel + (the parcel with the largest CAPE) found in the atmosphere from the surface up + to 350 hPa. For all the model levels in the lowest 60 hPa, 30-hPa mixed-layer + parameters are used. + access_ids: + - dissemination + origin_ids: + - 0 +- id: 228236 + shortname: mucin + longname: Most-unstable CIN + units: J kg**-1 + description: Convective Inhibition (CIN) is a measure of the amount of energy needed + to be overcome for storm initiation. CIN reflects the strength of the capping + inversion. In the IFS MUCIN refers to the most unstable parcel (the parcel with + the largest CAPE) found in the atmosphere from the surface up to 350 hPa. For + all the model levels in the lowest 60 hPa, 30-hPa mixed-layer parameters are used. + access_ids: + - dissemination + origin_ids: + - 0 +- id: 228237 + shortname: mudlp + longname: Departure level of the most unstable parcel expressed as Pressure + units: Pa + description: This represents the vertical level expressed as pressure from which + the most unstable parcel (the parcel with the largest CAPE) starts rising. + access_ids: + - dissemination + origin_ids: + - 0 +- id: 228239 + shortname: 200u + longname: 200 metre U wind component + units: m s**-1 + description: '' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228240 + shortname: 200v + longname: 200 metre V wind component + units: m s**-1 + description: '' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228241 + shortname: 200si + longname: 200 metre wind speed + units: m s**-1 + description: '' + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228242 + shortname: fdif + longname: Surface solar radiation diffuse total sky + units: J m**-2 + description: Total sky surface flux of diffuse shortwave radiation flux computed + from the model radiation scheme + access_ids: [] + origin_ids: + - 98 +- id: 228243 + shortname: cdif + longname: Surface solar radiation diffuse clear-sky + units: J m**-2 + description: Clear-sky surface flux of diffuse shortwave radiation flux computed + from the model radiation scheme + access_ids: [] + origin_ids: + - 98 +- id: 228244 + shortname: aldr + longname: Surface albedo of direct radiation + units: (0 - 1) + description: Surface albedo for direct radiation integrated by the radiation scheme + computed from the model radiation scheme + access_ids: [] + origin_ids: + - 98 +- id: 228245 + shortname: aldf + longname: Surface albedo of diffuse radiation + units: (0 - 1) + description: Surface albedo for diffuse radiation integrated by the radiation scheme + computed from the model radiation scheme + access_ids: [] + origin_ids: + - 98 +- id: 228246 + shortname: 100u + longname: 100 metre U wind component + units: m s**-1 + description: This parameter is the eastward component of the 100 m wind. It is the + horizontal speed of air moving towards the east, at a height of 100 metres above + the surface of the Earth, in metres per second.

Care should be taken + when comparing model parameters with observations, because observations are often + local to a particular point in space and time, rather than representing averages + over a model + grid box and model time step.

This parameter can be combined with + the northward component to give the speed and direction of the horizontal 100 + m wind. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228247 + shortname: 100v + longname: 100 metre V wind component + units: m s**-1 + description: This parameter is the northward component of the 100 m wind. It is + the horizontal speed of air moving towards the north, at a height of 100 metres + above the surface of the Earth, in metres per second.

Care should be + taken when comparing model parameters with observations, because observations + are often local to a particular point in space and time, rather than representing + averages over a model + grid box and model time step.

This parameter can be combined with + the eastward component to give the speed and direction of the horizontal 100 m + wind. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228248 + shortname: tccsw + longname: Surface short wave-effective total cloudiness + units: dimensionless + description: "Let SSRD and STRD be the surface downward short-wave and long-wave\ + \ radiation at the surface, and SSRDC and STRDC the surface clear-sky downward\ + \ short-wave and long-wave radiation at the surface.\r\n\r\nThe short-wave and\ + \ long-wave radiation-effective total cloudiness are\r\nthe equivalent cloud fractions\ + \ of the sky that would give the surface\r\ndownward radiation, without reference\ + \ to any cloud overlap assumption,\r\nany specification (liquid droplets or ice\ + \ particles) of cloud particles,\r\nand related cloud optical properties.\r\n\ + In particular, TCCSW, the surface short-wave-effective total cloudiness\r\nis\ + \ what might be the closest to what the \"person in the street\" could\r\nthink\ + \ of as total cloudiness.\r\n\r\nComputationally speaking, TCCSW = 1 - SSRD /\ + \ SSRDC\r\nand TCCLW = 1 - STRDC / STRD\r\n\r\n(the difference in the ratios is\ + \ due to the fact that, w.r.t. to clear\r\nsky conditions, clouds decrease the\ + \ amount of short-wave radiation\r\nusually available at the surface, whereas\ + \ clouds actually increase the\r\namount of long-wave radiation available at the\ + \ surface)." + access_ids: [] + origin_ids: + - 98 +- id: 228249 + shortname: 100si + longname: 100 metre wind speed + units: m s**-1 + description: This parameter is the horizontal speed of the wind, or movement of + air, at a height of 100 m above the surface of the Earth.

Care should + be taken when comparing model parameters with observations, because observations + are often local to a particular point in space and time, rather than representing + averages over a model + grid box and model time step.

Two other parameters, the eastward + and northward components, can be used to give the direction of the horizontal + 100 m wind. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 228250 + shortname: irrfr + longname: Irrigation fraction + units: Proportion + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 228251 + shortname: pev + longname: Potential evaporation + units: m + description: 'This parameter is a measure of the extent to which near-surface atmospheric + conditions are conducive to the process of evaporation. It is usually considered + to be the amount of evaporation, under existing atmospheric conditions, from a + surface of pure water which has the temperature of the lowest layer of the atmosphere + and gives an indication of the maximum possible evaporation.

Potential + evaporation in the current ECMWF Integrated Forecasting System is based on surface + energy balance calculations with the vegetation parameters set to ''crops/mixed + farming'' and assuming ''no stress from soil moisture''. In other words, evaporation + is computed for agricultural land as if it is well watered and assuming that the + atmosphere is not affected by this artificial surface condition. The latter may + not always be realistic. Although potential evaporation is meant to provide an + estimate of irrigation requirements, the method can give unrealistic results in + arid conditions due to too strong evaporation forced by dry air.

This + parameter is accumulated over a particular + time period which depends on the data extracted. + +
[NOTE: See 231005 for the equivalent parameter in "kg m-2"]' + access_ids: + - dissemination + origin_ids: + - -80 + - -70 + - -50 + - 98 +- id: 228252 + shortname: irr + longname: Irrigation + units: m + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 228253 + shortname: ascat_sm_cdfa + longname: ASCAT first soil moisture CDF matching parameter + units: m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 228254 + shortname: ascat_sm_cdfb + longname: ASCAT second soil moisture CDF matching parameter + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 98 +- id: 228255 + shortname: tcclw + longname: Surface long wave-effective total cloudiness + units: dimensionless + description: "Let SSRD and STRD be the surface downward short-wave and long-wave\ + \ radiation at the surface, and SSRDC and STRDC the surface clear-sky downward\ + \ short-wave and long-wave radiation at the surface.\r\n\r\nThe short-wave and\ + \ long-wave radiation-effective total cloudiness are\r\nthe equivalent cloud fractions\ + \ of the sky that would give the surface\r\ndownward radiation, without reference\ + \ to any cloud overlap assumption,\r\nany specification (liquid droplets or ice\ + \ particles) of cloud particles,\r\nand related cloud optical properties.\r\n\ + In particular, TCCSW, the surface short-wave-effective total cloudiness\r\nis\ + \ what might be the closest to what the \"person in the street\" could\r\nthink\ + \ of as total cloudiness.\r\n\r\nComputationally speaking, TCCSW = 1 - SSRD /\ + \ SSRDC\r\nand TCCLW = 1 - STRDC / STRD\r\n\r\n(the difference in the ratios is\ + \ due to the fact that, w.r.t. to clear\r\nsky conditions, clouds decrease the\ + \ amount of short-wave radiation\r\nusually available at the surface, whereas\ + \ clouds actually increase the\r\namount of long-wave radiation available at the\ + \ surface)." + access_ids: [] + origin_ids: + - 98 +- id: 229001 + shortname: cur + longname: Urban cover + units: (0 - 1) + description: "This parameter is the fraction of the grid box (0-1) that is covered\ + \ with an urban surface.\r\nThis parameter includes all impervious and\r\nartificial\ + \ surfaces (e.g. roads, buildings, parking lots, etc.)." + access_ids: [] + origin_ids: + - 0 +- id: 229002 + shortname: cro + longname: Road Cover + units: (0 - 1) + description: "This parameter is the fraction of the grid box (0-1) that is covered\ + \ with a flat impervious surface (including paved areas and bridges).\r\n" + access_ids: [] + origin_ids: + - 0 +- id: 229003 + shortname: cbu + longname: Building cover + units: (0 - 1) + description: "This parameter is the fraction of the grid box (0-1) that is covered\ + \ with an elevated impervious surface (e.g. buildings).\r\n" + access_ids: [] + origin_ids: + - 0 +- id: 229004 + shortname: bldh + longname: Building height + units: m + description: This parameter contains the mean building height. + access_ids: [] + origin_ids: + - 0 +- id: 229005 + shortname: hwr + longname: Vertical-to-horizontal area ratio + units: m**2 m**-2 + description: This parameter is the ratio of total building wall area to the plan + area of urban cover. + access_ids: [] + origin_ids: + - 0 +- id: 229006 + shortname: bhstd + longname: Standard deviation of building height + units: m + description: This parameter is the standard deviation of building heights of the + grid box + access_ids: [] + origin_ids: + - 0 +- id: 229007 + shortname: cwe + longname: Wetland cover + units: (0 - 1) + description: This parameter is the fraction of the grid box (0-1) which is inundated. + This includes marshes, fens, bogs and swamps but excludes lakes, reservoirs, rivers + and coral reefs. + access_ids: [] + origin_ids: + - 0 +- id: 229008 + shortname: twe + longname: Wetland type + units: (Code table 4.239) + description: "This parameter indicates the 12 types of wetlands recognised by the\ + \ ECMWF IFS wetland emissions model. They are used to calculate the wetland methane\ + \ fluxes:\r\n1 - Bog\r\n2 - Drained\r\n3 - Fen\r\n4 - Floodplain\r\n5 - Mangrove\r\ + \n6 - Marsh\r\n7 - Rice\r\n8 - Riverine\r\n9 - Salt Marsh\r\n10 - Swamp\r\n11\ + \ - Upland\r\n12 - Wet Tundra" + access_ids: [] + origin_ids: + - 0 +- id: 229009 + shortname: cirr + longname: Irrigation cover + units: (0 - 1) + description: This parameter is the fraction of the grid box (0-1) that is subject + to irrigation + access_ids: [] + origin_ids: + - 0 +- id: 229010 + shortname: c4cr + longname: C4 crop cover + units: (0 - 1) + description: This parameter is the fraction of the grid box (0-1) with C4 crops. + access_ids: [] + origin_ids: + - 0 +- id: 229011 + shortname: c4gr + longname: C4 grass cover + units: (0 - 1) + description: This parameter is the fraction of the grid box (0-1) with C4 grass. + access_ids: [] + origin_ids: + - 0 +- id: 230008 + shortname: srovar + longname: Surface runoff (variable resolution) + units: m + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 230009 + shortname: ssrovar + longname: Sub-surface runoff (variable resolution) + units: m + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 230020 + shortname: parcsvar + longname: Clear sky surface photosynthetically active radiation (variable resolution) + units: J m**-2 + description: 0.44-0.70 um accumulated field + access_ids: [] + origin_ids: + - 98 +- id: 230021 + shortname: fdirvar + longname: Total sky direct solar radiation at surface (variable resolution) + units: J m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 230022 + shortname: cdirvar + longname: Clear-sky direct solar radiation at surface (variable resolution) + units: J m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 230044 + shortname: esvar + longname: Snow evaporation (variable resolution) + units: kg m**-2 + description: 'Evaporation from snow averaged over the grid box (to find flux over + snow, divide by snow fraction) ' + access_ids: [] + origin_ids: + - 98 +- id: 230045 + shortname: smltvar + longname: Snowmelt (variable resolution) + units: kg m**-2 + description: 'Melting of snow averaged over the grid box (to find melt over snow, + divide by snow fraction) ' + access_ids: [] + origin_ids: + - 98 +- id: 230046 + shortname: sdurvar + longname: Solar duration (variable resolution) + units: s + description: null + access_ids: [] + origin_ids: + - 98 +- id: 230047 + shortname: dsrpvar + longname: Direct solar radiation (variable resolution) + units: J m**-2 + description: Incident on a plane perpendicular to the Sun's direction. Accumulated + field + access_ids: [] + origin_ids: + - 98 +- id: 230050 + shortname: lspfvar + longname: Large-scale precipitation fraction (variable resolution) + units: s + description: Fraction of the grid box that is covered by large-scale precipitation. + Accumulated field. + access_ids: [] + origin_ids: + - 98 +- id: 230057 + shortname: uvbvar + longname: Downward UV radiation at the surface (variable resolution) + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 230058 + shortname: parvar + longname: Photosynthetically active radiation at the surface (variable resolution) + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 230080 + shortname: aco2neevar + longname: Accumulated Carbon Dioxide Net Ecosystem Exchange (variable resolution) + units: kg m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 230081 + shortname: aco2gppvar + longname: Accumulated Carbon Dioxide Gross Primary Production (variable resolution) + units: kg m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 230082 + shortname: aco2recvar + longname: Accumulated Carbon Dioxide Ecosystem Respiration (variable resolution) + units: kg m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 230129 + shortname: ssrdcvar + longname: Surface solar radiation downward clear-sky (variable resolution) + units: J m**-2 + description: clear-sky downward shortwave radiation flux at surface computed from + the model radiation scheme + access_ids: [] + origin_ids: + - 98 +- id: 230130 + shortname: strdcvar + longname: Surface thermal radiation downward clear-sky (variable resolution) + units: J m**-2 + description: clear-sky downward longwave radiation flux at surface computed from + the model radiation scheme + access_ids: [] + origin_ids: + - 98 +- id: 230142 + shortname: lspvar + longname: Stratiform precipitation (Large-scale precipitation) (variable resolution) + units: m + description: 'Precipitation from the prognostic cloud scheme (which is also fed + by detrained water/ice from convection) ' + access_ids: [] + origin_ids: + - 98 +- id: 230143 + shortname: cpvar + longname: Convective precipitation (variable resolution) + units: m + description: 'Precipitation from updrafts in convection scheme ' + access_ids: [] + origin_ids: + - 98 +- id: 230144 + shortname: sfvar + longname: Snowfall (convective + stratiform) (variable resolution) + units: m of water equivalent + description: null + access_ids: [] + origin_ids: + - 98 +- id: 230145 + shortname: bldvar + longname: Boundary layer dissipation (variable resolution) + units: J m**-2 + description: 'Conversion of kinetic energy of the mean flow into heat by turbulent + diffusion ' + access_ids: [] + origin_ids: + - 98 +- id: 230146 + shortname: sshfvar + longname: Surface sensible heat flux (variable resolution) + units: J m**-2 + description: 'Exchange of heat with the surface through turbulent diffusion ' + access_ids: [] + origin_ids: + - 98 +- id: 230147 + shortname: slhfvar + longname: Surface latent heat flux (variable resolution) + units: J m**-2 + description: Exchange of latent heat with the surface through turbulent diffusion + access_ids: [] + origin_ids: + - 98 +- id: 230169 + shortname: ssrdvar + longname: Surface solar radiation downwards (variable resolution) + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 230174 + shortname: alvar + longname: Albedo (variable resolution) + units: (0 - 1) + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 230175 + shortname: strdvar + longname: Surface thermal radiation downwards (variable resolution) + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 230176 + shortname: ssrvar + longname: Surface net solar radiation (variable resolution) + units: J m**-2 + description: 'Net solar radiation at the surface ' + access_ids: [] + origin_ids: + - 98 +- id: 230177 + shortname: strvar + longname: Surface net thermal radiation (variable resolution) + units: J m**-2 + description: 'Net thermal radiation at the surface ' + access_ids: [] + origin_ids: + - 98 +- id: 230178 + shortname: tsrvar + longname: Top net solar radiation (variable resolution) + units: J m**-2 + description: 'Net solar radiation at the top of the atmosphere ' + access_ids: [] + origin_ids: + - 98 +- id: 230179 + shortname: ttrvar + longname: Top net thermal radiation (variable resolution) + units: J m**-2 + description: 'Net thermal radiation at the top of the atmosphere ' + access_ids: [] + origin_ids: + - 98 +- id: 230180 + shortname: ewssvar + longname: East-West surface stress (variable resolution) + units: N m**-2 s + description: 'East-West surface stress due to to turbulent processes ' + access_ids: [] + origin_ids: + - 98 +- id: 230181 + shortname: nsssvar + longname: North-South surface stress (variable resolution) + units: N m**-2 s + description: 'North-South surface stress due to to turbulent processes ' + access_ids: [] + origin_ids: + - 98 +- id: 230182 + shortname: evar + longname: Evaporation (variable resolution) + units: kg m**-2 + description: 'Moisture flux from the surface into the atmosphere ' + access_ids: [] + origin_ids: + - 98 +- id: 230189 + shortname: sundvar + longname: Sunshine duration (variable resolution) + units: s + description: 'Time that radiation in the direction of the sun is above 120 W/m2 ' + access_ids: [] + origin_ids: + - 98 +- id: 230195 + shortname: lgwsvar + longname: Longitudinal component of gravity wave stress (variable resolution) + units: N m**-2 s + description: 'East-West component of surface stress due to gravity waves and orographic + blocking ' + access_ids: [] + origin_ids: + - 98 +- id: 230196 + shortname: mgwsvar + longname: Meridional component of gravity wave stress (variable resolution) + units: N m**-2 s + description: 'North-South component of surface stress due to gravity waves and orographic + blocking ' + access_ids: [] + origin_ids: + - 98 +- id: 230197 + shortname: gwdvar + longname: Gravity wave dissipation (variable resolution) + units: J m**-2 + description: 'Conversion of kinetic energy of the mean flow into heat due gravity + waves and orographic blocking ' + access_ids: [] + origin_ids: + - 98 +- id: 230198 + shortname: srcvar + longname: Skin reservoir content (variable resolution) + units: kg m**-2 + description: 'Amount of water in interception reservoir ' + access_ids: [] + origin_ids: + - 98 +- id: 230205 + shortname: rovar + longname: Runoff (variable resolution) + units: m + description: 'Amount of water that is lost from the soil through surface runoff + and deep soil drainage ' + access_ids: [] + origin_ids: + - 98 +- id: 230208 + shortname: tsrcvar + longname: Top net solar radiation, clear sky (variable resolution) + units: J m**-2 + description: 'Clear sky part of the net solar radiation at the top of the atmosphere ' + access_ids: [] + origin_ids: + - 98 +- id: 230209 + shortname: ttrcvar + longname: Top net thermal radiation, clear sky (variable resolution) + units: J m**-2 + description: 'Clear sky part of the net thermal radiation at the top of the atmosphere ' + access_ids: [] + origin_ids: + - 98 +- id: 230210 + shortname: ssrcvar + longname: Surface net solar radiation, clear sky (variable resolution) + units: J m**-2 + description: 'Clear sky part of the net solar radiation at the surface ' + access_ids: [] + origin_ids: + - 98 +- id: 230211 + shortname: strcvar + longname: Surface net thermal radiation, clear sky (variable resolution) + units: J m**-2 + description: 'Clear sky part of the net thermal radiation at the surface ' + access_ids: [] + origin_ids: + - 98 +- id: 230212 + shortname: tisrvar + longname: TOA incident solar radiation (variable resolution) + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 230213 + shortname: vimdvar + longname: Vertically integrated moisture divergence (variable resolution) + units: kg m**-2 + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 230216 + shortname: fzravar + longname: Accumulated freezing rain (variable resolution) + units: m + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 230228 + shortname: tpvar + longname: Total precipitation (variable resolution) + units: m + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 230239 + shortname: csfvar + longname: Convective snowfall (variable resolution) + units: m of water equivalent + description: Accumulated field + access_ids: [] + origin_ids: + - 98 +- id: 230240 + shortname: lsfvar + longname: Large-scale snowfall (variable resolution) + units: m of water equivalent + description: Accumulated field + access_ids: [] + origin_ids: + - 98 +- id: 230251 + shortname: pevvar + longname: Potential evaporation (variable resolution) + units: m + description: '' + access_ids: [] + origin_ids: + - 98 +- id: 231001 + shortname: fzrawe + longname: Accumulated freezing rain water equivalent + units: kg m**-2 + description: '[NOTE: See 228216 for the equivalent parameter in "m"]' + access_ids: [] + origin_ids: + - 0 +- id: 231002 + shortname: rowe + longname: Runoff water equivalent (surface plus subsurface) + units: kg m**-2 + description: '

Some water from rainfall, melting snow, or deep in the soil, stays + stored in the soil. Otherwise, the water drains away, either over the surface + (surface runoff), or under the ground (sub-surface runoff) and the sum of these + two is simply called ''runoff''. This parameter is the total amount of water accumulated + over a particular + time period which depends on the data extracted. Care should be taken when + comparing model parameters with observations, because observations are often local + to a particular point rather than averaged over a grid square area. Observations + are also often taken in different units, such as mm/day, rather than the accumulated + quantity produced here.

Runoff is a measure of the availability of water + in the soil, and can, for example, be used as an indicator of drought or flood. + More information about how runoff is calculated is given in the IFS + Physical Processes documentation.

[NOTE: See 205 for the equivalent + parameter in "m"]

' + access_ids: + - dissemination + origin_ids: + - 0 +- id: 231003 + shortname: eswe + longname: Snow evaporation water equivalent + units: kg m**-2 + description: '[NOTE: See 44 for the equivalent parameter in "m of water equivalent"]' + access_ids: [] + origin_ids: + - 0 +- id: 231004 + shortname: pevr + longname: Potential evaporation rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231005 + shortname: peva + longname: Potential evaporation + units: kg m**-2 + description: '[NOTE: See 228251 for the equivalent parameter in "m"]' + access_ids: [] + origin_ids: + - 0 +- id: 231006 + shortname: tifr + longname: Tile fraction + units: Proportion + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 231007 + shortname: tipe + longname: Tile percentage + units: '%' + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 231008 + shortname: flsrm + longname: Forecast logarithm of surface roughness length for moisture + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231009 + shortname: surfror + longname: Surface runoff rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231010 + shortname: surfro + longname: Surface runoff + units: kg m**-2 + description: '[NOTE: See 8 for the equivalent parameter in "m"]' + access_ids: [] + origin_ids: + - 0 +- id: 231011 + shortname: ssurfror + longname: Sub-surface runoff rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231012 + shortname: ssurfro + longname: Sub-surface runoff + units: kg m**-2 + description: '[NOTE: See 9 for the equivalent parameter in "m"]' + access_ids: [] + origin_ids: + - 0 +- id: 231013 + shortname: rfl04 + longname: Reflectance in 0.4 micron channel + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231014 + shortname: vdiv + longname: Vertical divergence + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231015 + shortname: dtc + longname: Drag thermal coefficient + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231016 + shortname: dec + longname: Drag evaporation coefficient + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231017 + shortname: pdhs + longname: Pressure departure from hydrostatic state + units: Pa + description: The difference between the true and the hydrostatic pressure. + access_ids: [] + origin_ids: + - 0 +- id: 231018 + shortname: snrf + longname: Surface net radiation flux (SW and LW) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231019 + shortname: tnrf + longname: Top net radiation flux (SW and LW) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231021 + shortname: gits + longname: Global irradiance on tilted surfaces + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231022 + shortname: eagr + longname: Eady growth rate + units: day**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231023 + shortname: tdtc + longname: Tropical cyclones track density + units: Numeric + description: Detection of tropical cyclones and their tracks in a large area (footprint). + access_ids: [] + origin_ids: + - 0 +- id: 231024 + shortname: cant + longname: Canopy air temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231025 + shortname: swit + longname: Soil wetness index (total layer) + units: Numeric + description: The volume of water over the total volume of voids in the soil, expressed + as an index with values between 0 (residual soil moisture) and 1 (saturation), + representing the lower and upper soil moisture limits of the entire soil profile. + access_ids: [] + origin_ids: + - 0 +- id: 231026 + shortname: swir + longname: Soil wetness index (root zone) + units: Numeric + description: The volume of water over the total volume of voids in the soil, expressed + as an index with values between 0 (residual soil moisture) and 1 (saturation), + representing the lower and upper soil moisture limits of the root zone. The root + zone is the maximum depth at which plants can extract water from the soil. Voids + are empty spaces in the soil column that can be filled with water or air. + access_ids: [] + origin_ids: + - 0 +- id: 231027 + shortname: swil + longname: Soil wetness index (layer) + units: Numeric + description: The volume of water over the total volume of voids in the soil, expressed + as an index with values between 0 (residual soil moisture) and 1 (saturation), + representing the lower and upper soil moisture limits of the specific soil layer. + access_ids: [] + origin_ids: + - 0 +- id: 231028 + shortname: ddrf + longname: Distance downward from roof surface + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231029 + shortname: diws + longname: Distance inward from outer wall surface + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231030 + shortname: ddrd + longname: Distance downward from road surface + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231031 + shortname: rpc + longname: Renewable power capacity + units: W + description: Renewable power capacity is the possible instantaneous power production + under optimal conditions from renewable sources. + access_ids: [] + origin_ids: + - 0 +- id: 231032 + shortname: rppr + longname: Renewable power production rate + units: W + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231033 + shortname: rpp + longname: Renewable power production + units: W s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231034 + shortname: wpc + longname: Wind power capacity + units: W + description: This power capacity is the possible instantaneous power production + under optimal conditions from wind sources. + access_ids: [] + origin_ids: + - 0 +- id: 231035 + shortname: wppr + longname: Wind power production rate + units: W + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231036 + shortname: wpp + longname: Wind power production + units: W s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231037 + shortname: pvpc + longname: Solar photovoltaic (PV) power capacity + units: W + description: This power capacity is the possible instantaneous power production + under optimal conditions from solar photovoltaic (PV) sources. + access_ids: [] + origin_ids: + - 0 +- id: 231038 + shortname: pvppr + longname: Solar photovoltaic (PV) power production rate + units: W + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231039 + shortname: pvpp + longname: Solar photovoltaic (PV) power production + units: W s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231040 + shortname: tgrp + longname: Graupel (snow pellets) precipitation + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231041 + shortname: litotint + longname: Time-integrated total lightning flash density + units: km**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231045 + shortname: pcdb + longname: Pressure at cloud base + units: Pa + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231046 + shortname: hacg + longname: Geometric height of adiabatic condensation level above ground + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231047 + shortname: hfcg + longname: Geometric height of free convection level above ground + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231048 + shortname: hnbg + longname: Geometric height of neutral buoyancy level above ground + units: m + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 231049 + shortname: deg3l + longname: Geometric height of 3 degrees C atmospheric isothermal level above ground + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231050 + shortname: rft + longname: Roof temperature + units: K + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 231051 + shortname: wlt + longname: Wall temperature + units: K + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 231052 + shortname: rdt + longname: Road temperature + units: K + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 231053 + shortname: sdrf + longname: Snow depth water equivalent on roof + units: kg m**-2 + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 231054 + shortname: sdrd + longname: Snow depth water equivalent on road + units: kg m**-2 + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 231055 + shortname: urct + longname: Urban canyon temperature + units: K + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 231056 + shortname: urcq + longname: Urban canyon specific humidity + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 231057 + shortname: csfwe + longname: Convective snowfall water equivalent + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231058 + shortname: lsfwe + longname: Large-scale snowfall water equivalent + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231059 + shortname: lslt + longname: Lake surface temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231060 + shortname: sbrn + longname: Surface bulk Richardson number + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231063 + shortname: srhe + longname: Surface roughness for heat + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231064 + shortname: srmo + longname: Surface roughness for moisture + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231065 + shortname: esrwe + longname: Snow evaporation rate water equivalent + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231066 + shortname: rare + longname: Radar reflectivity + units: dB + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231067 + shortname: pcdc + longname: Pressure at cloud ceiling + units: Pa + description:

This parameter is calculated by searching from the second lowest + model level upwards, to the height of the level where cloud fraction becomes greater + than 50% and condensate content greater than 1.E-6 kg kg-1.

+ access_ids: [] + origin_ids: + - 0 +- id: 231068 + shortname: visp + longname: Visibility through precipitation + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231069 + shortname: h0thg + longname: Geometric height of 0 degrees C theta level above ground + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231070 + shortname: h1thg + longname: Geometric height of 1 degree C theta level above ground + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231071 + shortname: h1p5thg + longname: Geometric height of 1.5 degrees C theta level above ground + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231072 + shortname: vswrz + longname: Volumetric soil moisture (root zone) + units: m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231073 + shortname: tcvmrpr + longname: Total column vertical-maximum radar precipitation rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231074 + shortname: tcvmrr + longname: Total column vertical-maximum radar reflectivity + units: dB + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231500 + shortname: hits + longname: Thunderstorm hazard index + units: (Code table 4.253) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231501 + shortname: hiswf + longname: Surface water flooding hazard index + units: (Code table 4.253) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231502 + shortname: hipa + longname: Polluted air hazard index + units: (Code table 4.253) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231503 + shortname: hiss + longname: Storm surge hazard index + units: (Code table 4.253) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231504 + shortname: hicw + longname: Cold wave hazard index + units: (Code table 4.253) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231505 + shortname: hihf + longname: Frost (hoar frost) hazard index + units: (Code table 4.253) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231506 + shortname: hihw + longname: Heatwave hazard index + units: (Code table 4.253) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231507 + shortname: hiw + longname: Wind hazard index + units: (Code table 4.253) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 231508 + shortname: hiwf + longname: Wildfires hazard index + units: (Code table 4.253) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 232000 + shortname: fba + longname: Burned area + units: '%' + description: The proportion of a grid box burned by fire. + access_ids: [] + origin_ids: + - 0 +- id: 232001 + shortname: bia + longname: Burning area + units: '%' + description: The proportion of a grid box with an active fire. + access_ids: [] + origin_ids: + - 0 +- id: 232002 + shortname: baa + longname: Burnable area + units: '%' + description: The proportion of a grid box which could potentially burn. + access_ids: [] + origin_ids: + - 0 +- id: 232003 + shortname: ubaa + longname: Un-burnable area + units: '%' + description: The proportion of a grid box which cannot burn. + access_ids: [] + origin_ids: + - 0 +- id: 232004 + shortname: fuell + longname: Fuel load + units: kg m**-2 + description: Total biomass of combustable material. + access_ids: [] + origin_ids: + - 0 +- id: 232005 + shortname: combc + longname: Combustion completeness + units: '%' + description: The combustion completeness is the fraction of fuel load combusted + during a fire. + access_ids: [] + origin_ids: + - 0 +- id: 232006 + shortname: fuelmc + longname: Fuel moisture content + units: kg kg**-1 + description: The kg of water per kg of biomass. + access_ids: [] + origin_ids: + - 0 +- id: 232007 + shortname: llfl + longname: Live leaf fuel load + units: kg m**-2 + description: Amount of biomass from live leaves. + access_ids: [] + origin_ids: + - 0 +- id: 232008 + shortname: lwfl + longname: 'Live wood fuel load ' + units: kg m**-2 + description: Amount of biomass from live woody components. + access_ids: [] + origin_ids: + - 0 +- id: 232009 + shortname: dlfl + longname: Dead leaf fuel load + units: kg m**-2 + description: Amount of biomass from dead leaves. + access_ids: [] + origin_ids: + - 0 +- id: 232010 + shortname: dwfl + longname: Dead wood fuel load + units: kg m**-2 + description: Amount of biomass from dead woody components. + access_ids: [] + origin_ids: + - 0 +- id: 232011 + shortname: lfmc + longname: Live fuel moisture content + units: kg kg**-1 + description: Amount of water per amount of mass in live vegetation. + access_ids: [] + origin_ids: + - 0 +- id: 232012 + shortname: fdlmc + longname: Fine dead leaf moisture content + units: kg kg**-1 + description: Amount of water per amount of mass in fine dead leaf fuel bed. These + fuels include herbaceous plants and leaf litter. Fine dead leaf is classified + as a 1-h fuel in the Nelson model as moisture responds on hourly timescales to + atmospheric conditions. Typical diameter is 0.2 cm. Values range between 0.01 + and 0.8. + access_ids: [] + origin_ids: + - 0 +- id: 232013 + shortname: ddlmc + longname: Dense dead leaf moisture content + units: kg kg**-1 + description: Amount of water per amount of mass in dense dead leaf fuel bed. These + fuels include herbaceous plants and small sticks. Dense dead leaf is classified + as a 10-h fuel in the Nelson model as moisture responds on sub-daily timescales + to atmospheric conditions. Typical diameter is 0.6 cm. Values range between 0.01 + and 0.6. + access_ids: [] + origin_ids: + - 0 +- id: 232014 + shortname: fdwmc + longname: Fine dead wood moisture content + units: kg kg**-1 + description: Amount of water per amount of mass in fine dead wood fuel bed. These + fuels include large sticks and logs. Fine dead wood is classified as a 100-h fuel + in the Nelson model as moisture responds on daily-to-weekly timescales to atmospheric + conditions. Typical diameter is 2.0 cm. Values range between 0.01 and 0.5. + access_ids: [] + origin_ids: + - 0 +- id: 232015 + shortname: ddwmc + longname: Dense dead wood moisture content + units: kg kg**-1 + description: Amount of water per amount of mass in dense dead wood fuel bed. These + fuels include fallen trees and large logs. Dense dead wood is classified as a + 1000-h fuel in the Nelson model as moisture responds on monthly timescales to + atmospheric conditions. Typical diameter is 6.0 cm. Values range between 0.01 + and 0.4. + access_ids: [] + origin_ids: + - 0 +- id: 232016 + shortname: lfmclv + longname: Live fuel moisture content in low vegetation + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 232017 + shortname: lfmchv + longname: Live fuel moisture content in high vegetation + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 233000 + shortname: tvige + longname: Time-integrated total column vertically-integrated eastward geopotential + flux + units: J m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 233001 + shortname: tvign + longname: Time-integrated total column vertically-integrated northward geopotential + flux + units: J m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 233002 + shortname: tviwgd + longname: Time-integrated total column vertically-integrated divergence of water + geopotential flux + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 233003 + shortname: tvigd + longname: Time-integrated total column vertically-integrated divergence of geopotential + flux + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 233004 + shortname: tviee + longname: Time-integrated total column vertically-integrated eastward enthalpy flux + units: J m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 233005 + shortname: tvien + longname: Time-integrated total column vertically-integrated northward enthalpy + flux + units: J m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 233006 + shortname: tvikee + longname: Time-integrated total column vertically-integrated eastward kinetic energy + flux + units: J m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 233007 + shortname: tviken + longname: Time-integrated total column vertically-integrated northward kinetic energy + flux + units: J m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 233008 + shortname: tvitee + longname: Time-integrated total column vertically-integrated eastward total energy + flux + units: J m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 233009 + shortname: tviten + longname: Time-integrated total column vertically-integrated northward total energy + flux + units: J m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 233010 + shortname: tvied + longname: Time-integrated total column vertically-integrated divergence of enthalpy + flux + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 233011 + shortname: tviked + longname: Time-integrated total column vertically-integrated divergence of kinetic + energy flux + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 233012 + shortname: tvited + longname: Time-integrated total column vertically-integrated divergence of total + energy flux + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 233013 + shortname: tviwed + longname: Time-integrated total column vertically-integrated divergence of water + enthalpy flux + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 233014 + shortname: tvimad + longname: Time-integrated total column vertically-integrated divergence of mass + flux + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 233015 + shortname: tvimae + longname: Time-integrated total column vertically-integrated eastward mass flux + units: kg m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 233016 + shortname: tviman + longname: Time-integrated total column vertically-integrated northward mass flux + units: kg m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 233017 + shortname: tviwvd + longname: Time-integrated total column vertically-integrated divergence of water + vapour flux + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 233018 + shortname: tviclwd + longname: Time-integrated total column vertically-integrated divergence of cloud + liquid water flux + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 233019 + shortname: tviciwd + longname: Time-integrated total column vertically-integrated divergence of cloud + ice water flux + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 233020 + shortname: tvird + longname: Time-integrated total column vertically-integrated divergence of rain + flux + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 233021 + shortname: tvisd + longname: Time-integrated total column vertically-integrated divergence of snow + flux + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 233022 + shortname: tviwve + longname: Time-integrated total column vertically-integrated eastward water vapour + flux + units: kg m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 233023 + shortname: tviwvn + longname: Time-integrated total column vertically-integrated northward water vapour + flux + units: kg m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 233024 + shortname: tviclwe + longname: Time-integrated total column vertically-integrated eastward cloud liquid + water flux + units: kg m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 233025 + shortname: tviclwn + longname: Time-integrated total column vertically-integrated northward cloud liquid + water flux + units: kg m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 233026 + shortname: tviciwe + longname: Time-integrated total column vertically-integrated eastward cloud ice + water flux + units: kg m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 233027 + shortname: tviciwn + longname: Time-integrated total column vertically-integrated northward cloud ice + water flux + units: kg m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 233028 + shortname: tvire + longname: Time-integrated total column vertically-integrated eastward rain flux + units: kg m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 233029 + shortname: tvirn + longname: Time-integrated total column vertically-integrated northward rain flux + units: kg m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 233030 + shortname: tvise + longname: Time-integrated total column vertically-integrated eastward snow flux + units: kg m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 233031 + shortname: tvisn + longname: Time-integrated total column vertically-integrated northward snow flux + units: kg m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 233032 + shortname: tvioze + longname: Time-integrated total column vertically-integrated eastward ozone flux + units: kg m**-1 + description: null + access_ids: [] + origin_ids: + - -80 + - -50 +- id: 233033 + shortname: tviozn + longname: Time-integrated total column vertically-integrated northward ozone flux + units: kg m**-1 + description: null + access_ids: [] + origin_ids: + - -80 + - -50 +- id: 233034 + shortname: tviozd + longname: Time-integrated total column vertically-integrated divergence of ozone + flux + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - -80 + - -50 +- id: 233035 + shortname: tvions + longname: Time-integrated total column vertically-integrated net source of ozone + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - -80 + - -50 +- id: 234139 + shortname: sts + longname: Surface temperature significance + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 234151 + shortname: msls + longname: Mean sea level pressure significance + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 234167 + shortname: 2ts + longname: 2 metre temperature significance + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 234228 + shortname: tps + longname: Total precipitation significance + units: '%' + description: null + access_ids: [] + origin_ids: + - 98 +- id: 235001 + shortname: avg_ttswr + longname: Time-mean temperature tendency due to short-wave radiation + units: K s**-1 + description: Temperature tendency due to parameterised short-wave radiation, all + sky. + access_ids: [] + origin_ids: + - 0 +- id: 235002 + shortname: avg_ttlwr + longname: Time-mean temperature tendency due to long-wave radiation + units: K s**-1 + description: Temperature tendency due to parameterised long-wave radiation, all + sky + access_ids: [] + origin_ids: + - 0 +- id: 235003 + shortname: avg_ttswrcs + longname: Time-mean temperature tendency due to short wave radiation, clear sky + units: K s**-1 + description: Temperature tendency due to parameterised short-wave radiation, clear + sky + access_ids: [] + origin_ids: + - 0 +- id: 235004 + shortname: avg_ttlwrcs + longname: Time-mean temperature tendency due to long-wave radiation, clear sky + units: K s**-1 + description: Temperature tendency due to parameterised long-wave radiation, clear + sky + access_ids: [] + origin_ids: + - 0 +- id: 235005 + shortname: avg_ttpm + longname: Time-mean temperature tendency due to parametrisations + units: K s**-1 + description: Temperature tendency due to parameterisations + access_ids: [] + origin_ids: + - 0 +- id: 235006 + shortname: avg_qtpm + longname: Time-mean specific humidity tendency due to parametrisations + units: kg kg**-1 s**-1 + description: Specific humidity tendency due to parameterisations + access_ids: [] + origin_ids: + - 0 +- id: 235007 + shortname: avg_utpm + longname: Time-mean eastward wind tendency due to parametrisations + units: m s**-2 + description: Eastward wind tendency due to parameterisations + access_ids: [] + origin_ids: + - 0 +- id: 235008 + shortname: avg_vtpm + longname: Time-mean northward wind tendency due to parametrisations + units: m s**-2 + description: Northward wind tendency due to parameterisations + access_ids: [] + origin_ids: + - 0 +- id: 235009 + shortname: avg_umf + longname: Time-mean updraught mass flux + units: kg m**-2 s**-1 + description: Updraught mass flux due to parameterised convection + access_ids: [] + origin_ids: + - 0 +- id: 235010 + shortname: avg_dmf + longname: Time-mean downdraught mass flux + units: kg m**-2 s**-1 + description: Downdraught mass flux due to parameterised convection + access_ids: [] + origin_ids: + - 0 +- id: 235011 + shortname: avg_udr + longname: Time-mean updraught detrainment rate + units: kg m**-3 s**-1 + description: Updraught detrainment rate due to parameterised convection + access_ids: [] + origin_ids: + - 0 +- id: 235012 + shortname: avg_ddr + longname: Time-mean downdraught detrainment rate + units: kg m**-3 s**-1 + description: Downdraught detrainment rate due to parameterised convection + access_ids: [] + origin_ids: + - 0 +- id: 235013 + shortname: avg_tpf + longname: Time-mean total precipitation flux + units: kg m**-2 s**-1 + description: Time-mean total precipitation rate, or time-mean total precipitation + flux. This parameter should not be used on level "Ground or water surface" (typeOfFirstFixedSurface=1). + Please use 235055 for this purpose. + access_ids: [] + origin_ids: + - 0 +- id: 235014 + shortname: avg_tdch + longname: Time-mean turbulent diffusion coefficient for heat + units: m**2 s**-1 + description: Turbulent diffusion coefficient for heat + access_ids: [] + origin_ids: + - 0 +- id: 235015 + shortname: tirf + longname: Time integral of rain flux + units: kg m**-2 + description: Accumulated (from the beginning of the forecast) + access_ids: [] + origin_ids: + - 0 +- id: 235017 + shortname: tisemf + longname: Time integral of surface eastward momentum flux + units: N m**-2 s + description: Accumulated surface momentum flux in eastward direction + access_ids: [] + origin_ids: + - 0 +- id: 235018 + shortname: tisnmf + longname: Time integral of surface northward momentum flux + units: N m**-2 s + description: Accumulated surface momentum flux in northward direction + access_ids: [] + origin_ids: + - 0 +- id: 235019 + shortname: tislhef + longname: Time integral of surface latent heat evaporation flux + units: J m**-2 + description: "This parameter is the transfer of latent heat resulting from evaporation\ + \ between the Earth's surface and the atmosphere through the effects of turbulent\ + \ air motion. Evaporation from the Earth's surface represents a transfer of energy\ + \ from the surface to the atmosphere. See further documentation\r\n\r\nThis parameter is accumulated over a particular time period which depends on the data extracted. The units are\ + \ joules per square metre (J m-2). To convert to watts per square metre (W m-2),\ + \ the accumulated values should be divided by the accumulation period expressed\ + \ in seconds.\r\n\r\nThe ECMWF convention for vertical fluxes is positive downwards." + access_ids: [] + origin_ids: + - 0 +- id: 235020 + shortname: avg_surfror + longname: Time-mean surface runoff rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235021 + shortname: avg_ssurfror + longname: Time-mean sub-surface runoff rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235022 + shortname: avg_parcsf + longname: Time-mean surface photosynthetically active radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235023 + shortname: avg_esrwe + longname: Time-mean snow evaporation rate water equivalent + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235024 + shortname: avg_smr + longname: Time-mean snow melt rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235025 + shortname: avg_imagss + longname: Time-mean magnitude of turbulent surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235026 + shortname: avg_ilspf + longname: Time-mean large-scale precipitation fraction + units: Proportion + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235027 + shortname: avg_sduvrf + longname: Time-mean surface downward UV radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235028 + shortname: avg_sparf + longname: Time-mean surface photosynthetically active radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235029 + shortname: avg_lsprate + longname: Time-mean large-scale precipitation rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235030 + shortname: avg_cpr + longname: Time-mean convective precipitation rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235031 + shortname: avg_tsrwe + longname: Time-mean total snowfall rate water equivalent + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235032 + shortname: avg_ibld + longname: Time-mean boundary layer dissipation + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235033 + shortname: avg_ishf + longname: Time-mean surface sensible heat flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235034 + shortname: avg_slhtf + longname: Time-mean surface latent heat flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235035 + shortname: avg_sdswrf + longname: Time-mean surface downward short-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235036 + shortname: avg_sdlwrf + longname: Time-mean surface downward long-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235037 + shortname: avg_snswrf + longname: Time-mean surface net short-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235038 + shortname: avg_snlwrf + longname: Time-mean surface net long-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235039 + shortname: avg_tnswrf + longname: Time-mean top net short-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235040 + shortname: avg_tnlwrf + longname: Time-mean top net long-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235041 + shortname: avg_iews + longname: Time-mean eastward turbulent surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235042 + shortname: avg_inss + longname: Time-mean northward turbulent surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235043 + shortname: avg_ie + longname: Time-mean moisture flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235044 + shortname: avg_sdf + longname: Time-mean sunshine duration fraction + units: Proportion + description: This parameter is the amount of sunshine in seconds over a given length + of time in seconds. Sunshine is defined as a radiation intensity above 120 W m-2. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235045 + shortname: avg_iegwss + longname: Time-mean eastward gravity wave surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235046 + shortname: avg_ingwss + longname: Time-mean northward gravity wave surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235047 + shortname: avg_igwd + longname: Time-mean gravity wave dissipation + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235048 + shortname: avg_rorwe + longname: Time-mean runoff rate water equivalent (surface plus subsurface) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235049 + shortname: avg_tnswrfcs + longname: Time-mean top net short-wave radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235050 + shortname: avg_tnlwrfcs + longname: Time-mean top net long-wave radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235051 + shortname: avg_snswrfcs + longname: Time-mean surface net short-wave radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235052 + shortname: avg_snlwrfcs + longname: Time-mean surface net long-wave radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235053 + shortname: avg_tdswrf + longname: Time mean top downward short-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235054 + shortname: avg_vimdf + longname: Time-mean total column vertically-integrated moisture divergence flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235055 + shortname: avg_tprate + longname: Time-mean total precipitation rate + units: kg m**-2 s**-1 + description: Time-mean total precipitation rate, or time-mean total precipitation + flux. This parameter is on level "Ground or water surface" (typeOfFirstFixedSurface=1). + For this parameter on other levels, please use 235013. + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235056 + shortname: avg_csfr + longname: Time-mean convective snowfall rate water equivalent + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235057 + shortname: avg_lssfr + longname: Time-mean large scale snowfall rate water equivalent + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235058 + shortname: avg_sdirswrf + longname: Time-mean surface direct short-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235059 + shortname: avg_sdirswrfcs + longname: Time-mean surface direct short-wave radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235060 + shortname: msdfswrf + longname: Mean surface diffuse short-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235061 + shortname: avg_sdifswrfcs + longname: Time-mean surface diffuse short-wave radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 235062 + shortname: avg_fco2nee + longname: Time-mean carbon dioxide net ecosystem exchange flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - -80 + - -50 + - 98 +- id: 235063 + shortname: avg_fco2gpp + longname: Time-mean carbon dioxide gross primary production flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - -80 + - -50 + - 98 +- id: 235064 + shortname: avg_fco2rec + longname: Time-mean carbon dioxide ecosystem respiration flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - -80 + - -50 + - 98 +- id: 235068 + shortname: avg_sdswrfcs + longname: Time-mean surface downward short-wave radiation flux, clear sky + units: W m**-2 + description: '' + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235069 + shortname: avg_sdlwrfcs + longname: Time-mean surface downward long-wave radiation flux, clear sky + units: W m**-2 + description: '' + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235070 + shortname: avg_pevr + longname: Time-mean potential evaporation rate + units: kg m**-2 s**-1 + description: '' + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 235071 + shortname: tislhsf + longname: Time integral of surface latent heat sublimation flux + units: J m**-2 + description: "This parameter is the transfer of latent heat due to sublimation from\ + \ snow surfaces between the Earth's surface and the atmosphere through the effects\ + \ of turbulent air motion. Sublimation from the Earth's surface represents a transfer\ + \ of energy from the surface to the atmosphere.See further documentation\r\n\r\nThis parameter is accumulated over a particular time period which depends on the data extracted. The units are\ + \ joules per square metre (J m-2). To convert to watts per square metre (W m-2),\ + \ the accumulated values should be divided by the accumulation period expressed\ + \ in seconds.\r\n\r\nThe ECMWF convention for vertical fluxes is positive downwards." + access_ids: [] + origin_ids: + - 0 +- id: 235072 + shortname: tisef + longname: Time integral of snow evaporation flux + units: kg m**-2 + description: 'This parameter is the accumulated amount of water that has evaporated + from snow from the snow-covered area of a grid + box.
+ + The ECMWF Integrated Forecast System represents snow as additional layer(s) + over the uppermost soil level. The snow may cover all or part of the grid box. + This parameter corresponds to the mass of liquid water per unit area of evaporated + snow (from the snow-covered area of a grid + box).
+ + This parameter is accumulated over a  particular + time period which depends on the data extracted.
+ + The ECMWF Integrated Forecasting System convention is that downward fluxes are + positive. Therefore, negative values indicate evaporation and positive values + indicate deposition.' + access_ids: [] + origin_ids: + - 98 +- id: 235073 + shortname: tietrf + longname: Time integral of evapotranspiration flux + units: kg m**-2 + description: 'This parameter is the accumulated amount of water that has evaporated + from the different surfaces (e.g. soil, water bodies) and from the vegetation + transpiration in a grid box, into vapour in the air above.
+ + This parameter is accumulated over a particular + time period which depends on the data extracted.
+ + The ECMWF Integrated Forecasting System convention is that downward fluxes are + positive. Therefore, negative values indicate evaporation and positive values + indicate condensation.' + access_ids: [] + origin_ids: + - 0 +- id: 235074 + shortname: avg_etr + longname: Time-mean evapotranspiration rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235075 + shortname: tipet + longname: Time integral of potential evapotranspiration rate + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235076 + shortname: avg_petr + longname: Time-mean potential evapotranspiration rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235077 + shortname: avg_vsw + longname: Time-mean volumetric soil moisture + units: m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235078 + shortname: avg_sd + longname: Time-mean snow depth water equivalent + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235079 + shortname: avg_skt + longname: Time-mean skin temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235080 + shortname: avg_rsn + longname: Time-mean snow density + units: kg m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235081 + shortname: avg_cvl + longname: Time-mean low vegetation cover + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235082 + shortname: avg_cvh + longname: Time-mean high vegetation cover + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235083 + shortname: avg_ci + longname: Time-mean sea ice area fraction + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235084 + shortname: avg_sst + longname: Time-mean sea surface temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235085 + shortname: avg_lai_lv + longname: Time-mean leaf area index, low vegetation + units: m**2 m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235086 + shortname: avg_lai_hv + longname: Time-mean leaf area index, high vegetation + units: m**2 m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235087 + shortname: avg_tclw + longname: Time-mean total column liquid water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235088 + shortname: avg_tciw + longname: Time-mean total column cloud ice water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235089 + shortname: avg_2sh + longname: Time-mean 2 metre specific humidity + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235090 + shortname: avg_lmlt + longname: Time-mean lake mix-layer temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235091 + shortname: avg_lmld + longname: Time-mean lake mix-layer depth + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235092 + shortname: avg_2r + longname: Time-mean 2 metre relative humidity + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235093 + shortname: avg_fscov + longname: Time-mean fraction of snow cover + units: Proportion + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235094 + shortname: avg_sot + longname: Time-mean soil temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235095 + shortname: avg_sde + longname: Time-mean snow depth + units: m + description: null + access_ids: [] + origin_ids: + - -70 +- id: 235096 + shortname: avg_snowc + longname: Time-mean snow cover + units: '%' + description: null + access_ids: [] + origin_ids: + - -70 +- id: 235097 + shortname: avg_ws + longname: Time-mean wind speed + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - -90 + - 0 +- id: 235098 + shortname: avg_pres + longname: Time-mean pressure + units: Pa + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235099 + shortname: avg_chnk + longname: Time-mean charnock + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235100 + shortname: avg_pv + longname: Time-mean potential vorticity + units: K m**2 kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235101 + shortname: avg_crwc + longname: Time-mean specific rain water content + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235102 + shortname: avg_cswc + longname: Time-mean specific snow water content + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235103 + shortname: avg_etadot + longname: Time-mean eta-coordinate vertical velocity + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235105 + shortname: avg_vis + longname: Time-mean visibility + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235106 + shortname: avg_wdir + longname: Time-mean wind direction + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235107 + shortname: avg_tcsw + longname: Time-mean total column snow water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235108 + shortname: avg_lcc + longname: Time-mean low cloud cover + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235109 + shortname: avg_mcc + longname: Time-mean medium cloud cover + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235110 + shortname: avg_hcc + longname: Time-mean high cloud cover + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235111 + shortname: avg_tcrw + longname: Time-mean total column rain water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235113 + shortname: avg_sm20 + longname: Time-mean soil moisture top 20 cm + units: kg m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235114 + shortname: avg_sm100 + longname: Time-mean soil moisture top 100 cm + units: kg m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235115 + shortname: avg_st20 + longname: Time-mean soil temperature top 20 cm + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235116 + shortname: avg_st100 + longname: Time-mean soil temperature top 100 cm + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235117 + shortname: avg_mucape + longname: Time-mean most-unstable CAPE + units: J kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 235118 + shortname: avg_vsw20 + longname: Time-mean volumetric soil moisture top 20 cm + units: m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235119 + shortname: avg_vsw100 + longname: Time-mean volumetric soil moisture top 100 cm + units: m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235120 + shortname: avg_tcolg + longname: Time-mean total column vertically-integrated graupel (snow pellets) + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235129 + shortname: avg_z + longname: Time-mean geopotential + units: m**2 s**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235130 + shortname: avg_t + longname: Time-mean temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235131 + shortname: avg_u + longname: Time-mean U component of wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - -90 + - 0 +- id: 235132 + shortname: avg_v + longname: Time-mean V component of wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - -90 + - 0 +- id: 235133 + shortname: avg_q + longname: Time-mean specific humidity + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235134 + shortname: avg_sp + longname: Time-mean surface pressure + units: Pa + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235135 + shortname: avg_w + longname: Time-mean vertical velocity + units: Pa s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235136 + shortname: avg_tcw + longname: Time-mean total column water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235137 + shortname: avg_tcwv + longname: Time-mean total column vertically-integrated water vapour + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235138 + shortname: avg_vo + longname: Time-mean vorticity (relative) + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235141 + shortname: avg_sd_m + longname: Time-mean snow depth + units: m of water equivalent + description: null + access_ids: [] + origin_ids: + - -90 + - -70 + - 98 +- id: 235149 + shortname: avg_snrf + longname: Time-mean surface net radiation flux (SW and LW) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235150 + shortname: avg_tnrf + longname: Time-mean top net radiation flux (SW and LW) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235151 + shortname: avg_msl + longname: Time-mean mean sea level pressure + units: Pa + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235152 + shortname: avg_lnsp + longname: Time-mean logarithm of surface pressure + units: Numeric + description: null + access_ids: [] + origin_ids: + - -60 + - -50 + - 98 +- id: 235155 + shortname: avg_d + longname: Time-mean divergence + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235157 + shortname: avg_r + longname: Time-mean relative humidity + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235159 + shortname: avg_blh + longname: Time-mean boundary layer height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235165 + shortname: avg_10u + longname: Time-mean 10 metre U wind component + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235166 + shortname: avg_10v + longname: Time-mean 10 metre V wind component + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235168 + shortname: avg_2d + longname: Time-mean 2 metre dewpoint temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235186 + shortname: avg_lcc_frac + longname: Time-mean low cloud cover + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - -90 + - -70 + - 98 +- id: 235187 + shortname: avg_mcc_frac + longname: Time-mean medium cloud cover + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - -90 + - -70 + - 98 +- id: 235188 + shortname: avg_hcc_frac + longname: Time-mean high cloud cover + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - -90 + - -70 + - 98 +- id: 235189 + shortname: avg_suns + longname: Time-mean sunshine + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235203 + shortname: avg_o3 + longname: Time-mean ozone mass mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235238 + shortname: avg_tsn + longname: Time-mean temperature of snow layer + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235243 + shortname: avg_fal_frac + longname: Time-mean forecast albedo + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - -70 + - 98 +- id: 235244 + shortname: avg_fsr + longname: Time-mean forecast surface roughness + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235245 + shortname: avg_flsr + longname: Time-mean forecast logarithm of surface roughness for heat + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235246 + shortname: avg_clwc + longname: Time-mean specific cloud liquid water content + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235247 + shortname: avg_ciwc + longname: Time-mean specific cloud ice water content + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235248 + shortname: avg_cc + longname: Time-mean fraction of cloud cover + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235257 + shortname: avg_kx + longname: Time-mean K index + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235258 + shortname: avg_totalx + longname: Time-mean total totals index + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235261 + shortname: avg_10wdir + longname: Time-mean 10 metre wind direction + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235262 + shortname: avg_cat + longname: Time-mean clear air turbulence (CAT) + units: m**2/3 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235263 + shortname: avg_al + longname: Time-mean forecast albedo + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235269 + shortname: avg_pt + longname: Time-mean potential temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235270 + shortname: avg_dis + longname: Time-mean discharge from rivers or streams + units: m**3 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235271 + shortname: avg_swit + longname: Time-mean soil wetness index (total layer) + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235272 + shortname: avg_swir + longname: Time-mean soil wetness index (root zone) + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235273 + shortname: avg_swil + longname: Time-mean soil wetness index(layer) + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235274 + shortname: avg_flddep + longname: Time-mean floodplain depth + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235275 + shortname: avg_fldffr + longname: Time-mean floodplain flooded fraction + units: Proportion + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235276 + shortname: avg_fldfar + longname: Time-mean floodplain flooded area + units: m**2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235277 + shortname: avg_rivfr + longname: Time-mean river fraction + units: Proportion + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235278 + shortname: avg_rivar + longname: Time-mean river area + units: m**2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235279 + shortname: avg_rivcffr + longname: Time-mean fraction of river coverage plus river related flooding + units: Proportion + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235280 + shortname: avg_rivcfar + longname: Time-mean area of river coverage plus river related flooding + units: m**2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235281 + shortname: avg_aluvp_p + longname: Time-mean UV visible albedo for direct radiation (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235282 + shortname: avg_aluvd_p + longname: Time-mean UV visible albedo for diffuse radiation (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235283 + shortname: avg_alnip_p + longname: Time-mean near IR albedo for direct radiation (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235284 + shortname: avg_alnid_p + longname: Time-mean near IR albedo for diffuse radiation (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235285 + shortname: avg_asn + longname: Time-mean snow albedo + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235286 + shortname: avg_mont + longname: Time-mean montgomery potential + units: m**2 s**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235287 + shortname: avg_cape + longname: Time-mean convective available potential energy + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235288 + shortname: avg_tcc + longname: Time-mean total cloud cover + units: '%' + description: null + access_ids: [] + origin_ids: + - -80 + - -50 + - 0 +- id: 235289 + shortname: avg_srcon + longname: Time-mean skin reservoir content + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235290 + shortname: avg_tcioz + longname: Time-mean total column integrated ozone + units: DU + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235291 + shortname: avg_vike + longname: Time-mean total column vertically-integrated kinetic energy + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235292 + shortname: avg_vithe + longname: Time-mean total column vertically-integrated enthalpy + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235293 + shortname: avg_vipie + longname: Time-mean total column vertically-integrated potential + internal energy + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235294 + shortname: avg_vipile + longname: Time-mean total column vertically-integrated potential+internal+latent + energy + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235295 + shortname: avg_vitoe + longname: Time-mean total column vertically-integrated total energy + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235296 + shortname: avg_viwe + longname: Time-mean total column vertically-integrated water enthalpy + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235297 + shortname: avg_aluvpi_p + longname: Time-mean UV visible albedo for direct radiation, isotropic component + (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235298 + shortname: avg_aluvpv_p + longname: Time-mean UV visible albedo for direct radiation, volumetric component + (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235299 + shortname: avg_aluvpg_p + longname: Time-mean UV visible albedo for direct radiation, geometric component + (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235300 + shortname: avg_alnipi_p + longname: Time-mean near IR albedo for direct radiation, isotropic component (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235301 + shortname: avg_alnipv_p + longname: Time-mean near IR albedo for direct radiation, volumetric component (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235302 + shortname: avg_alnipg_p + longname: Time-mean near IR albedo for direct radiation, geometric component (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235303 + shortname: avg_cin + longname: Time-mean convective inhibition + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235304 + shortname: avg_zust + longname: Time-mean friction velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235305 + shortname: avg_lblt + longname: Time-mean lake bottom temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235306 + shortname: avg_ltlt + longname: Time-mean lake total layer temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235307 + shortname: avg_lshf + longname: Time-mean lake shape factor + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235308 + shortname: avg_lict + longname: Time-mean lake ice surface temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235309 + shortname: avg_licd + longname: Time-mean lake ice total depth + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235310 + shortname: avg_dndzn + longname: Time-mean minimum vertical gradient of refractivity inside trapping layer + units: m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235311 + shortname: avg_dndza + longname: Time-mean mean vertical gradient of refractivity inside trapping layer + units: m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235312 + shortname: avg_dctb + longname: Time-mean duct base height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235313 + shortname: avg_tplb + longname: Time-mean trapping layer base height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235314 + shortname: avg_tplt + longname: Time-mean trapping layer top height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235315 + shortname: avg_degm10l + longname: Time-mean geometric height of -10 degrees C atmospheric isothermal level + above ground + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235316 + shortname: avg_cbh + longname: Time-mean cloud base height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235317 + shortname: avg_deg0l + longname: Time-mean geometric height of 0 degrees C atmospheric isothermal level + above ground + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235318 + shortname: avg_i10fg + longname: Time-mean 10 metre wind gust + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235319 + shortname: avg_rhw + longname: Time-mean relative humidity with respect to water + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235320 + shortname: avg_2rhw + longname: Time-mean 2 metre relative humidity with respect to water + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235321 + shortname: avg_capes + longname: Time-mean convective available potential energy shear + units: m**2 s**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235322 + shortname: avg_trpp + longname: Time-mean tropopause pressure + units: Pa + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235323 + shortname: avg_hcct + longname: Time-mean height of convective cloud top + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235324 + shortname: avg_hwbt0 + longname: Time-mean height of zero-degree wet-bulb temperature + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235325 + shortname: avg_hwbt1 + longname: Time-mean height of one-degree wet-bulb temperature + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235326 + shortname: avg_litoti + longname: Time-mean total lightning flash density + units: km**-2 day**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235327 + shortname: avg_tcslw + longname: Time-mean total column supercooled liquid water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235328 + shortname: avg_u10n + longname: Time-mean 10 metre U-component of neutral wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235329 + shortname: avg_v10n + longname: Time-mean 10 metre V-component of neutral wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235330 + shortname: avg_crr + longname: Time-mean convective rain rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235331 + shortname: avg_lsrr + longname: Time-mean large scale rain rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235332 + shortname: avg_mlcape50 + longname: Time-mean mixed-layer CAPE in the lowest 50 hPa + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235333 + shortname: avg_mlcin50 + longname: Time-mean mixed-layer CIN in the lowest 50 hPa + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235334 + shortname: avg_mlcape100 + longname: Time-mean mixed-layer CAPE in the lowest 100 hPa + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235335 + shortname: avg_mlcin100 + longname: Time-mean mixed-layer CIN in the lowest 100 hPa + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235336 + shortname: avg_mudlp + longname: Time-mean departure level of the most unstable parcel expressed as Pressure + units: Pa + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235337 + shortname: avg_ceil + longname: Time-mean ceiling + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235338 + shortname: avg_tcsqw + longname: Time-mean total column integrated saturation specific humidity with respect + to water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235339 + shortname: avg_sdirnswrf + longname: Time-mean surface direct normal short-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235340 + shortname: avg_cossza + longname: Time-mean cosine of solar zenith angle + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235341 + shortname: avg_fprate + longname: Time-mean freezing rain precipitation rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235342 + shortname: avg_vige + longname: Time-mean total column vertically-integrated eastward geopotential flux + units: W m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235343 + shortname: avg_vign + longname: Time-mean total column vertically-integrated northward geopotential flux + units: W m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235344 + shortname: avg_viwgd + longname: Time-mean total column vertically-integrated divergence of water geopotential + flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235345 + shortname: avg_vigd + longname: Time-mean total column vertically-integrated divergence of geopotential + flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235346 + shortname: avg_viee + longname: Time-mean total column vertically-integrated eastward enthalpy flux + units: W m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235347 + shortname: avg_vien + longname: Time-mean total column vertically-integrated northward enthalpy flux + units: W m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235348 + shortname: avg_vikee + longname: Time-mean total column vertically-integrated eastward kinetic energy flux + units: W m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235349 + shortname: avg_viken + longname: Time-mean total column vertically-integrated northward kinetic energy + flux + units: W m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235350 + shortname: avg_vitee + longname: Time-mean total column vertically-integrated eastward total energy flux + units: W m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235351 + shortname: avg_viten + longname: Time-mean total column vertically-integrated northward total energy flux + units: W m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235352 + shortname: avg_vied + longname: Time-mean total column vertically-integrated divergence of enthalpy flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235353 + shortname: avg_viked + longname: Time-mean total column vertically-integrated divergence of kinetic energy + flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235354 + shortname: avg_vited + longname: Time-mean total column vertically-integrated divergence of total energy + flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235355 + shortname: avg_viwed + longname: Time-mean total column vertically-integrated divergence of water enthalpy + flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235356 + shortname: avg_vimad + longname: Time-mean total column vertically-integrated divergence of mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235357 + shortname: avg_vimae + longname: Time-mean total column vertically-integrated eastward mass flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235358 + shortname: avg_viman + longname: Time-mean total column vertically-integrated northward mass flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235359 + shortname: avg_viwvd + longname: Time-mean total column vertically-integrated divergence of water vapour + flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235360 + shortname: avg_viclwd + longname: Time-mean total column vertically-integrated divergence of cloud liquid + water flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235361 + shortname: avg_viciwd + longname: Time-mean total column vertically-integrated divergence of cloud ice water + flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235362 + shortname: avg_vird + longname: Time-mean total column vertically-integrated divergence of rain flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235363 + shortname: avg_visd + longname: Time-mean total column vertically-integrated divergence of snow flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235364 + shortname: avg_viwve + longname: Time-mean total column vertically-integrated eastward water vapour flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235365 + shortname: avg_viwvn + longname: Time-mean total column vertically-integrated northward water vapour flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235366 + shortname: avg_viclwe + longname: Time-mean total column vertically-integrated eastward cloud liquid water + flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235367 + shortname: avg_viclwn + longname: Time-mean total column vertically-integrated northward cloud liquid water + flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235368 + shortname: avg_viciwe + longname: Time-mean total column vertically-integrated eastward cloud ice water + flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235369 + shortname: avg_viciwn + longname: Time-mean total column vertically-integrated northward cloud ice water + flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235370 + shortname: avg_vire + longname: Time-mean total column vertically-integrated eastward rain flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235371 + shortname: avg_virn + longname: Time-mean total column vertically-integrated northward rain flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235372 + shortname: avg_vise + longname: Time-mean total column vertically-integrated eastward snow flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235373 + shortname: avg_visn + longname: Time-mean total column vertically-integrated northward snow flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235374 + shortname: avg_vioze + longname: Time-mean total column vertically-integrated eastward ozone flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235375 + shortname: avg_viozn + longname: Time-mean total column vertically-integrated northward ozone flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235376 + shortname: avg_viozd + longname: Time-mean total column vertically-integrated divergence of ozone flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235377 + shortname: avg_vions + longname: Time-mean total column vertically-integrated net source of ozone + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235378 + shortname: avg_ietssofd + longname: Time-mean eastward turbulent surface stress due to orographic form drag + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235379 + shortname: avg_intssofd + longname: Time-mean northward turbulent surface stress due to orographic form drag + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235380 + shortname: avg_ietsssr + longname: Time-mean eastward turbulent surface stress due to surface roughness + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235381 + shortname: avg_intsssr + longname: Time-mean northward turbulent surface stress due to surface roughness + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235382 + shortname: avg_visp + longname: Time-mean visibility through precipitation + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235383 + shortname: avg_licgi + longname: Time-mean cloud-to-ground lightning flash density + units: km**-2 day**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235386 + shortname: avg_lshnf + longname: Time-mean land surface heat net flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235387 + shortname: avg_sdirnswrfcs + longname: Time-mean surface direct normal short-wave radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235388 + shortname: avg_10cogu + longname: Time-mean 10 metre convective gust + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235389 + shortname: avg_10tugu + longname: Time-mean 10 metre turbulent gust + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235390 + shortname: avg_h0thg + longname: Time-mean geometric height of 0 degrees C theta level above ground + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235391 + shortname: avg_h1thg + longname: Time-mean geometric height of 1 degree C theta level above ground + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235392 + shortname: avg_h1p5thg + longname: Time-mean geometric height of 1.5 degrees C theta level above ground + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235393 + shortname: avg_veg + longname: Time-mean vegetation + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235394 + shortname: avg_lai + longname: Time-mean leaf area index + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235395 + shortname: avg_srhe + longname: Time-mean surface roughness for heat + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235396 + shortname: avg_rol + longname: Time-mean Reciprocal Obukhov length + units: m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235397 + shortname: avg_deg3l + longname: Time-mean geometric height of 3 degrees C atmospheric isothermal level + above ground + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235398 + shortname: avg_rivsto + longname: Time-mean river storage of water + units: m**3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235399 + shortname: avg_fldsto + longname: Time-mean floodplain storage of water + units: m**3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235400 + shortname: avg_rivdph + longname: Time-mean river depth + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235401 + shortname: avg_rivout + longname: Time-mean river outflow of water + units: m**3 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235402 + shortname: avg_fldout + longname: Time-mean floodplain outflow of water + units: m**3 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235403 + shortname: avg_pthflw + longname: Time-mean floodpath outflow of water + units: m**3 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235404 + shortname: avg_sdifswrfcs + longname: Time-mean surface diffuse short-wave radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235405 + shortname: avg_vswrz + longname: Time-mean volumetric soil moisture (root zone) + units: m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235406 + shortname: avg_lwcs + longname: Time-mean liquid water content in snow pack + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235407 + shortname: avg_mucin + longname: Time-mean most-unstable CIN + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235408 + shortname: avg_crwc_conv + longname: Time-mean specific rain water content (convective) + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235409 + shortname: avg_cswc_conv + longname: Time-mean specific snow water content (convective) + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235410 + shortname: avg_mld + longname: Time-mean mixed layer depth + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235411 + shortname: avg_cur + longname: Time-mean urban cover + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235412 + shortname: avg_wse + longname: Time-mean water surface elevation + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235413 + shortname: avg_grfr + longname: Time-mean groundwater return flow rate + units: m**3 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235414 + shortname: avg_rivfldsto + longname: Time-mean river and floodplain storage + units: m**3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 235415 + shortname: avg_darv + longname: Time-mean depth-averaged river velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 236386 + shortname: acc_lshnf + longname: Time-integrated land surface heat net flux + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 236387 + shortname: acc_sdirnswrfcs + longname: Time-integrated surface direct normal short-wave radiation flux, clear + sky + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237001 + shortname: max_ttswr + longname: Time-maximum temperature tendency due to short-wave radiation + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237002 + shortname: max_ttlwr + longname: Time-maximum temperature tendency due to long-wave radiation + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237003 + shortname: max_ttswrcs + longname: Time-maximum temperature tendency due to short wave radiation, clear sky + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237004 + shortname: max_ttlwrcs + longname: Time-maximum temperature tendency due to long-wave radiation, clear sky + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237005 + shortname: max_ttpm + longname: Time-maximum temperature tendency due to parametrisations + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237006 + shortname: max_qtpm + longname: Time-maximum specific humidity tendency due to parametrisations + units: kg kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237007 + shortname: max_utpm + longname: Time-maximum eastward wind tendency due to parametrisations + units: m s**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237008 + shortname: max_vtpm + longname: Time-maximum northward wind tendency due to parametrisations + units: m s**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237009 + shortname: max_umf + longname: Time-maximum updraught mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237010 + shortname: max_dmf + longname: Time-maximum downdraught mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237011 + shortname: max_udr + longname: Time-maximum updraught detrainment rate + units: kg m**-3 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237012 + shortname: max_ddr + longname: Time-maximum downdraught detrainment rate + units: kg m**-3 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237013 + shortname: max_tpf + longname: Time-maximum total precipitation flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237014 + shortname: max_tdch + longname: Time-maximum turbulent diffusion coefficient for heat + units: m**2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237022 + shortname: max_parcsf + longname: Time-maximum surface photosynthetically active radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237023 + shortname: max_esrwe + longname: Time-maximum snow evaporation rate water equivalent + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237024 + shortname: max_smr + longname: Time-maximum snow melt rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237025 + shortname: max_imagss + longname: Time-maximum magnitude of turbulent surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237026 + shortname: max_ilspf + longname: Time-maximum large-scale precipitation fraction + units: Proportion + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237027 + shortname: max_sduvrf + longname: Time-maximum surface downward UV radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237028 + shortname: max_sparf + longname: Time-maximum surface photosynthetically active radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237029 + shortname: max_lsprate + longname: Time-maximum large-scale precipitation rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237030 + shortname: max_cpr + longname: Time-maximum convective precipitation rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237031 + shortname: max_tsrwe + longname: Time-maximum total snowfall rate water equivalent + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237032 + shortname: max_ibld + longname: Time-maximum boundary layer dissipation + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237033 + shortname: max_ishf + longname: Time-maximum surface sensible heat flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237034 + shortname: max_slhtf + longname: Time-maximum surface latent heat flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237035 + shortname: max_sdswrf + longname: Time-maximum surface downward short-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237036 + shortname: max_sdlwrf + longname: Time-maximum surface downward long-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237037 + shortname: max_snswrf + longname: Time-maximum surface net short-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237038 + shortname: max_snlwrf + longname: Time-maximum surface net long-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237039 + shortname: max_tnswrf + longname: Time-maximum top net short-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237040 + shortname: max_tnlwrf + longname: Time-maximum top net long-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237041 + shortname: max_iews + longname: Time-maximum eastward turbulent surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237042 + shortname: max_inss + longname: Time-maximum northward turbulent surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237043 + shortname: max_ie + longname: Time-maximum moisture flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237045 + shortname: max_iegwss + longname: Time-maximum eastward gravity wave surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237046 + shortname: max_ingwss + longname: Time-maximum northward gravity wave surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237047 + shortname: max_igwd + longname: Time-maximum gravity wave dissipation + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237048 + shortname: max_rorwe + longname: Time-maximum runoff rate water equivalent (surface plus subsurface) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237049 + shortname: max_tnswrfcs + longname: Time-maximum top net short-wave radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237050 + shortname: max_tnlwrfcs + longname: Time-maximum top net long-wave radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237051 + shortname: max_snswrfcs + longname: Time-maximum surface net short-wave radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237052 + shortname: max_snlwrfcs + longname: Time-maximum surface net long-wave radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237053 + shortname: max_tdswrf + longname: Time mean top downward short-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237054 + shortname: max_vimdf + longname: Time-maximum total column vertically-integrated moisture divergence flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237055 + shortname: max_tprate + longname: Time-maximum total precipitation rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237056 + shortname: max_csfr + longname: Time-maximum convective snowfall rate water equivalent + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237057 + shortname: max_lssfr + longname: Time-maximum large scale snowfall rate water equivalent + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237058 + shortname: max_sdirswrf + longname: Time-maximum surface direct short-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237059 + shortname: max_sdirswrfcs + longname: Time-maximum surface direct short-wave radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237062 + shortname: max_fco2nee + longname: Time-maximum carbon dioxide net ecosystem exchange flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237063 + shortname: max_fco2gpp + longname: Time-maximum carbon dioxide gross primary production flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237064 + shortname: max_fco2rec + longname: Time-maximum carbon dioxide ecosystem respiration flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237068 + shortname: max_sdswrfcs + longname: Time-maximum surface downward short-wave radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237069 + shortname: max_sdlwrfcs + longname: Time-maximum surface downward long-wave radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237070 + shortname: max_pevr + longname: Time-maximum potential evaporation rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237077 + shortname: max_vsw + longname: Time-maximum volumetric soil moisture + units: m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237078 + shortname: max_sd + longname: Time-maximum snow depth water equivalent + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237079 + shortname: max_skt + longname: Time-maximum skin temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237080 + shortname: max_rsn + longname: Time-maximum snow density + units: kg m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237083 + shortname: max_ci + longname: Time-maximum sea ice area fraction + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237084 + shortname: max_sst + longname: Time-maximum sea surface temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237085 + shortname: max_lai_lv + longname: Time-maximum leaf area index, low vegetation + units: m**2 m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237086 + shortname: max_lai_hv + longname: Time-maximum leaf area index, high vegetation + units: m**2 m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237087 + shortname: max_tclw + longname: Time-maximum total column cloud liquid water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237088 + shortname: max_tciw + longname: Time-maximum total column cloud ice water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237089 + shortname: max_2sh + longname: Time-maximum 2 metre specific humidity + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237090 + shortname: max_lmlt + longname: Time-maximum lake mix-layer temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237091 + shortname: max_lmld + longname: Time-maximum lake mix-layer depth + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237092 + shortname: max_2r + longname: Time-maximum 2 metre relative humidity + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237093 + shortname: max_fscov + longname: Time-maximum fraction of snow cover + units: Proportion + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237094 + shortname: max_sot + longname: Time-maximum soil temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237097 + shortname: max_ws + longname: Time-maximum wind speed + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - -50 + - 0 +- id: 237098 + shortname: max_pres + longname: Time-maximum pressure + units: Pa + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237099 + shortname: max_chnk + longname: Time-maximum charnock + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237100 + shortname: max_pv + longname: Time-maximum potential vorticity + units: K m**2 kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237101 + shortname: max_crwc + longname: Time-maximum specific rain water content + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237102 + shortname: max_cswc + longname: Time-maximum specific snow water content + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237103 + shortname: max_etadot + longname: Time-maximum eta-coordinate vertical velocity + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237105 + shortname: max_vis + longname: Time-maximum visibility + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237106 + shortname: max_wdir + longname: Time-maximum wind direction + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237107 + shortname: max_tcsw + longname: Time-maximum total column snow water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237108 + shortname: max_lcc + longname: Time-maximum low cloud cover + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237109 + shortname: max_mcc + longname: Time-maximum medium cloud cover + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237110 + shortname: max_hcc + longname: Time-maximum high cloud cover + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237111 + shortname: max_tcrw + longname: Time-maximum total column rain water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237117 + shortname: max_mucape + longname: Time-maximum most-unstable CAPE + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237120 + shortname: max_tcolg + longname: Time-maximum total column vertically-integrated graupel (snow pellets) + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237129 + shortname: max_z + longname: Time-maximum geopotential + units: m**2 s**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237130 + shortname: max_t + longname: Time-maximum temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237131 + shortname: max_u + longname: Time-maximum u component of wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237132 + shortname: max_v + longname: Time-maximum v component of wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237133 + shortname: max_q + longname: Time-maximum specific humidity + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237134 + shortname: max_sp + longname: Time-maximum surface pressure + units: Pa + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237135 + shortname: max_w + longname: Time-maximum vertical velocity + units: Pa s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237136 + shortname: max_tcw + longname: Time-maximum total column water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237137 + shortname: max_tcwv + longname: Time-maximum total column vertically-integrated water vapour + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237138 + shortname: max_vo + longname: Time-maximum vorticity (relative) + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237151 + shortname: max_msl + longname: Time-maximum mean sea level pressure + units: Pa + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237152 + shortname: max_lnsp + longname: Time-maximum logarithm of surface pressure + units: Numeric + description: null + access_ids: [] + origin_ids: + - -60 + - -50 + - 98 +- id: 237155 + shortname: max_d + longname: Time-maximum divergence + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237157 + shortname: max_r + longname: Time-maximum relative humidity + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237159 + shortname: max_blh + longname: Time-maximum boundary layer height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237165 + shortname: max_10u + longname: Time-maximum 10 metre U wind component + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237166 + shortname: max_10v + longname: Time-maximum 10 metre V wind component + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237167 + shortname: max_2t + longname: Time-maximum 2 metre temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237168 + shortname: max_2d + longname: Time-maximum 2 metre dewpoint temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237189 + shortname: max_suns + longname: Time-maximum sunshine + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237203 + shortname: max_o3 + longname: Time-maximum ozone mass mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237207 + shortname: max_10si + longname: Time-maximum 10 metre wind speed + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237238 + shortname: max_tsn + longname: Time-maximum temperature of snow layer + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237244 + shortname: max_fsr + longname: Time-maximum forecast surface roughness + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237245 + shortname: max_flsr + longname: Time-maximum forecast logarithm of surface roughness for heat + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237246 + shortname: max_clwc + longname: Time-maximum specific cloud liquid water content + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237247 + shortname: max_ciwc + longname: Time-maximum specific cloud ice water content + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237248 + shortname: max_cc + longname: Time-maximum fraction of cloud cover + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237257 + shortname: max_kx + longname: Time-maximum k index + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237258 + shortname: max_totalx + longname: Time-maximum total totals index + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237261 + shortname: max_10wdir + longname: Time-maximum 10 metre wind direction + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237262 + shortname: max_cat + longname: Time-maximum clear air turbulence (CAT) + units: m**2/3 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237263 + shortname: max_al + longname: Time-maximum forecast albedo + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237269 + shortname: max_pt + longname: Time-maximum potential temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237281 + shortname: max_aluvp_p + longname: Time-maximum UV visible albedo for direct radiation (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237282 + shortname: max_aluvd_p + longname: Time-maximum UV visible albedo for diffuse radiation (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237283 + shortname: max_alnip_p + longname: Time-maximum near IR albedo for direct radiation (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237284 + shortname: max_alnid_p + longname: Time-maximum near IR albedo for diffuse radiation (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237285 + shortname: max_asn + longname: Time-maximum snow albedo + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237286 + shortname: max_mont + longname: Time-maximum montgomery potential + units: m**2 s**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237287 + shortname: max_cape + longname: Time-maximum convective available potential energy + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237288 + shortname: max_tcc + longname: Time-maximum total cloud cover + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237289 + shortname: max_srcon + longname: Time-maximum skin reservoir content + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237290 + shortname: max_tcioz + longname: Time-maximum total column integrated ozone + units: DU + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237291 + shortname: max_vike + longname: Time-maximum total column vertically-integrated kinetic energy + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237292 + shortname: max_vithe + longname: Time-maximum total column vertically-integrated enthalpy + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237293 + shortname: max_vipie + longname: Time-maximum total column vertically-integrated potential + internal energy + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237294 + shortname: max_vipile + longname: Time-maximum total column vertically-integrated potential+internal+latent + energy + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237295 + shortname: max_vitoe + longname: Time-maximum total column vertically-integrated total energy + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237296 + shortname: max_viwe + longname: Time-maximum total column vertically-integrated water enthalpy + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237297 + shortname: max_aluvpi_p + longname: Time-maximum UV visible albedo for direct radiation, isotropic component + (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237298 + shortname: max_aluvpv_p + longname: Time-maximum UV visible albedo for direct radiation, volumetric component + (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237299 + shortname: max_aluvpg_p + longname: Time-maximum UV visible albedo for direct radiation, geometric component + (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237300 + shortname: max_alnipi_p + longname: Time-maximum near IR albedo for direct radiation, isotropic component + (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237301 + shortname: max_alnipv_p + longname: Time-maximum near IR albedo for direct radiation, volumetric component + (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237302 + shortname: max_alnipg_p + longname: Time-maximum near IR albedo for direct radiation, geometric component + (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237303 + shortname: max_cin + longname: Time-maximum convective inhibition + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237304 + shortname: max_zust + longname: Time-maximum friction velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237305 + shortname: max_lblt + longname: Time-maximum lake bottom temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237306 + shortname: max_ltlt + longname: Time-maximum lake total layer temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237307 + shortname: max_lshf + longname: Time-maximum lake shape factor + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237308 + shortname: max_lict + longname: Time-maximum lake ice surface temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237309 + shortname: max_licd + longname: Time-maximum lake ice total depth + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237310 + shortname: max_dndzn + longname: Time-maximum minimum vertical gradient of refractivity inside trapping + layer + units: m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237311 + shortname: max_dndza + longname: Time-maximum mean vertical gradient of refractivity inside trapping layer + units: m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237312 + shortname: max_dctb + longname: Time-maximum duct base height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237313 + shortname: max_tplb + longname: Time-maximum trapping layer base height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237314 + shortname: max_tplt + longname: Time-maximum trapping layer top height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237315 + shortname: max_degm10l + longname: Time-maximum geometric height of -10 degrees C atmospheric isothermal + level above ground + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237316 + shortname: max_cbh + longname: Time-maximum cloud base height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237317 + shortname: max_deg0l + longname: Time-maximum geometric height of 0 degrees C atmospheric isothermal level + above ground + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237318 + shortname: max_i10fg + longname: Time-maximum 10 metre wind gust + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237319 + shortname: max_rhw + longname: Time-maximum relative humidity with respect to water + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237320 + shortname: max_2rhw + longname: Time-maximum 2 metre relative humidity with respect to water + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237321 + shortname: max_capes + longname: Time-maximum convective available potential energy shear + units: m**2 s**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237322 + shortname: max_trpp + longname: Time-maximum tropopause pressure + units: Pa + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237323 + shortname: max_hcct + longname: Time-maximum height of convective cloud top + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237324 + shortname: max_hwbt0 + longname: Time-maximum height of zero-degree wet-bulb temperature + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237325 + shortname: max_hwbt1 + longname: Time-maximum height of one-degree wet-bulb temperature + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237326 + shortname: max_litoti + longname: Time-maximum total lightning flash density + units: km**-2 day**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237327 + shortname: max_tcslw + longname: Time-maximum total column supercooled liquid water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237328 + shortname: max_u10n + longname: Time-maximum 10 metre U-component of neutral wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237329 + shortname: max_v10n + longname: Time-maximum 10 metre V-component of neutral wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237330 + shortname: max_crr + longname: Time-maximum convective rain rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237331 + shortname: max_lsrr + longname: Time-maximum large scale rain rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237332 + shortname: max_mlcape50 + longname: Time-maximum mixed-layer CAPE in the lowest 50 hPa + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237333 + shortname: max_mlcin50 + longname: Time-maximum mixed-layer CIN in the lowest 50 hPa + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237334 + shortname: max_mlcape100 + longname: Time-maximum mixed-layer CAPE in the lowest 100 hPa + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237335 + shortname: max_mlcin100 + longname: Time-maximum mixed-layer CIN in the lowest 100 hPa + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237336 + shortname: max_mudlp + longname: Time-maximum departure level of the most unstable parcel expressed as + Pressure + units: Pa + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237337 + shortname: max_ceil + longname: Time-maximum ceiling + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237338 + shortname: max_tcsqw + longname: Time-maximum total column integrated saturation specific humidity with + respect to water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237339 + shortname: max_sdirnswrf + longname: Time-maximum surface direct normal short-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237340 + shortname: max_cossza + longname: Time-maximum cosine of solar zenith angle + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237341 + shortname: max_fprate + longname: Time-maximum freezing rain precipitation rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237342 + shortname: max_vige + longname: Time-maximum total column vertically-integrated eastward geopotential + flux + units: W m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237343 + shortname: max_vign + longname: Time-maximum total column vertically-integrated northward geopotential + flux + units: W m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237344 + shortname: max_viwgd + longname: Time-maximum total column vertically-integrated divergence of water geopotential + flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237345 + shortname: max_vigd + longname: Time-maximum total column vertically-integrated divergence of geopotential + flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237346 + shortname: max_viee + longname: Time-maximum total column vertically-integrated eastward enthalpy flux + units: W m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237347 + shortname: max_vien + longname: Time-maximum total column vertically-integrated northward enthalpy flux + units: W m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237348 + shortname: max_vikee + longname: Time-maximum total column vertically-integrated eastward kinetic energy + flux + units: W m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237349 + shortname: max_viken + longname: Time-maximum total column vertically-integrated northward kinetic energy + flux + units: W m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237350 + shortname: max_vitee + longname: Time-maximum total column vertically-integrated eastward total energy + flux + units: W m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237351 + shortname: max_viten + longname: Time-maximum total column vertically-integrated northward total energy + flux + units: W m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237352 + shortname: max_vied + longname: Time-maximum total column vertically-integrated divergence of enthalpy + flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237353 + shortname: max_viked + longname: Time-maximum total column vertically-integrated divergence of kinetic + energy flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237354 + shortname: max_vited + longname: Time-maximum total column vertically-integrated divergence of total energy + flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237355 + shortname: max_viwed + longname: Time-maximum total column vertically-integrated divergence of water enthalpy + flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237356 + shortname: max_vimad + longname: Time-maximum total column vertically-integrated divergence of mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237357 + shortname: max_vimae + longname: Time-maximum total column vertically-integrated eastward mass flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237358 + shortname: max_viman + longname: Time-maximum total column vertically-integrated northward mass flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237359 + shortname: max_viwvd + longname: Time-maximum total column vertically-integrated divergence of water vapour + flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237360 + shortname: max_viclwd + longname: Time-maximum total column vertically-integrated divergence of cloud liquid + water flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237361 + shortname: max_viciwd + longname: Time-maximum total column vertically-integrated divergence of cloud ice + water flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237362 + shortname: max_vird + longname: Time-maximum total column vertically-integrated divergence of rain flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237363 + shortname: max_visd + longname: Time-maximum total column vertically-integrated divergence of snow flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237364 + shortname: max_viwve + longname: Time-maximum total column vertically-integrated eastward water vapour + flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237365 + shortname: max_viwvn + longname: Time-maximum total column vertically-integrated northward water vapour + flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237366 + shortname: max_viclwe + longname: Time-maximum total column vertically-integrated eastward cloud liquid + water flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237367 + shortname: max_viclwn + longname: Time-maximum total column vertically-integrated northward cloud liquid + water flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237368 + shortname: max_viciwe + longname: Time-maximum total column vertically-integrated eastward cloud ice water + flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237369 + shortname: max_viciwn + longname: Time-maximum total column vertically-integrated northward cloud ice water + flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237370 + shortname: max_vire + longname: Time-maximum total column vertically-integrated eastward rain flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237371 + shortname: max_virn + longname: Time-maximum total column vertically-integrated northward rain flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237372 + shortname: max_vise + longname: Time-maximum total column vertically-integrated eastward snow flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237373 + shortname: max_visn + longname: Time-maximum total column vertically-integrated northward snow flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237374 + shortname: max_vioze + longname: Time-maximum total column vertically-integrated eastward ozone flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237375 + shortname: max_viozn + longname: Time-maximum total column vertically-integrated northward ozone flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237376 + shortname: max_viozd + longname: Time-maximum total column vertically-integrated divergence of ozone flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237377 + shortname: max_vions + longname: Time-maximum total column vertically-integrated net source of ozone + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237378 + shortname: max_ietssofd + longname: Time-maximum eastward turbulent surface stress due to orographic form + drag + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237379 + shortname: max_intssofd + longname: Time-maximum northward turbulent surface stress due to orographic form + drag + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237380 + shortname: max_ietsssr + longname: Time-maximum eastward turbulent surface stress due to surface roughness + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237381 + shortname: max_intsssr + longname: Time-maximum northward turbulent surface stress due to surface roughness + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237382 + shortname: max_visp + longname: Time-maximum visibility through precipitation + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237383 + shortname: max_licgi + longname: Time-maximum cloud-to-ground lightning flash density + units: km**-2 day**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237384 + shortname: max_10efg + longname: Time-maximum 10 metre eastward wind gust + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237385 + shortname: max_10nfg + longname: Time-maximum 10 metre northward wind gust + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237386 + shortname: max_lshnf + longname: Time-maximum land surface heat net flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237387 + shortname: max_sdirnswrfcs + longname: Time-maximum surface direct normal short-wave radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237388 + shortname: max_10cogu + longname: Time-maximum 10 metre convective gust + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237389 + shortname: max_10tugu + longname: Time-maximum 10 metre turbulent gust + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237390 + shortname: max_h0thg + longname: Time-maximum geometric height of 0 degrees C theta level above ground + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237391 + shortname: max_h1thg + longname: Time-maximum geometric height of 1 degree C theta level above ground + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237392 + shortname: max_h1p5thg + longname: Time-maximum geometric height of 1.5 degrees C theta level above ground + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237393 + shortname: max_veg + longname: Time-maximum vegetation + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237394 + shortname: max_lai + longname: Time-maximum leaf area index + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237395 + shortname: max_srhe + longname: Time-maximum surface roughness for heat + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237396 + shortname: max_rol + longname: Time-maximum Reciprocal Obukhov length + units: m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237397 + shortname: max_deg3l + longname: Time-maximum geometric height of 3 degrees C atmospheric isothermal level + above ground + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237404 + shortname: max_sdifswrfcs + longname: Time-maximum surface diffuse short-wave radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237405 + shortname: max_vswrz + longname: Time-maximum volumetric soil moisture (root zone) + units: m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237406 + shortname: max_lwcs + longname: Time-maximum liquid water content in snow pack + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237407 + shortname: max_mucin + longname: Time-maximum most-unstable CIN + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237408 + shortname: max_crwc_conv + longname: Time-maximum specific rain water content (convective) + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237409 + shortname: max_cswc_conv + longname: Time-maximum specific snow water content (convective) + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237410 + shortname: max_mld + longname: Time-maximum mixed layer depth + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 237411 + shortname: max_cur + longname: Time-maximum urban cover + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238001 + shortname: min_ttswr + longname: Time-minimum temperature tendency due to short-wave radiation + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238002 + shortname: min_ttlwr + longname: Time-minimum temperature tendency due to long-wave radiation + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238003 + shortname: min_ttswrcs + longname: Time-minimum temperature tendency due to short wave radiation, clear sky + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238004 + shortname: min_ttlwrcs + longname: Time-minimum temperature tendency due to long-wave radiation, clear sky + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238005 + shortname: min_ttpm + longname: Time-minimum temperature tendency due to parametrisations + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238006 + shortname: min_qtpm + longname: Time-minimum specific humidity tendency due to parametrisations + units: kg kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238007 + shortname: min_utpm + longname: Time-minimum eastward wind tendency due to parametrisations + units: m s**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238008 + shortname: min_vtpm + longname: Time-minimum northward wind tendency due to parametrisations + units: m s**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238009 + shortname: min_umf + longname: Time-minimum updraught mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238010 + shortname: min_dmf + longname: Time-minimum downdraught mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238011 + shortname: min_udr + longname: Time-minimum updraught detrainment rate + units: kg m**-3 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238012 + shortname: min_ddr + longname: Time-minimum downdraught detrainment rate + units: kg m**-3 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238013 + shortname: min_tpf + longname: Time-minimum total precipitation flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238014 + shortname: min_tdch + longname: Time-minimum turbulent diffusion coefficient for heat + units: m**2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238022 + shortname: min_parcsf + longname: Time-minimum surface photosynthetically active radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238023 + shortname: min_esrwe + longname: Time-minimum snow evaporation rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238024 + shortname: min_smr + longname: Time-minimum snowmelt rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238025 + shortname: min_imagss + longname: Time-minimum magnitude of turbulent surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238026 + shortname: min_ilspf + longname: Time-minimum large-scale precipitation fraction + units: Proportion + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238027 + shortname: min_sduvrf + longname: Time-minimum surface downward UV radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238028 + shortname: min_sparf + longname: Time-minimum surface photosynthetically active radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238029 + shortname: min_lsprate + longname: Time-minimum large-scale precipitation rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238030 + shortname: min_cpr + longname: Time-minimum convective precipitation rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238031 + shortname: min_tsrwe + longname: Time-minimum snowfall rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238032 + shortname: min_ibld + longname: Time-minimum boundary layer dissipation + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238033 + shortname: min_ishf + longname: Time-minimum surface sensible heat flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238034 + shortname: min_slhtf + longname: Time-minimum surface latent heat flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238035 + shortname: min_sdswrf + longname: Time-minimum surface downward short-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238036 + shortname: min_sdlwrf + longname: Time-minimum surface downward long-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238037 + shortname: min_snswrf + longname: Time-minimum surface net short-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238038 + shortname: min_snlwrf + longname: Time-minimum surface net long-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238039 + shortname: min_tnswrf + longname: Time-minimum top net short-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238040 + shortname: min_tnlwrf + longname: Time-minimum top net long-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238041 + shortname: min_iews + longname: Time-minimum eastward turbulent surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238042 + shortname: min_inss + longname: Time-minimum northward turbulent surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238043 + shortname: min_ie + longname: Time-minimum evaporation rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238045 + shortname: min_iegwss + longname: Time-minimum eastward gravity wave surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238046 + shortname: min_ingwss + longname: Time-minimum northward gravity wave surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238047 + shortname: min_igwd + longname: Time-minimum gravity wave dissipation + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238048 + shortname: min_rorwe + longname: Time-minimum runoff rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238049 + shortname: min_tnswrfcs + longname: Time-minimum top net short-wave radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238050 + shortname: min_tnlwrfcs + longname: Time-minimum top net long-wave radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238051 + shortname: min_snswrfcs + longname: Time-minimum surface net short-wave radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238052 + shortname: min_snlwrfcs + longname: Time-minimum surface net long-wave radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238053 + shortname: min_tdswrf + longname: Time-minimum top downward short-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238054 + shortname: min_vimdf + longname: Time-minimum vertically integrated moisture divergence + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238055 + shortname: min_tprate + longname: Time-minimum total precipitation rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238056 + shortname: min_csfr + longname: Time-minimum convective snowfall rate water equivalent + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238057 + shortname: min_lssfr + longname: Time-minimum large scale snowfall rate water equivalent + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238058 + shortname: min_sdirswrf + longname: Time-minimum surface direct short-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238059 + shortname: min_sdirswrfcs + longname: Time-minimum surface direct short-wave radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238062 + shortname: min_fco2nee + longname: Time-minimum carbon dioxide net ecosystem exchange flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238063 + shortname: min_fco2gpp + longname: Time-minimum carbon dioxide gross primary production flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238064 + shortname: min_fco2rec + longname: Time-minimum carbon dioxide ecosystem respiration flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238068 + shortname: min_sdswrfcs + longname: Time-minimum surface downward short-wave radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238069 + shortname: min_sdlwrfcs + longname: Time-minimum surface downward long-wave radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238070 + shortname: min_pevr + longname: Time-minimum potential evaporation rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238077 + shortname: min_vsw + longname: Time-minimum volumetric soil moisture + units: m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238078 + shortname: min_sd + longname: Time-minimum snow depth water equivalent + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238079 + shortname: min_skt + longname: Time-minimum skin temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238080 + shortname: min_rsn + longname: Time-minimum snow density + units: kg m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238083 + shortname: min_ci + longname: Time-minimum sea ice area fraction + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238084 + shortname: min_sst + longname: Time-minimum sea surface temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238085 + shortname: min_lai_lv + longname: Time-minimum leaf area index, low vegetation + units: m**2 m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238086 + shortname: min_lai_hv + longname: Time-minimum leaf area index, high vegetation + units: m**2 m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238087 + shortname: min_tclw + longname: Time-minimum total column cloud liquid water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238088 + shortname: min_tciw + longname: Time-minimum total column cloud ice water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238089 + shortname: min_2sh + longname: Time-minimum 2 metre specific humidity + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238090 + shortname: min_lmlt + longname: Time-minimum lake mix-layer temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238091 + shortname: min_lmld + longname: Time-minimum lake mix-layer depth + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238092 + shortname: min_2r + longname: Time-minimum 2 metre relative humidity + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238093 + shortname: min_fscov + longname: Time-minimum fraction of snow cover + units: Proportion + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238094 + shortname: min_sot + longname: Time-minimum soil temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238097 + shortname: min_ws + longname: Time-minimum wind speed + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - -50 + - 0 +- id: 238098 + shortname: min_pres + longname: Time-minimum pressure + units: Pa + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238099 + shortname: min_chnk + longname: Time-minimum charnock + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238100 + shortname: min_pv + longname: Time-minimum potential vorticity + units: K m**2 kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238101 + shortname: min_crwc + longname: Time-minimum specific rain water content + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238102 + shortname: min_cswc + longname: Time-minimum specific snow water content + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238103 + shortname: min_etadot + longname: Time-minimum eta-coordinate vertical velocity + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238105 + shortname: min_vis + longname: Time-minimum visibility + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238106 + shortname: min_wdir + longname: Time-minimum wind direction + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238107 + shortname: min_tcsw + longname: Time-minimum total column snow water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238108 + shortname: min_lcc + longname: Time-minimum low cloud cover + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238109 + shortname: min_mcc + longname: Time-minimum medium cloud cover + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238110 + shortname: min_hcc + longname: Time-minimum high cloud cover + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238111 + shortname: min_tcrw + longname: Time-minimum total column rain water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238117 + shortname: min_mucape + longname: Time-minimum most-unstable CAPE + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238120 + shortname: min_tcolg + longname: Time-minimum total column vertically-integrated graupel (snow pellets) + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238129 + shortname: min_z + longname: Time-minimum geopotential + units: m**2 s**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238130 + shortname: min_t + longname: Time-minimum temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238131 + shortname: min_u + longname: Time-minimum u component of wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238132 + shortname: min_v + longname: Time-minimum v component of wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238133 + shortname: min_q + longname: Time-minimum specific humidity + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238134 + shortname: min_sp + longname: Time-minimum surface pressure + units: Pa + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238135 + shortname: min_w + longname: Time-minimum vertical velocity + units: Pa s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238136 + shortname: min_tcw + longname: Time-minimum total column water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238137 + shortname: min_tcwv + longname: Time-minimum total column vertically-integrated water vapour + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238138 + shortname: min_vo + longname: Time-minimum vorticity (relative) + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238151 + shortname: min_msl + longname: Time-minimum mean sea level pressure + units: Pa + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238152 + shortname: min_lnsp + longname: Time-minimum logarithm of surface pressure + units: Numeric + description: null + access_ids: [] + origin_ids: + - -60 + - -50 + - 98 +- id: 238155 + shortname: min_d + longname: Time-minimum divergence + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238157 + shortname: min_r + longname: Time-minimum relative humidity + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238159 + shortname: min_blh + longname: Time-minimum boundary layer height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238165 + shortname: min_10u + longname: Time-minimum 10 metre U wind component + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238166 + shortname: min_10v + longname: Time-minimum 10 metre V wind component + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238167 + shortname: min_2t + longname: Time-minimum 2 metre temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238168 + shortname: min_2d + longname: Time-minimum 2 metre dewpoint temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238189 + shortname: min_suns + longname: Time-minimum sunshine + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238203 + shortname: min_o3 + longname: Time-minimum ozone mass mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238207 + shortname: min_10si + longname: Time-minimum 10 metre wind speed + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238238 + shortname: min_tsn + longname: Time-minimum temperature of snow layer + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238244 + shortname: min_fsr + longname: Time-minimum forecast surface roughness + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238245 + shortname: min_flsr + longname: Time-minimum forecast logarithm of surface roughness for heat + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238246 + shortname: min_clwc + longname: Time-minimum specific cloud liquid water content + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238247 + shortname: min_ciwc + longname: Time-minimum specific cloud ice water content + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238248 + shortname: min_cc + longname: Time-minimum fraction of cloud cover + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238257 + shortname: min_kx + longname: Time-minimum k index + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238258 + shortname: min_totalx + longname: Time-minimum total totals index + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238261 + shortname: min_10wdir + longname: Time-minimum 10 metre wind direction + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238262 + shortname: min_cat + longname: Time-minimum clear air turbulence (CAT) + units: m**2/3 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238263 + shortname: min_al + longname: Time-minimum forecast albedo + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238269 + shortname: min_pt + longname: Time-minimum potential temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238281 + shortname: min_aluvp_p + longname: Time-minimum UV visible albedo for direct radiation (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238282 + shortname: min_aluvd_p + longname: Time-minimum UV visible albedo for diffuse radiation (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238283 + shortname: min_alnip_p + longname: Time-minimum near IR albedo for direct radiation (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238284 + shortname: min_alnid_p + longname: Time-minimum near IR albedo for diffuse radiation (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238285 + shortname: min_asn + longname: Time-minimum snow albedo + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238286 + shortname: min_mont + longname: Time-minimum montgomery potential + units: m**2 s**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238287 + shortname: min_cape + longname: Time-minimum convective available potential energy + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238288 + shortname: min_tcc + longname: Time-minimum total cloud cover + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238289 + shortname: min_srcon + longname: Time-minimum skin reservoir content + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238290 + shortname: min_tcioz + longname: Time-minimum total column integrated ozone + units: DU + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238291 + shortname: min_vike + longname: Time-minimum total column vertically-integrated kinetic energy + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238292 + shortname: min_vithe + longname: Time-minimum total column vertically-integrated enthalpy + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238293 + shortname: min_vipie + longname: Time-minimum total column vertically-integrated potential + internal energy + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238294 + shortname: min_vipile + longname: Time-minimum vertical integral of potential+internal+latent energy + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238295 + shortname: min_vitoe + longname: Time-minimum total column vertically-integrated total energy + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238296 + shortname: min_viwe + longname: Time-minimum total column vertically-integrated water enthalpy + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238297 + shortname: min_aluvpi_p + longname: Time-minimum UV visible albedo for direct radiation, isotropic component + (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238298 + shortname: min_aluvpv_p + longname: Time-minimum UV visible albedo for direct radiation, volumetric component + (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238299 + shortname: min_aluvpg_p + longname: Time-minimum UV visible albedo for direct radiation, geometric component + (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238300 + shortname: min_alnipi_p + longname: Time-minimum near IR albedo for direct radiation, isotropic component + (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238301 + shortname: min_alnipv_p + longname: Time-minimum near IR albedo for direct radiation, volumetric component + (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238302 + shortname: min_alnipg_p + longname: Time-minimum near IR albedo for direct radiation, geometric component + (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238303 + shortname: min_cin + longname: Time-minimum convective inhibition + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238304 + shortname: min_zust + longname: Time-minimum friction velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238305 + shortname: min_lblt + longname: Time-minimum lake bottom temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238306 + shortname: min_ltlt + longname: Time-minimum lake total layer temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238307 + shortname: min_lshf + longname: Time-minimum lake shape factor + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238308 + shortname: min_lict + longname: Time-minimum lake ice surface temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238309 + shortname: min_licd + longname: Time-minimum lake ice total depth + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238310 + shortname: min_dndzn + longname: Time-minimum minimum vertical gradient of refractivity inside trapping + layer + units: m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238311 + shortname: min_dndza + longname: Time-minimum mean vertical gradient of refractivity inside trapping layer + units: m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238312 + shortname: min_dctb + longname: Time-minimum duct base height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238313 + shortname: min_tplb + longname: Time-minimum trapping layer base height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238314 + shortname: min_tplt + longname: Time-minimum trapping layer top height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238315 + shortname: min_degm10l + longname: Time-minimum geometric height of -10 degrees C atmospheric isothermal + level above ground + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238316 + shortname: min_cbh + longname: Time-minimum cloud base height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238317 + shortname: min_deg0l + longname: Time-minimum geometric height of 0 degrees C atmospheric isothermal level + above ground + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238318 + shortname: min_i10fg + longname: Time-minimum 10 metre wind gust + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238319 + shortname: min_rhw + longname: Time-minimum relative humidity with respect to water + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238320 + shortname: min_2rhw + longname: Time-minimum 2 metre relative humidity with respect to water + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238321 + shortname: min_capes + longname: Time-minimum convective available potential energy shear + units: m**2 s**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238322 + shortname: min_trpp + longname: Time-minimum tropopause pressure + units: Pa + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238323 + shortname: min_hcct + longname: Time-minimum height of convective cloud top + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238324 + shortname: min_hwbt0 + longname: Time-minimum height of zero-degree wet-bulb temperature + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238325 + shortname: min_hwbt1 + longname: Time-minimum height of one-degree wet-bulb temperature + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238326 + shortname: min_litoti + longname: Time-minimum total lightning flash density + units: km**-2 day**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238327 + shortname: min_tcslw + longname: Time-minimum total column supercooled liquid water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238328 + shortname: min_u10n + longname: Time-minimum 10 metre U-component of neutral wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238329 + shortname: min_v10n + longname: Time-minimum 10 metre V-component of neutral wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238330 + shortname: min_crr + longname: Time-minimum convective rain rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238331 + shortname: min_lsrr + longname: Time-minimum large scale rain rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238332 + shortname: min_mlcape50 + longname: Time-minimum mixed-layer CAPE in the lowest 50 hPa + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238333 + shortname: min_mlcin50 + longname: Time-minimum mixed-layer CIN in the lowest 50 hPa + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238334 + shortname: min_mlcape100 + longname: Time-minimum mixed-layer CAPE in the lowest 100 hPa + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238335 + shortname: min_mlcin100 + longname: Time-minimum mixed-layer CIN in the lowest 100 hPa + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238336 + shortname: min_mudlp + longname: Time-minimum departure level of the most unstable parcel expressed as + Pressure + units: Pa + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238337 + shortname: min_ceil + longname: Time-minimum ceiling + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238338 + shortname: min_tcsqw + longname: Time-minimum total column integrated saturation specific humidity with + respect to water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238339 + shortname: min_sdirnswrf + longname: Time-minimum direct solar radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238340 + shortname: min_cossza + longname: Time-minimum cosine of solar zenith angle + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238341 + shortname: min_fprate + longname: Time-minimum freezing rain rate water equivalent + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238342 + shortname: min_vige + longname: Time-minimum total column vertically-integrated eastward geopotential + flux + units: W m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238343 + shortname: min_vign + longname: Time-minimum total column vertically-integrated northward geopotential + flux + units: W m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238344 + shortname: min_viwgd + longname: Time-minimum total column vertically-integrated divergence of water geopotential + flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238345 + shortname: min_vigd + longname: Time-minimum total column vertically-integrated divergence of geopotential + flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238346 + shortname: min_viee + longname: Time-minimum total column vertically-integrated eastward enthalpy flux + units: W m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238347 + shortname: min_vien + longname: Time-minimum total column vertically-integrated northward enthalpy flux + units: W m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238348 + shortname: min_vikee + longname: Time-minimum total column vertically-integrated eastward kinetic energy + flux + units: W m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238349 + shortname: min_viken + longname: Time-minimum total column vertically-integrated northward kinetic energy + flux + units: W m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238350 + shortname: min_vitee + longname: Time-minimum total column vertically-integrated eastward total energy + flux + units: W m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238351 + shortname: min_viten + longname: Time-minimum total column vertically-integrated northward total energy + flux + units: W m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238352 + shortname: min_vied + longname: Time-minimum total column vertically-integrated divergence of enthalpy + flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238353 + shortname: min_viked + longname: Time-minimum total column vertically-integrated divergence of kinetic + energy flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238354 + shortname: min_vited + longname: Time-minimum total column vertically-integrated divergence of total energy + flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238355 + shortname: min_viwed + longname: Time-minimum total column vertically-integrated divergence of water enthalpy + flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238356 + shortname: min_vimad + longname: Time-minimum vertically integrated divergence of mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238357 + shortname: min_vimae + longname: Time-minimum vertically integrated eastward mass flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238358 + shortname: min_viman + longname: Time-minimum vertically integrated northward mass flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238359 + shortname: min_viwvd + longname: Time-minimum vertically integrated divergence of water vapour flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238360 + shortname: min_viclwd + longname: Time-minimum vertically integrated divergence of cloud liquid water flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238361 + shortname: min_viciwd + longname: Time-minimum vertically integrated divergence of cloud ice water flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238362 + shortname: min_vird + longname: Time-minimum vertically integrated divergence of rain flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238363 + shortname: min_visd + longname: Time-minimum vertically integrated divergence of snow flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238364 + shortname: min_viwve + longname: Time-minimum vertically integrated eastward water vapour flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238365 + shortname: min_viwvn + longname: Time-minimum vertically integrated northward water vapour flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238366 + shortname: min_viclwe + longname: Time-minimum vertically integrated eastward cloud liquid water flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238367 + shortname: min_viclwn + longname: Time-minimum vertically integrated northward cloud liquid water flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238368 + shortname: min_viciwe + longname: Time-minimum vertically integrated eastward cloud ice water flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238369 + shortname: min_viciwn + longname: Time-minimum vertically integrated northward cloud ice water flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238370 + shortname: min_vire + longname: Time-minimum vertically integrated eastward rain flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238371 + shortname: min_virn + longname: Time-minimum vertically integrated northward rain flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238372 + shortname: min_vise + longname: Time-minimum vertically integrated eastward snow flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238373 + shortname: min_visn + longname: Time-minimum vertically integrated northward snow flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238374 + shortname: min_vioze + longname: Time-minimum vertically integrated eastward ozone flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238375 + shortname: min_viozn + longname: Time-minimum vertically integrated northward ozone flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238376 + shortname: min_viozd + longname: Time-minimum vertically integrated divergence of ozone flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238377 + shortname: min_vions + longname: Time-minimum vertically integrated net source of ozone + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238378 + shortname: min_ietssofd + longname: Time-minimum eastward turbulent surface stress due to orographic form + drag + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238379 + shortname: min_intssofd + longname: Time-minimum northward turbulent surface stress due to orographic form + drag + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238380 + shortname: min_ietsssr + longname: Time-minimum eastward turbulent surface stress due to surface roughness + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238381 + shortname: min_intsssr + longname: Time-minimum northward turbulent surface stress due to surface roughness + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238382 + shortname: min_visp + longname: Time-minimum visibility through precipitation + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238383 + shortname: min_licgi + longname: Time-minimum cloud-to-ground lightning flash density + units: km**-2 day**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238386 + shortname: min_lshnf + longname: Time-minimum land surface heat net flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238387 + shortname: min_sdirnswrfcs + longname: Time-minimum surface direct normal short-wave radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238388 + shortname: min_10cogu + longname: Time-minimum 10 metre convective gust + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238389 + shortname: min_10tugu + longname: Time-minimum 10 metre turbulent gust + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238390 + shortname: min_h0thg + longname: Time-minimum geometric height of 0 degrees C theta level above ground + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238391 + shortname: min_h1thg + longname: Time-minimum geometric height of 1 degree C theta level above ground + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238392 + shortname: min_h1p5thg + longname: Time-minimum geometric height of 1.5 degrees C theta level above ground + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238393 + shortname: min_veg + longname: Time-minimum vegetation + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238394 + shortname: min_lai + longname: Time-minimum leaf area index + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238395 + shortname: min_srhe + longname: Time-minimum surface roughness for heat + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238396 + shortname: min_rol + longname: Time-minimum Reciprocal Obukhov length + units: m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238397 + shortname: min_deg3l + longname: Time-minimum geometric height of 3 degrees C atmospheric isothermal level + above ground + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238404 + shortname: min_sdifswrfcs + longname: Time-minimum surface diffuse short-wave radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238405 + shortname: min_vswrz + longname: Time-minimum volumetric soil moisture (root zone) + units: m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238406 + shortname: min_lwcs + longname: Time-minimum liquid water content in snow pack + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238407 + shortname: min_mucin + longname: Time-minimum most-unstable CIN + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238408 + shortname: min_crwc_conv + longname: Time-minimum specific rain water content (convective) + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238409 + shortname: min_cswc_conv + longname: Time-minimum specific snow water content (convective) + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238410 + shortname: min_mld + longname: Time-minimum mixed layer depth + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 238411 + shortname: min_cur + longname: Time-minimum urban cover + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239001 + shortname: std_ttswr + longname: Time-standard-deviation temperature tendency due to short-wave radiation + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239002 + shortname: std_ttlwr + longname: Time-standard-deviation temperature tendency due to long-wave radiation + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239003 + shortname: std_ttswrcs + longname: Time-standard-deviation temperature tendency due to short wave radiation, + clear sky + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239004 + shortname: std_ttlwrcs + longname: Time-standard-deviation temperature tendency due to long-wave radiation, + clear sky + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239005 + shortname: std_ttpm + longname: Time-standard-deviation temperature tendency due to parametrisations + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239006 + shortname: std_qtpm + longname: Time-standard-deviation specific humidity tendency due to parametrisations + units: kg kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239007 + shortname: std_utpm + longname: Time-standard-deviation eastward wind tendency due to parametrisations + units: m s**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239008 + shortname: std_vtpm + longname: Time-standard-deviation northward wind tendency due to parametrisations + units: m s**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239009 + shortname: std_umf + longname: Time-standard-deviation updraught mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239010 + shortname: std_dmf + longname: Time-standard-deviation downdraught mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239011 + shortname: std_udr + longname: Time-standard-deviation updraught detrainment rate + units: kg m**-3 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239012 + shortname: std_ddr + longname: Time-standard-deviation downdraught detrainment rate + units: kg m**-3 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239013 + shortname: std_tpf + longname: Time-standard-deviation total precipitation flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239014 + shortname: std_tdch + longname: Time-standard-deviation turbulent diffusion coefficient for heat + units: m**2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239022 + shortname: std_parcsf + longname: Time-standard-deviation surface photosynthetically active radiation flux, + clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239023 + shortname: std_esrwe + longname: Time-standard-deviation snow evaporation rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239024 + shortname: std_smr + longname: Time-standard-deviation snowmelt rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239025 + shortname: std_imagss + longname: Time-standard-deviation magnitude of turbulent surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239026 + shortname: std_ilspf + longname: Time-standard-deviation large-scale precipitation fraction + units: Proportion + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239027 + shortname: std_sduvrf + longname: Time-standard-deviation surface downward UV radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239028 + shortname: std_sparf + longname: Time-standard-deviation surface photosynthetically active radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239029 + shortname: std_lsprate + longname: Time-standard-deviation large-scale precipitation rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239030 + shortname: std_cpr + longname: Time-standard-deviation convective precipitation rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239031 + shortname: std_tsrwe + longname: Time-standard-deviation snowfall rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239032 + shortname: std_ibld + longname: Time-standard-deviation boundary layer dissipation + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239033 + shortname: std_ishf + longname: Time-standard-deviation surface sensible heat flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239034 + shortname: std_slhtf + longname: Time-standard-deviation surface latent heat flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239035 + shortname: std_sdswrf + longname: Time-standard-deviation surface downward short-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239036 + shortname: std_sdlwrf + longname: Time-standard-deviation surface downward long-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239037 + shortname: std_snswrf + longname: Time-standard-deviation surface net short-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239038 + shortname: std_snlwrf + longname: Time-standard-deviation surface net long-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239039 + shortname: std_tnswrf + longname: Time-standard-deviation top net short-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239040 + shortname: std_tnlwrf + longname: Time-standard-deviation top net long-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239041 + shortname: std_iews + longname: Time-standard-deviation eastward turbulent surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239042 + shortname: std_inss + longname: Time-standard-deviation northward turbulent surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239043 + shortname: std_ie + longname: Time-standard-deviation evaporation rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239045 + shortname: std_iegwss + longname: Time-standard-deviation eastward gravity wave surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239046 + shortname: std_ingwss + longname: Time-standard-deviation northward gravity wave surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239047 + shortname: std_igwd + longname: Time-standard-deviation gravity wave dissipation + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239048 + shortname: std_rorwe + longname: Time-standard-deviation runoff rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239049 + shortname: std_tnswrfcs + longname: Time-standard-deviation top net short-wave radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239050 + shortname: std_tnlwrfcs + longname: Time-standard-deviation top net long-wave radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239051 + shortname: std_snswrfcs + longname: Time-standard-deviation surface net short-wave radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239052 + shortname: std_snlwrfcs + longname: Time-standard-deviation surface net long-wave radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239053 + shortname: std_tdswrf + longname: Time-standard-deviation top downward short-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239054 + shortname: std_vimdf + longname: Time-standard-deviation vertically integrated moisture divergence + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239055 + shortname: std_tprate + longname: Time-standard-deviation total precipitation rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239056 + shortname: std_csfr + longname: Time-standard-deviation convective snowfall rate water equivalent + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239057 + shortname: std_lssfr + longname: Time-standard-deviation large scale snowfall rate water equivalent + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239058 + shortname: std_sdirswrf + longname: Time-standard-deviation surface direct short-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239059 + shortname: std_sdirswrfcs + longname: Time-standard-deviation surface direct short-wave radiation flux, clear + sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239062 + shortname: std_fco2nee + longname: Time-standard-deviation carbon dioxide net ecosystem exchange flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239063 + shortname: std_fco2gpp + longname: Time-standard-deviation carbon dioxide gross primary production flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239064 + shortname: std_fco2rec + longname: Time-standard-deviation carbon dioxide ecosystem respiration flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239068 + shortname: std_sdswrfcs + longname: Time-standard-deviation surface downward short-wave radiation flux, clear + sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239069 + shortname: std_sdlwrfcs + longname: Time-standard-deviation surface downward long-wave radiation flux, clear + sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239070 + shortname: std_pevr + longname: Time-standard-deviation potential evaporation rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239077 + shortname: std_vsw + longname: Time-standard-deviation volumetric soil moisture + units: m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239078 + shortname: std_sd + longname: Time-standard-deviation snow depth water equivalent + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239079 + shortname: std_skt + longname: Time-standard-deviation skin temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239080 + shortname: std_rsn + longname: Time-standard-deviation snow density + units: kg m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239083 + shortname: std_ci + longname: Time-standard-deviation sea ice area fraction + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239084 + shortname: std_sst + longname: Time-standard-deviation sea surface temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239085 + shortname: std_lai_lv + longname: Time-standard-deviation leaf area index, low vegetation + units: m**2 m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239086 + shortname: std_lai_hv + longname: Time-standard-deviation leaf area index, high vegetation + units: m**2 m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239087 + shortname: std_tclw + longname: Time-standard-deviation total column cloud liquid water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239088 + shortname: std_tciw + longname: Time-standard-deviation total column cloud ice water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239089 + shortname: std_2sh + longname: Time-standard-deviation 2 metre specific humidity + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239090 + shortname: std_lmlt + longname: Time-standard-deviation lake mix-layer temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239091 + shortname: std_lmld + longname: Time-standard-deviation lake mix-layer depth + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239093 + shortname: std_fscov + longname: Time-standard-deviation fraction of snow cover + units: Proportion + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239094 + shortname: std_sot + longname: Time-standard-deviation soil temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239097 + shortname: std_ws + longname: Time-standard-deviation wind speed + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - -50 + - 0 +- id: 239098 + shortname: std_pres + longname: Time-standard-deviation pressure + units: Pa + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239099 + shortname: std_chnk + longname: Time-standard-deviation charnock + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239100 + shortname: std_pv + longname: Time-standard-deviation potential vorticity + units: K m**2 kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239101 + shortname: std_crwc + longname: Time-standard-deviation specific rain water content + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239102 + shortname: std_cswc + longname: Time-standard-deviation specific snow water content + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239103 + shortname: std_etadot + longname: Time-standard-deviation eta-coordinate vertical velocity + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239105 + shortname: std_vis + longname: Time-standard-deviation visibility + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239106 + shortname: std_wdir + longname: Time-standard-deviation wind direction + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239107 + shortname: std_tcsw + longname: Time-standard-deviation total column snow water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239108 + shortname: std_lcc + longname: Time-standard-deviation low cloud cover + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239109 + shortname: std_mcc + longname: Time-standard-deviation medium cloud cover + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239110 + shortname: std_hcc + longname: Time-standard-deviation high cloud cover + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239111 + shortname: std_tcrw + longname: Time-standard-deviation total column rain water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239117 + shortname: std_mucape + longname: Time-standard-deviation most-unstable CAPE + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239120 + shortname: std_tcolg + longname: Time-standard-deviation total column vertically-integrated graupel (snow + pellets) + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239129 + shortname: std_z + longname: Time-standard-deviation geopotential + units: m**2 s**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239130 + shortname: std_t + longname: Time-standard-deviation temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239131 + shortname: std_u + longname: Time-standard-deviation u component of wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239132 + shortname: std_v + longname: Time-standard-deviation v component of wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239133 + shortname: std_q + longname: Time-standard-deviation specific humidity + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239134 + shortname: std_sp + longname: Time-standard-deviation surface pressure + units: Pa + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239135 + shortname: std_w + longname: Time-standard-deviation vertical velocity + units: Pa s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239136 + shortname: std_tcw + longname: Time-standard-deviation total column water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239137 + shortname: std_tcwv + longname: Time-standard-deviation total column vertically-integrated water vapour + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239138 + shortname: std_vo + longname: Time-standard-deviation vorticity (relative) + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239151 + shortname: std_msl + longname: Time-standard-deviation mean sea level pressure + units: Pa + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239152 + shortname: std_lnsp + longname: Time-standard-deviation logarithm of surface pressure + units: Numeric + description: null + access_ids: [] + origin_ids: + - -60 + - -50 + - 98 +- id: 239155 + shortname: std_d + longname: Time-standard-deviation divergence + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239157 + shortname: std_r + longname: Time-standard-deviation relative humidity + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239159 + shortname: std_blh + longname: Time-standard-deviation boundary layer height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239165 + shortname: std_10u + longname: Time-standard-deviation 10 metre U wind component + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239166 + shortname: std_10v + longname: Time-standard-deviation 10 metre V wind component + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239167 + shortname: std_2t + longname: Time-standard-deviation 2 metre temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239168 + shortname: std_2d + longname: Time-standard-deviation 2 metre dewpoint temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239189 + shortname: std_suns + longname: Time-standard-deviation sunshine + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239203 + shortname: std_o3 + longname: Time-standard-deviation ozone mass mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239207 + shortname: std_10si + longname: Time-standard-deviation 10 metre wind speed + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239238 + shortname: std_tsn + longname: Time-standard-deviation temperature of snow layer + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239244 + shortname: std_fsr + longname: Time-standard-deviation forecast surface roughness + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239245 + shortname: std_flsr + longname: Time-standard-deviation forecast logarithm of surface roughness for heat + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239246 + shortname: std_clwc + longname: Time-standard-deviation specific cloud liquid water content + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239247 + shortname: std_ciwc + longname: Time-standard-deviation specific cloud ice water content + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239248 + shortname: std_cc + longname: Time-standard-deviation fraction of cloud cover + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239257 + shortname: std_kx + longname: Time-standard-deviation k index + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239258 + shortname: std_totalx + longname: Time-standard-deviation total totals index + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239261 + shortname: std_10wdir + longname: Time-standard-deviation 10 metre wind direction + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239262 + shortname: std_cat + longname: Time-standard-deviation clear air turbulence (CAT) + units: m**2/3 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239263 + shortname: std_al + longname: Time-standard-deviation forecast albedo + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239269 + shortname: std_pt + longname: Time-standard-deviation potential temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239281 + shortname: std_aluvp_p + longname: Time-standard-deviation UV visible albedo for direct radiation (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239282 + shortname: std_aluvd_p + longname: Time-standard-deviation UV visible albedo for diffuse radiation (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239283 + shortname: std_alnip_p + longname: Time-standard-deviation near IR albedo for direct radiation (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239284 + shortname: std_alnid_p + longname: Time-standard-deviation near IR albedo for diffuse radiation (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239285 + shortname: std_asn + longname: Time-standard-deviation snow albedo + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239286 + shortname: std_mont + longname: Time-standard-deviation montgomery potential + units: m**2 s**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239287 + shortname: std_cape + longname: Time-standard-deviation convective available potential energy + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239288 + shortname: std_tcc + longname: Time-standard-deviation total cloud cover + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239289 + shortname: std_srcon + longname: Time-standard-deviation skin reservoir content + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239290 + shortname: std_tcioz + longname: Time-standard-deviation total column integrated ozone + units: DU + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239291 + shortname: std_vike + longname: Time-standard-deviation total column vertically-integrated kinetic energy + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239292 + shortname: std_vithe + longname: Time-standard-deviation total column vertically-integrated enthalpy + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239293 + shortname: std_vipie + longname: Time-standard-deviation total column vertically-integrated potential + + internal energy + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239294 + shortname: std_vipile + longname: Time-standard-deviation vertical integral of potential+internal+latent + energy + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239295 + shortname: std_vitoe + longname: Time-standard-deviation total column vertically-integrated total energy + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239296 + shortname: std_viwe + longname: Time-standard-deviation total column vertically-integrated water enthalpy + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239297 + shortname: std_aluvpi_p + longname: Time-standard-deviation UV visible albedo for direct radiation, isotropic + component (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239298 + shortname: std_aluvpv_p + longname: Time-standard-deviation UV visible albedo for direct radiation, volumetric + component (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239299 + shortname: std_aluvpg_p + longname: Time-standard-deviation UV visible albedo for direct radiation, geometric + component (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239300 + shortname: std_alnipi_p + longname: Time-standard-deviation near IR albedo for direct radiation, isotropic + component (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239301 + shortname: std_alnipv_p + longname: Time-standard-deviation near IR albedo for direct radiation, volumetric + component (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239302 + shortname: std_alnipg_p + longname: Time-standard-deviation near IR albedo for direct radiation, geometric + component (climatological) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239303 + shortname: std_cin + longname: Time-standard-deviation convective inhibition + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239304 + shortname: std_zust + longname: Time-standard-deviation friction velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239305 + shortname: std_lblt + longname: Time-standard-deviation lake bottom temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239306 + shortname: std_ltlt + longname: Time-standard-deviation lake total layer temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239307 + shortname: std_lshf + longname: Time-standard-deviation lake shape factor + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239308 + shortname: std_lict + longname: Time-standard-deviation lake ice surface temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239309 + shortname: std_licd + longname: Time-standard-deviation lake ice total depth + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239310 + shortname: std_dndzn + longname: Time-standard-deviation minimum vertical gradient of refractivity inside + trapping layer + units: m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239311 + shortname: std_dndza + longname: Time-standard-deviation mean vertical gradient of refractivity inside + trapping layer + units: m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239312 + shortname: std_dctb + longname: Time-standard-deviation duct base height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239313 + shortname: std_tplb + longname: Time-standard-deviation trapping layer base height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239314 + shortname: std_tplt + longname: Time-standard-deviation trapping layer top height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239315 + shortname: std_degm10l + longname: Time-standard-deviation geometric height of -10 degrees C atmospheric + isothermal level above ground + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239316 + shortname: std_cbh + longname: Time-standard-deviation cloud base height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239317 + shortname: std_deg0l + longname: Time-standard-deviation geometric height of 0 degrees C atmospheric isothermal + level above ground + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239318 + shortname: std_i10fg + longname: Time-standard-deviation 10 metre wind gust + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239319 + shortname: std_rhw + longname: Time-standard-deviation relative humidity with respect to water + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239320 + shortname: std_2rhw + longname: Time-standard-deviation 2 metre relative humidity with respect to water + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239321 + shortname: std_capes + longname: Time-standard-deviation convective available potential energy shear + units: m**2 s**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239322 + shortname: std_trpp + longname: Time-standard-deviation tropopause pressure + units: Pa + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239323 + shortname: std_hcct + longname: Time-standard-deviation height of convective cloud top + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239324 + shortname: std_hwbt0 + longname: Time-standard-deviation height of zero-degree wet-bulb temperature + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239325 + shortname: std_hwbt1 + longname: Time-standard-deviation height of one-degree wet-bulb temperature + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239326 + shortname: std_litoti + longname: Time-standard-deviation total lightning flash density + units: km**-2 day**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239327 + shortname: std_tcslw + longname: Time-standard-deviation total column supercooled liquid water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239328 + shortname: std_u10n + longname: Time-standard-deviation 10 metre U-component of neutral wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239329 + shortname: std_v10n + longname: Time-standard-deviation 10 metre V-component of neutral wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239330 + shortname: std_crr + longname: Time-standard-deviation convective rain rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239331 + shortname: std_lsrr + longname: Time-standard-deviation large scale rain rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239332 + shortname: std_mlcape50 + longname: Time-standard-deviation mixed-layer CAPE in the lowest 50 hPa + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239333 + shortname: std_mlcin50 + longname: Time-standard-deviation mixed-layer CIN in the lowest 50 hPa + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239334 + shortname: std_mlcape100 + longname: Time-standard-deviation mixed-layer CAPE in the lowest 100 hPa + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239335 + shortname: std_mlcin100 + longname: Time-standard-deviation mixed-layer CIN in the lowest 100 hPa + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239336 + shortname: std_mudlp + longname: Time-standard-deviation departure level of the most unstable parcel expressed + as Pressure + units: Pa + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239337 + shortname: std_ceil + longname: Time-standard-deviation ceiling + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239338 + shortname: std_tcsqw + longname: Time-standard-deviation total column integrated saturation specific humidity + with respect to water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239339 + shortname: std_sdirnswrf + longname: Time-standard-deviation direct solar radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239340 + shortname: std_cossza + longname: Time-standard-deviation cosine of solar zenith angle + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239341 + shortname: std_fprate + longname: Time-standard-deviation freezing rain rate water equivalent + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239342 + shortname: std_vige + longname: Time-standard-deviation total column vertically-integrated eastward geopotential + flux + units: W m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239343 + shortname: std_vign + longname: Time-standard-deviation total column vertically-integrated northward geopotential + flux + units: W m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239344 + shortname: std_viwgd + longname: Time-standard-deviation total column vertically-integrated divergence + of water geopotential flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239345 + shortname: std_vigd + longname: Time-standard-deviation total column vertically-integrated divergence + of geopotential flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239346 + shortname: std_viee + longname: Time-standard-deviation total column vertically-integrated eastward enthalpy + flux + units: W m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239347 + shortname: std_vien + longname: Time-standard-deviation total column vertically-integrated northward enthalpy + flux + units: W m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239348 + shortname: std_vikee + longname: Time-standard-deviation total column vertically-integrated eastward kinetic + energy flux + units: W m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239349 + shortname: std_viken + longname: Time-standard-deviation total column vertically-integrated northward kinetic + energy flux + units: W m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239350 + shortname: std_vitee + longname: Time-standard-deviation total column vertically-integrated eastward total + energy flux + units: W m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239351 + shortname: std_viten + longname: Time-standard-deviation total column vertically-integrated northward total + energy flux + units: W m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239352 + shortname: std_vied + longname: Time-standard-deviation total column vertically-integrated divergence + of enthalpy flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239353 + shortname: std_viked + longname: Time-standard-deviation total column vertically-integrated divergence + of kinetic energy flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239354 + shortname: std_vited + longname: Time-standard-deviation total column vertically-integrated divergence + of total energy flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239355 + shortname: std_viwed + longname: Time-standard-deviation total column vertically-integrated divergence + of water enthalpy flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239356 + shortname: std_vimad + longname: Time-standard-deviation vertically integrated divergence of mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239357 + shortname: std_vimae + longname: Time-standard-deviation vertically integrated eastward mass flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239358 + shortname: std_viman + longname: Time-standard-deviation vertically integrated northward mass flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239359 + shortname: std_viwvd + longname: Time-standard-deviation vertically integrated divergence of water vapour + flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239360 + shortname: std_viclwd + longname: Time-standard-deviation vertically integrated divergence of cloud liquid + water flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239361 + shortname: std_viciwd + longname: Time-standard-deviation vertically integrated divergence of cloud ice + water flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239362 + shortname: std_vird + longname: Time-standard-deviation vertically integrated divergence of rain flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239363 + shortname: std_visd + longname: Time-standard-deviation vertically integrated divergence of snow flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239364 + shortname: std_viwve + longname: Time-standard-deviation vertically integrated eastward water vapour flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239365 + shortname: std_viwvn + longname: Time-standard-deviation vertically integrated northward water vapour flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239366 + shortname: std_viclwe + longname: Time-standard-deviation vertically integrated eastward cloud liquid water + flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239367 + shortname: std_viclwn + longname: Time-standard-deviation vertically integrated northward cloud liquid water + flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239368 + shortname: std_viciwe + longname: Time-standard-deviation vertically integrated eastward cloud ice water + flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239369 + shortname: std_viciwn + longname: Time-standard-deviation vertically integrated northward cloud ice water + flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239370 + shortname: std_vire + longname: Time-standard-deviation vertically integrated eastward rain flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239371 + shortname: std_virn + longname: Time-standard-deviation vertically integrated northward rain flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239372 + shortname: std_vise + longname: Time-standard-deviation vertically integrated eastward snow flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239373 + shortname: std_visn + longname: Time-standard-deviation vertically integrated northward snow flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239374 + shortname: std_vioze + longname: Time-standard-deviation vertically integrated eastward ozone flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239375 + shortname: std_viozn + longname: Time-standard-deviation vertically integrated northward ozone flux + units: kg m**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239376 + shortname: std_viozd + longname: Time-standard-deviation vertically integrated divergence of ozone flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239377 + shortname: std_vions + longname: Time-standard-deviation vertically integrated net source of ozone + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239378 + shortname: std_ietssofd + longname: Time-standard-deviation eastward turbulent surface stress due to orographic + form drag + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239379 + shortname: std_intssofd + longname: Time-standard-deviation northward turbulent surface stress due to orographic + form drag + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239380 + shortname: std_ietsssr + longname: Time-standard-deviation eastward turbulent surface stress due to surface + roughness + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239381 + shortname: std_intsssr + longname: Time-standard-deviation northward turbulent surface stress due to surface + roughness + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239383 + shortname: std_licgi + longname: Time-standard-deviation cloud-to-ground lightning flash density + units: km**-2 day**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239386 + shortname: std_lshnf + longname: Time-standard-deviation land surface heat net flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239387 + shortname: std_sdirnswrfcs + longname: Time-standard-deviation surface direct normal short-wave radiation flux, + clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239388 + shortname: std_10cogu + longname: Time-standard-deviation 10 metre convective gust + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239389 + shortname: std_10tugu + longname: Time-standard-deviation 10 metre turbulent gust + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239390 + shortname: std_h0thg + longname: Time-standard-deviation geometric height of 0 degrees C theta level above + ground + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239391 + shortname: std_h1thg + longname: Time-standard-deviation geometric height of 1 degree C theta level above + ground + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239392 + shortname: std_h1p5thg + longname: Time-standard-deviation geometric height of 1.5 degrees C theta level + above ground + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239393 + shortname: std_veg + longname: Time-standard-deviation vegetation + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239394 + shortname: std_lai + longname: Time-standard-deviation leaf area index + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239395 + shortname: std_srhe + longname: Time-standard-deviation surface roughness for heat + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239396 + shortname: std_rol + longname: Time-standard-deviation Reciprocal Obukhov length + units: m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239397 + shortname: std_deg3l + longname: Time-standard-deviation geometric height of 3 degrees C atmospheric isothermal + level above ground + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239404 + shortname: std_sdifswrfcs + longname: Time-standard-deviation surface diffuse short-wave radiation flux, clear + sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239405 + shortname: std_vswrz + longname: Time-standard-deviation volumetric soil moisture (root zone) + units: m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239406 + shortname: std_lwcs + longname: Time-standard-deviation liquid water content in snow pack + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239407 + shortname: std_mucin + longname: Time-standard-deviation most-unstable CIN + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239408 + shortname: std_crwc_conv + longname: Time-standard-deviation specific rain water content (convective) + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239409 + shortname: std_cswc_conv + longname: Time-standard-deviation specific snow water content (convective) + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239410 + shortname: std_mld + longname: Time-standard-deviation mixed layer depth + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 239411 + shortname: std_cur + longname: Time-standard-deviation urban cover + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 240011 + shortname: chcross + longname: Cross sectional area of flow in channel + units: m**2 + description: 'Channel cross sectional area is defined as the cross section area + of the water flowing in the river channel (wet area). + + The channel cross section area multiplied by the mean velocity of the flow gives + the discharge (instant)' + access_ids: [] + origin_ids: + - 0 +- id: 240012 + shortname: chside + longname: Side flow into river channel + units: m**3 s**-1 m**-1 + description: Rate of runoff that enters the river channel in each grid cell. The + runoff consists of the contributions from surface runoff, outflow from ground + water, additional runoff from rivers and reservoirs. Calculated as a flow (m3/s) + per m river length. The value is the mean rate over the timestep + access_ids: [] + origin_ids: + - 0 +- id: 240013 + shortname: dis + longname: Discharge from rivers or streams + units: m**3 s**-1 + description: The instantaneous volume rate of water flow, including sediments, chemical + and biological material, in the river channel through a cross section. + access_ids: [] + origin_ids: + - 0 +- id: 240014 + shortname: rivsto + longname: River storage of water + units: m**3 + description: The amount of water storage in the river network within a grid cell; + this does not include the floodplain. The term storage refers to the total volume + of water. This value is instantaneous. + access_ids: [] + origin_ids: + - 0 +- id: 240015 + shortname: fldsto + longname: Floodplain storage of water + units: m**3 + description: "The amount of water storage on the floodplain within a grid cell.The\ + \ term storage refers to the total volume of water.\r\nA floodplain is defined\ + \ as: 'A flat or nearly flat land adjacent to a stream or river that stretches\ + \ from the banks of its channel to the base of the enclosing valley walls and\ + \ experiences flooding during periods of high discharge' (Goudie, A. S., 2004,\ + \ Encyclopedia of Geomorphology, vol. 1. Routledge, New York. ISBN 0-415-32737-7).\ + \ This value is instantaneous." + access_ids: [] + origin_ids: + - 0 +- id: 240017 + shortname: dslr + longname: Days since last observation + units: Integer + description: 'The number of days since the last observation. + + The value is initialised as 1 on the first day, and then incremented (instant)' + access_ids: [] + origin_ids: + - 0 +- id: 240018 + shortname: frost + longname: Frost index + units: K + description: "When the soil surface is frozen, this affects the hydrological processes\ + \ occurring near the soil surface. To estimate whether the soil surface is frozen\ + \ or not, a frost index F is calculated. The equation is based on Molnau & Bissell\ + \ (1983, cited in Maidment 1993), and adjusted for variable time steps. The rate\ + \ at which the frost index changes is given by:\r\n

\r\ndF/dt = (1-Af)F-Tav•e(-0.04•K•ds/wes)\r\ + \n

\r\ndF/dt is expressed in [°C day-1 day-1 ]. Af is a decay coefficient\ + \ [day-1], K is a a snow\r\ndepth reduction coefficient [cm-1], ds is the (pixel-average)\ + \ depth of the snow cover\r\n(expressed as mm equivalent water depth), and wes\ + \ is a parameter called snow\r\nwater equivalent, which is the equivalent water\ + \ depth water of a snow cover\r\n(Maidment, 1993). The soil is considered frozen\ + \ when the frost index rises above a\r\ncritical threshold of 56. For each time\ + \ step the value of F [°C day-1] is updated as:\n

\r\nF(t) = F(t −1)\ + \ + dF/dt•Δt\r\n

\r\nF is not allowed to become less than 0 (instant)" + access_ids: [] + origin_ids: + - 0 +- id: 240020 + shortname: woss + longname: Depth of water on soil surface + units: kg m**-2 + description: Total amount on water on soil surface that is not infiltrating the + ground or intercepted on vegetation. The parameter can also be defined as water + intercepted on soil (accum) + access_ids: [] + origin_ids: + - 0 +- id: 240021 + shortname: tpups + longname: Upstream accumulated precipitation + units: kg m**-2 + description: Total accumulated precipitation (rain + snowfall) upstream each grid + cell, including the value of the grid cell, for each time step (accum) + access_ids: [] + origin_ids: + - 0 +- id: 240022 + shortname: smups + longname: Upstream accumulated snow melt + units: kg m**-2 + description: Total snow melt from areas upstream each grid cell, including the value + of the grid cell, for each time step (accum) + access_ids: [] + origin_ids: + - 0 +- id: 240023 + shortname: dis06 + longname: Mean discharge in the last 6 hours + units: m**3 s**-1 + description: Volume rate of water flow, including sediments, chemical and biological + material, in the river channel averaged over a time step through a cross-section + access_ids: [] + origin_ids: + - -10 +- id: 240024 + shortname: dis24 + longname: Mean discharge in the last 24 hours + units: m**3 s**-1 + description: Volume rate of water flow, including sediments, chemical and biological + material, in the river channel averaged over a time step through a cross-section + access_ids: [] + origin_ids: + - -10 +- id: 240026 + shortname: sd_elev + longname: Snow depth at elevation bands + units: kg m**-2 + description: Snow depth in m water equivalent at elevation bands. The parameter + needs to have several layers to represent elevation bands (instant) + access_ids: [] + origin_ids: + - 0 +- id: 240028 + shortname: gwus + longname: Groundwater upper storage + units: kg m**-2 + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 240029 + shortname: gwls + longname: Groundwater lower storage + units: kg m**-2 + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 240030 + shortname: lakdph + longname: Lake depth + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 240031 + shortname: rivdph + longname: River depth + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 240032 + shortname: rivout + longname: River outflow of water + units: m**3 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 240033 + shortname: fldout + longname: Floodplain outflow of water + units: m**3 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 240034 + shortname: pthflw + longname: Floodpath outflow of water + units: m**3 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 240035 + shortname: flddep + longname: Floodplain depth + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 240036 + shortname: fldffr + longname: Floodplain flooded fraction + units: Proportion + description: null + access_ids: [] + origin_ids: + - 0 +- id: 240037 + shortname: fldfar + longname: Floodplain flooded area + units: m**2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 240038 + shortname: rivfr + longname: River fraction + units: Proportion + description: null + access_ids: [] + origin_ids: + - 0 +- id: 240039 + shortname: rivar + longname: River area + units: m**2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 240040 + shortname: rivcffr + longname: Fraction of river coverage plus river related flooding + units: Proportion + description: null + access_ids: [] + origin_ids: + - 0 +- id: 240041 + shortname: rivcfar + longname: Area of river coverage plus river related flooding + units: m**2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 240042 + shortname: wse + longname: Water surface elevation + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 240043 + shortname: grfr + longname: Groundwater return flow rate + units: m**3 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 240044 + shortname: rivfldsto + longname: River and floodplain storage + units: m**3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 240045 + shortname: darv + longname: Depth-averaged river velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 250001 + shortname: lat + longname: Latitude + units: Degree N + description: Geographical latitude + access_ids: [] + origin_ids: + - 0 +- id: 250002 + shortname: lon + longname: Longitude + units: Degree E + description: Geographical longitude + access_ids: [] + origin_ids: + - 0 +- id: 250003 + shortname: tlat + longname: Latitude on T grid + units: Degree N + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 250004 + shortname: tlon + longname: Longitude on T grid + units: Degree E + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 250005 + shortname: ulat + longname: Latitude on U grid + units: Degree N + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 250006 + shortname: ulon + longname: Longitude on U grid + units: Degree E + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 250007 + shortname: vlat + longname: Latitude on V grid + units: Degree N + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 250008 + shortname: vlon + longname: Longitude on V grid + units: Degree E + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 250009 + shortname: wlat + longname: Latitude on W grid + units: Degree N + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 250010 + shortname: wlon + longname: Longitude on W grid + units: Degree E + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 250011 + shortname: flat + longname: Latitude on F grid + units: Degree N + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 250012 + shortname: flon + longname: Longitude on F grid + units: Degree E + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 254001 + shortname: covar_t2m_swvl1 + longname: Covariance between 2-metre temperature and volumetric soil water layer + 1 + units: K m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - -50 + - 98 +- id: 254002 + shortname: covar_rh2m_swvl1 + longname: Covariance between 2-metre relative humidity and volumetric soil water + layer 1 + units: '% m**3 m**-3' + description: null + access_ids: [] + origin_ids: + - -50 + - 98 +- id: 254003 + shortname: covar_ssm_swvl1 + longname: Covariance between surface soil moisture and volumetric soil water layer + 1 + units: m**3 m**-3 m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - -50 + - 98 +- id: 254004 + shortname: covar_t2m_swvl2 + longname: Covariance between 2-metre temperature and volumetric soil water layer + 2 + units: K m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - -50 + - 98 +- id: 254005 + shortname: covar_rh2m_swvl2 + longname: Covariance between 2-metre relative humidity and volumetric soil water + layer 2 + units: '% m**3 m**-3' + description: null + access_ids: [] + origin_ids: + - -50 + - 98 +- id: 254006 + shortname: covar_ssm_swvl2 + longname: Covariance between surface soil moisture and volumetric soil water layer + 2 + units: m**3 m**-3 m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - -50 + - 98 +- id: 254007 + shortname: covar_t2m_swvl3 + longname: Covariance between 2-metre temperature and volumetric soil water layer + 3 + units: K m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - -50 + - 98 +- id: 254008 + shortname: covar_rh2m_swvl3 + longname: Covariance between 2-metre relative humidity and volumetric soil water + layer 3 + units: '% m**3 m**-3' + description: null + access_ids: [] + origin_ids: + - -50 + - 98 +- id: 254009 + shortname: covar_ssm_swvl3 + longname: Covariance between surface soil moisture and volumetric soil water layer + 3 + units: m**3 m**-3 m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - -50 + - 98 +- id: 254010 + shortname: covar_t2m_stl1 + longname: Covariance between 2-metre temperature and soil temperature layer 1 + units: K K + description: null + access_ids: [] + origin_ids: + - -50 + - 98 +- id: 254011 + shortname: covar_rh2m_stl1 + longname: Covariance between 2-metre relative humidity and soil temperature layer + 1 + units: '% K' + description: null + access_ids: [] + origin_ids: + - -50 + - 98 +- id: 254012 + shortname: covar_t2m_stl2 + longname: Covariance between 2-metre temperature and soil temperature layer 2 + units: K K + description: null + access_ids: [] + origin_ids: + - -50 + - 98 +- id: 254013 + shortname: covar_rh2m_stl2 + longname: Covariance between 2-metre relative humidity and soil temperature layer + 2 + units: '% K' + description: null + access_ids: [] + origin_ids: + - -50 + - 98 +- id: 254014 + shortname: covar_t2m_stl3 + longname: Covariance between 2-metre temperature and soil temperature layer 3 + units: K K + description: null + access_ids: [] + origin_ids: + - -50 + - 98 +- id: 254015 + shortname: covar_rh2m_stl3 + longname: Covariance between 2-metre relative humidity and soil temperature layer + 3 + units: '% K' + description: null + access_ids: [] + origin_ids: + - -50 + - 98 +- id: 254016 + shortname: covar_t2m_tsn1 + longname: Covariance between 2-metre temperature and temperature of snow layer 1 + units: K K + description: null + access_ids: [] + origin_ids: + - -50 + - 98 +- id: 254017 + shortname: covar_rh2m_tsn1 + longname: Covariance between 2-metre relative humidity and temperature of snow layer + 1 + units: '% K' + description: null + access_ids: [] + origin_ids: + - -50 + - 98 +- id: 254018 + shortname: covar_t2m_tsn2 + longname: Covariance between 2-metre temperature and temperature of snow layer 2 + units: K K + description: null + access_ids: [] + origin_ids: + - -50 + - 98 +- id: 254019 + shortname: covar_rh2m_tsn2 + longname: Covariance between 2-metre relative humidity and temperature of snow layer + 2 + units: '% K' + description: null + access_ids: [] + origin_ids: + - -50 + - 98 +- id: 254020 + shortname: covar_t2m_tsn3 + longname: Covariance between 2-metre temperature and temperature of snow layer 3 + units: K K + description: null + access_ids: [] + origin_ids: + - -50 + - 98 +- id: 254021 + shortname: covar_rh2m_tsn3 + longname: Covariance between 2-metre relative humidity and temperature of snow layer + 3 + units: '% K' + description: null + access_ids: [] + origin_ids: + - -50 + - 98 +- id: 254022 + shortname: covar_skt_stl1 + longname: Covariance between skin temperature and soil temperature layer 1 + units: K K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 254023 + shortname: covar_skt_stl2 + longname: Covariance between skin temperature and soil temperature layer 2 + units: K K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 254024 + shortname: covar_skt_stl3 + longname: Covariance between skin temperature and soil temperature layer 3 + units: K K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 254025 + shortname: covar_skt_swvl1 + longname: Covariance between skin temperature and volumetric soil water layer 1 + units: K m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 254026 + shortname: covar_skt_swvl2 + longname: Covariance between skin temperature and volumetric soil water layer 2 + units: K m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 254027 + shortname: covar_skt_swvl3 + longname: Covariance between skin temperature and volumetric soil water layer 3 + units: K m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 254028 + shortname: covar_skt_tsn1 + longname: Covariance between skin temperature and temperature of snow layer 1 + units: K K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 254029 + shortname: covar_skt_tsn2 + longname: Covariance between skin temperature and temperature of snow layer 2 + units: K K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 254030 + shortname: covar_skt_tsn3 + longname: Covariance between skin temperature and temperature of snow layer 3 + units: K K + description: null + access_ids: [] + origin_ids: + - 98 +- id: 254500 + shortname: curvmsl + longname: CURV diagnostic mean sea level pressure + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 98 +- id: 254501 + shortname: curvz + longname: CURV diagnostic geopotential + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 98 +- id: 260001 + shortname: tcolg + longname: Total column vertically-integrated graupel (snow pellets) + units: kg m**-2 + description:

Instantaneous.

Please note that the encodings listed here + for uerra (which includes carra/cerra) are for Time-mean total column vertically-integrated + graupel (snow pellets). The specific encoding for Time-mean total column vertically-integrated + graupel (snow pellets) can be found in 235120.

+ access_ids: [] + origin_ids: + - -20 + - 0 +- id: 260002 + shortname: slhtf + longname: Surface latent heat net flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260004 + shortname: heatx + longname: Heat index + units: K + description: The heat index describes the perception of the human body when its + evaporative cooling mechanism is limited due to increased relative humidity. It + is derived from air temperature and relative humidity. + access_ids: + - dissemination + origin_ids: + - 0 +- id: 260005 + shortname: wcf + longname: Wind chill factor + units: K + description: The wind chill factor describes the cooling sensation felt by the human + body and is based on the rate of heat loss from exposed skin caused by the effects + of wind and cold. It is derived from air temperature and wind speed. + access_ids: + - dissemination + origin_ids: + - 0 +- id: 260007 + shortname: snohf + longname: Snow phase change heat flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260008 + shortname: vapp + longname: Vapor pressure + units: Pa + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260009 + shortname: ncpcp + longname: Large scale precipitation (non-convective) + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260010 + shortname: srweq + longname: Snowfall rate water equivalent + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260011 + shortname: snoc + longname: Convective snow + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 260012 + shortname: snol + longname: Large scale snow + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260013 + shortname: snoag + longname: Snow age + units: day + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260014 + shortname: absh + longname: Absolute humidity + units: kg m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260015 + shortname: ptype + longname: Precipitation type + units: (Code table 4.201) + description: '

This parameter describes the type of precipitation at the surface, + at + the specified time.

A precipitation type is assigned wherever there + is a non-zero value of precipitation in the model output field. The precipitation + type should be used together with the precipitation rate to provide, for example, + an indication of potential freezing rain events.

In the ECMWF Integrated + Forecasting System (IFS) there are only two predicted precipitation variables: + rain and snow. Precipitation type is derived from these two predicted variables + in combination with atmospheric conditions, such as temperature.

Values + of precipitation type defined in the IFS:

0 = No precipitation
1 = Rain
3 + = Freezing rain (i.e. supercooled raindrops which freeze on contact with the ground + and other surfaces)
5 = Snow
6 = Wet snow (i.e. snow particles which are + starting to melt)
7 = Mixture of rain and snow
8 = Ice pellets
12 = Freezing + drizzle (i.e. supercooled drizzle which freezes on contact with the ground and + other surfaces)

These precipitation types are consistent with WMO + Code Table 4.201. 2 (thunderstorm), 4 (mixed ice) and 9 (graupel), 10 (hail) + and 11 (drizzle) are not diagnosed in the IFS.

' + access_ids: + - dissemination + origin_ids: + - -80 + - -20 + - 0 +- id: 260016 + shortname: iliqw + longname: Integrated liquid water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260017 + shortname: tcond + longname: Condensate + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260018 + shortname: clwmr + longname: Cloud mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260019 + shortname: icmr + longname: Ice water mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260020 + shortname: rwmr + longname: Rain mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260021 + shortname: snmr + longname: Snow mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260022 + shortname: mconv + longname: Horizontal moisture convergence + units: kg kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260025 + shortname: asnow + longname: Total snowfall + units: m + description: Please be aware that this parameter represents the metres of snowfall + in a gridbox accumulated over a period of time without the conversion to + liquid water equivalent. Please refer to parameter 144 (m of water equivalent) + and 228144 (kg m-2) for this parameter. + access_ids: [] + origin_ids: + - 0 +- id: 260026 + shortname: pwcat + longname: Precipitable water category + units: (Code table 4.202) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260027 + shortname: hail + longname: Hail + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260028 + shortname: grle + longname: Graupel (snow pellets) + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260029 + shortname: crain + longname: Categorical rain + units: (Code table 4.222) + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260030 + shortname: cfrzr + longname: Categorical freezing rain + units: (Code table 4.222) + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260031 + shortname: cicep + longname: Categorical ice pellets + units: (Code table 4.222) + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260032 + shortname: csnow + longname: Categorical snow + units: (Code table 4.222) + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260033 + shortname: cpr + longname: Convective precipitation rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260034 + shortname: mdiv + longname: Horizontal moisture divergence + units: kg kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260035 + shortname: cpofp + longname: Percent frozen precipitation + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260036 + shortname: pevap + longname: Potential evaporation + units: kg m**-2 + description: [DEPRECATED - Please use paramId 231005 instead] + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260038 + shortname: snowc + longname: Snow cover + units: '%' + description: null + access_ids: [] + origin_ids: + - -80 + - 0 + - 7 +- id: 260039 + shortname: frain + longname: Rain fraction of total cloud water + units: Proportion + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260040 + shortname: rime + longname: Rime factor + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260041 + shortname: tcolr + longname: Total column integrated rain + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260042 + shortname: tcols + longname: Total column integrated snow + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260043 + shortname: lswp + longname: Large scale water precipitation (non-convective) + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260044 + shortname: cwp + longname: Convective water precipitation + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260045 + shortname: twatp + longname: Total water precipitation + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260046 + shortname: tsnowp + longname: Total snow precipitation + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260047 + shortname: tcwat + longname: Total column water (Vertically integrated total water (vapour + cloud + water/ice)) + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260048 + shortname: tprate + longname: Total precipitation rate + units: kg m**-2 s**-1 + description: This parameter is the rate of total precipitation, at + the specified time.

In the ECMWF Integrated Forecasting System (IFS), + total precipitation is rain and snow that falls to the Earth's surface. It is + the sum of large-scale precipitation and convective precipitation. Large-scale + precipitation is generated by the cloud scheme in the IFS. The cloud scheme represents + the formation and dissipation of clouds and large-scale precipitation due to changes + in atmospheric quantities (such as pressure, temperature and moisture) predicted + directly by the IFS at spatial scales of a grid + box or larger. Convective precipitation is generated by the convection scheme + in the IFS. The convection scheme represents convection at spatial scales smaller + than the grid box.See further + information. Precipitation parameters do not include fog, dew or the precipitation + that evaporates in the atmosphere before it lands at the surface of the Earth.

1 + kg of water spread over 1 square metre of surface is 1 mm deep (neglecting the + effects of temperature on the density of water), therefore the units are equivalent + to mm per second.

Care should be taken when comparing model parameters + with observations, because observations are often local to a particular point + in space and time, rather than representing averages over a model grid box and + model + time step . + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 260049 + shortname: tsrwe + longname: Total snowfall rate water equivalent + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260050 + shortname: lsprate + longname: Large scale precipitation rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260053 + shortname: tsrate + longname: Total snowfall rate + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260054 + shortname: csrate + longname: Convective snowfall rate + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260055 + shortname: lssrate + longname: Large scale snowfall rate + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260056 + shortname: sdwe + longname: Water equivalent of accumulated snow depth (deprecated) + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260057 + shortname: tciwv + longname: Total column integrated water vapour + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - -20 +- id: 260058 + shortname: rprate + longname: Rain precipitation rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260059 + shortname: sprate + longname: Snow precipitation rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260060 + shortname: fprate + longname: Freezing rain precipitation rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260061 + shortname: iprate + longname: Ice pellets precipitation rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260062 + shortname: uflx + longname: Momentum flux, u component + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - -20 +- id: 260063 + shortname: vflx + longname: Momentum flux, v component + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - -20 +- id: 260065 + shortname: gust + longname: Wind speed (gust) + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260066 + shortname: ugust + longname: u-component of wind (gust) + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260067 + shortname: vgust + longname: v-component of wind (gust) + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260068 + shortname: vwsh + longname: Vertical speed shear + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260069 + shortname: mflx + longname: Horizontal momentum flux + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260070 + shortname: ustm + longname: U-component storm motion + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260071 + shortname: vstm + longname: V-component storm motion + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260072 + shortname: cd + longname: Drag coefficient + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260073 + shortname: fricv + longname: Frictional velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260074 + shortname: prmsl + longname: Pressure reduced to MSL + units: Pa + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260076 + shortname: alts + longname: Altimeter setting + units: Pa + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260077 + shortname: thick + longname: Thickness + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260078 + shortname: presalt + longname: Pressure altitude + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260079 + shortname: denalt + longname: Density altitude + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260080 + shortname: 5wavh + longname: 5-wave geopotential height + units: gpm + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260081 + shortname: iegwss + longname: Instantaneous eastward gravity wave surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260082 + shortname: ingwss + longname: Instantaneous northward gravity wave surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260084 + shortname: 5wava + longname: 5-wave geopotential height anomaly + units: gpm + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260085 + shortname: sdsgso + longname: Standard deviation of sub-grid scale orography + units: m + description: null + access_ids: [] + origin_ids: + - -20 +- id: 260086 + shortname: nswrt + longname: Net short-wave radiation flux (top of atmosphere) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260087 + shortname: sdswrf + longname: Surface downward short-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 7 + - 34 +- id: 260088 + shortname: suswrf + longname: Surface upward short-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 7 + - 34 +- id: 260089 + shortname: snswrf + longname: Surface net short-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260090 + shortname: sparf + longname: Surface photosynthetically active radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260091 + shortname: snswrfcs + longname: Surface net short-wave radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260092 + shortname: sduvrf + longname: Surface downward UV radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260093 + shortname: uviucs + longname: UV index (under clear sky) + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260094 + shortname: uvi + longname: UV index + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260097 + shortname: sdlwrf + longname: Surface downward long-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 7 + - 34 +- id: 260098 + shortname: sulwrf + longname: Surface upward long-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 7 + - 34 +- id: 260099 + shortname: snlwrf + longname: Surface net long-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260100 + shortname: snlwrfcs + longname: Surface net long-wave radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260101 + shortname: cice + longname: Cloud Ice + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260102 + shortname: cwat + longname: Cloud water + units: kg m**-2 + description: '' + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 260103 + shortname: cdca + longname: Cloud amount + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260104 + shortname: cdct + longname: Cloud type + units: (Code table 4.203) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260105 + shortname: tmaxt + longname: Thunderstorm maximum tops + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260106 + shortname: thunc + longname: Thunderstorm coverage + units: (Code table 4.204) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260107 + shortname: cdcb + longname: Cloud base + units: m + description: null + access_ids: [] + origin_ids: + - -20 +- id: 260108 + shortname: cdct + longname: Cloud top + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260109 + shortname: ceil + longname: Ceiling + units: m + description: The height above the Earth's surface of the base of the lowest layer + of cloud with a covering of more than 50% of the model + grid box. Cloud ceiling is a measurement used in the aviation industry to + indicate airport landing conditions.

This parameter is calculated by + searching from the second lowest model level upwards, to the height of the level + where cloud fraction becomes greater than 50% and condensate content greater than + 1.E-6 kg kg-1. Fog (i.e., cloud in the lowest model layer) is not considered when + defining ceiling. + access_ids: + - dissemination + origin_ids: + - 0 + - 98 +- id: 260110 + shortname: cdlyr + longname: Non-convective cloud cover + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260111 + shortname: cwork + longname: Cloud work function + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 7 + - 34 +- id: 260112 + shortname: cuefi + longname: Convective cloud efficiency + units: Proportion + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260113 + shortname: tcond + longname: Total condensate + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260114 + shortname: tcolw + longname: Total column-integrated cloud water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260115 + shortname: tcoli + longname: Total column-integrated cloud ice + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260116 + shortname: tcolc + longname: Total column-integrated condensate + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260117 + shortname: fice + longname: Ice fraction of total condensate + units: Proportion + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260118 + shortname: cdcimr + longname: Cloud ice mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260119 + shortname: suns + longname: Sunshine + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260120 + shortname: '~' + longname: Horizontal extent of cumulonimbus (CB) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260121 + shortname: kx + longname: K index + units: K + description: This parameter is a measure of potential for a thunderstorm to develop + calculated from the temperature and dew point temperature in the lower part of + the atmosphere. The calculation uses the temperature at 850, 700 and 500 hPa and + dewpoint temperature at 850 and 700 hPa. Higher values of K indicate a higher + potential for the development of thunderstorms.

This parameter is related + to the probability of occurrence of a thunderstorm:
Parameter valueThunderstorm + Probability
<20 K No thunderstorm.
20-25 + K Isolated thunderstorms.
26-30 K Widely scattered + thunderstorms.
31-35 K Scattered thunderstorms.
>35 + K Numerous thunderstorms
+ access_ids: + - dissemination + origin_ids: + - -80 + - 0 + - 98 +- id: 260122 + shortname: kox + longname: KO index + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260123 + shortname: totalx + longname: Total totals index + units: K + description: This parameter gives an indication of the probability of occurrence + of a thunderstorm and its severity by using the vertical gradient of temperature + and humidity.

TT indexThunderstorm Probability
<44Thunderstorms + not likely.
44-50Thunderstorms likely.
51-52Isolated + severe thunderstorms.
53-56Widely scattered severe thunderstorms.
56-60Scattered + severe thunderstorms more likely.
The total totals index is + the temperature difference between 850 hPa (near surface) and 500 hPa (mid-troposphere) + (lapse rate) plus a measure of the moisture content between 850 hPa and 500 hPa. + The probability of deep convection tends to increase with increasing lapse rate + and atmospheric moisture content.

There are a number of limitations to + this index. Also, the interpretation of the index value varies with season and + location. See + further information. + access_ids: + - dissemination + origin_ids: + - -80 + - 0 + - 98 +- id: 260124 + shortname: sx + longname: Sweat index + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260125 + shortname: hlcy + longname: Storm relative helicity + units: m**2 s**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260126 + shortname: ehlx + longname: Energy helicity index + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260127 + shortname: lftx + longname: Surface lifted index + units: K + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260128 + shortname: 4lftx + longname: Best (4-layer) lifted index + units: K + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260129 + shortname: aerot + longname: Aerosol type + units: (Code table 4.205) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260130 + shortname: tozne + longname: Total ozone + units: DU + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260131 + shortname: o3mr + longname: Ozone mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260132 + shortname: tcioz + longname: Total column integrated ozone + units: DU + description: '[NOTE: See 206 for the equivalent parameter in ''kg m**-2'']' + access_ids: [] + origin_ids: + - 0 + - 34 +- id: 260133 + shortname: bswid + longname: Base spectrum width + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260134 + shortname: bref + longname: Base reflectivity + units: dB + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260135 + shortname: brvel + longname: Base radial velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260136 + shortname: veril + longname: Vertically-integrated liquid + units: kg m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260137 + shortname: lmaxbr + longname: Layer-maximum base reflectivity + units: dB + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260138 + shortname: rdp + longname: Precipitation from radar + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260139 + shortname: acces + longname: Air concentration of Caesium 137 + units: Bq m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260140 + shortname: aciod + longname: Air concentration of Iodine 131 + units: Bq m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260141 + shortname: acradp + longname: Air concentration of radioactive pollutant + units: Bq m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260142 + shortname: gdces + longname: Ground deposition of Caesium 137 + units: Bq m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260143 + shortname: gdiod + longname: Ground deposition of Iodine 131 + units: Bq m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260144 + shortname: gdradp + longname: Ground deposition of radioactive pollutant + units: Bq m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260145 + shortname: tiaccp + longname: Time-integrated air concentration of caesium pollutant + units: Bq s m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260146 + shortname: tiacip + longname: Time-integrated air concentration of iodine pollutant + units: Bq s m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260147 + shortname: tiacrp + longname: Time-integrated air concentration of radioactive pollutant + units: Bq s m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260148 + shortname: volash + longname: Volcanic ash + units: (Code table 4.206) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260149 + shortname: icit + longname: Icing top + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260150 + shortname: icib + longname: Icing base + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260151 + shortname: ici + longname: Icing + units: (Code table 4.207) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260152 + shortname: turbt + longname: Turbulence top + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260153 + shortname: turbb + longname: Turbulence base + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260154 + shortname: turb + longname: Turbulence + units: (Code table 4.208) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260155 + shortname: tke + longname: Turbulent kinetic energy + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260156 + shortname: pblreg + longname: Planetary boundary layer regime + units: (Code table 4.209) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260157 + shortname: conti + longname: Contrail intensity + units: (Code table 4.210) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260158 + shortname: contet + longname: Contrail engine type + units: (Code table 4.211) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260159 + shortname: contt + longname: Contrail top + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260160 + shortname: contb + longname: Contrail base + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260161 + shortname: mxsalb + longname: Maximum snow albedo + units: '%' + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260162 + shortname: snfalb + longname: Snow free albedo + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260163 + shortname: '~' + longname: Icing + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260164 + shortname: '~' + longname: In-cloud turbulence + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260165 + shortname: rcat + longname: Relative clear air turbulence (RCAT) + units: '%' + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 260166 + shortname: sldp + longname: Supercooled large droplet probability + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260167 + shortname: var190m0 + longname: Arbitrary text string + units: CCITTIA5 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260168 + shortname: tsec + longname: Seconds prior to initial reference time (defined in Section 1) + units: s + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260169 + shortname: ffldg + longname: Flash flood guidance + units: kg m**-2 + description: Encoded as an accumulation over a floating subinterval of time between + the reference time and valid time. + access_ids: [] + origin_ids: + - 0 +- id: 260170 + shortname: ffldro + longname: Flash flood runoff (Encoded as an accumulation over a floating subinterval + of time) + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260171 + shortname: rssc + longname: Remotely sensed snow cover + units: (Code table 4.215) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260172 + shortname: esct + longname: Elevation of snow covered terrain + units: (Code table 4.216) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260173 + shortname: swepon + longname: Snow water equivalent percent of normal + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260174 + shortname: bgrun + longname: Baseflow-groundwater runoff + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260175 + shortname: ssrun + longname: Storm surface runoff + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260176 + shortname: cppop + longname: Conditional percent precipitation amount fractile for an overall period + (Encoded as an accumulation) + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260177 + shortname: pposp + longname: Percent precipitation in a sub-period of an overall period + units: '%' + description: Encoded as per cent accumulation over the sub-period. + access_ids: [] + origin_ids: + - 0 +- id: 260178 + shortname: pop + longname: Probability of 0.01 inch of precipitation (POP) + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260180 + shortname: veg + longname: Vegetation + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260181 + shortname: watr + longname: Water runoff + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260182 + shortname: evapt + longname: Evapotranspiration + units: kg**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260183 + shortname: mterh + longname: Model terrain height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260184 + shortname: landu + longname: Land use + units: (Code table 4.212) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260185 + shortname: soilw + longname: Volumetric soil moisture content + units: Proportion + description: [DEPRECATED - Please use paramId 260199 instead] + access_ids: [] + origin_ids: + - 7 +- id: 260186 + shortname: gflux + longname: Ground heat flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 7 + - 34 +- id: 260187 + shortname: mstav + longname: Moisture availability + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260188 + shortname: sfexc + longname: Exchange coefficient + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260189 + shortname: cnwat + longname: Plant canopy surface water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260190 + shortname: bmixl + longname: Blackadar mixing length scale + units: m + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260191 + shortname: ccond + longname: Canopy conductance + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260192 + shortname: rsmin + longname: Minimal stomatal resistance + units: s m**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260193 + shortname: rcs + longname: Solar parameter in canopy conductance + units: Proportion + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260194 + shortname: rct + longname: Temperature parameter in canopy conductance + units: Proportion + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260195 + shortname: rcsol + longname: Soil moisture parameter in canopy conductance + units: Proportion + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260196 + shortname: rcq + longname: Humidity parameter in canopy conductance + units: Proportion + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260197 + shortname: cisoilw + longname: Column-integrated soil water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260198 + shortname: hflux + longname: Heat flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260199 + shortname: vsw + longname: Volumetric soil moisture + units: m**3 m**-3 + description:

Please note that the encoding listed here for uerra (which includes + carra/cerra) includes entries for Time-mean volumetric soil moisture. The specific + encoding for Time-mean volumetric soil moisture can be found in 235077.

+ access_ids: + - dissemination + origin_ids: + - -20 + - 0 +- id: 260200 + shortname: vwiltm + longname: Volumetric wilting point + units: m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260205 + shortname: soill + longname: Liquid volumetric soil moisture (non-frozen) + units: Proportion + description: [DEPRECATED - Please use paramId 260210 instead] + access_ids: [] + origin_ids: + - 7 +- id: 260206 + shortname: rlyrs + longname: Number of soil layers in root zone + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260207 + shortname: smref + longname: Transpiration stress-onset (soil moisture) + units: Proportion + description: [DEPRECATED - Please use paramId 260212 instead] + access_ids: [] + origin_ids: + - 7 +- id: 260208 + shortname: smdry + longname: Direct evaporation cease (soil moisture) + units: Proportion + description: [DEPRECATED - Please use paramId 260214 instead] + access_ids: [] + origin_ids: + - 7 +- id: 260209 + shortname: poros + longname: Soil porosity + units: Proportion + description: [DEPRECATED - Please use paramId 260215 instead] + access_ids: [] + origin_ids: + - 7 +- id: 260210 + shortname: liqvsm + longname: Liquid volumetric soil moisture (non-frozen) + units: m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260211 + shortname: voltso + longname: Volumetric transpiration stress-onset (soil moisture) + units: m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260212 + shortname: transo + longname: Transpiration stress-onset (soil moisture) + units: kg m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260213 + shortname: voldec + longname: Volumetric direct evaporation cease (soil moisture) + units: m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260214 + shortname: direc + longname: Direct evaporation cease (soil moisture) + units: kg m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260215 + shortname: soilp + longname: Soil porosity + units: m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260216 + shortname: vsosm + longname: Volumetric saturation of soil moisture + units: m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260217 + shortname: satosm + longname: Saturation of soil moisture + units: kg m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260218 + shortname: estp + longname: Estimated precipitation + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260219 + shortname: irrate + longname: Instantaneous rain rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260220 + shortname: ctoph + longname: Cloud top height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260221 + shortname: ctophqi + longname: Cloud top height quality indicator + units: (Code table 4.219) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260222 + shortname: estu + longname: Estimated u component of wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260223 + shortname: estv + longname: Estimated v component of wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260224 + shortname: npixu + longname: Number of pixels used + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260225 + shortname: solza + longname: Solar zenith angle + units: Degree + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260226 + shortname: raza + longname: Relative azimuth angle + units: Degree + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260227 + shortname: rfl06 + longname: Reflectance in 0.6 micron channel + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260228 + shortname: rfl08 + longname: Reflectance in 0.8 micron channel + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260229 + shortname: rfl16 + longname: Reflectance in 1.6 micron channel + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260230 + shortname: rfl39 + longname: Reflectance in 3.9 micron channel + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260231 + shortname: atmdiv + longname: Atmospheric divergence + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260232 + shortname: wvdir + longname: Direction of wind waves + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260233 + shortname: dirpw + longname: Primary wave direction + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260234 + shortname: perpw + longname: Primary wave mean period + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260235 + shortname: persw + longname: Secondary wave mean period + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260236 + shortname: dirc + longname: Current direction + units: Degree true + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260237 + shortname: spc + longname: Current speed + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260238 + shortname: wz + longname: Geometric vertical velocity + units: m s**-1 + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 260241 + shortname: tsec + longname: Seconds prior to initial reference time (defined in Section 1) + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260242 + shortname: 2r + longname: 2 metre relative humidity + units: '%' + description: 'The ratio of the partial pressure of water vapour to the equilibrium + vapour pressure of water at the same temperature near the surface. + +
Note that the specific height level above ground might vary from one centre + to another.' + access_ids: + - dissemination + origin_ids: + - -20 + - 0 + - 34 +- id: 260243 + shortname: ttrad + longname: Temperature tendency by all radiation + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260244 + shortname: rev + longname: Relative Error Variance + units: '~' + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260245 + shortname: lrghr + longname: Large Scale Condensate Heating rate + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260246 + shortname: cnvhr + longname: Deep Convective Heating rate + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260247 + shortname: thflx + longname: Total Downward Heat Flux at Surface + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260248 + shortname: ttdia + longname: Temperature Tendency By All Physics + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260249 + shortname: ttphy + longname: Temperature Tendency By Non-radiation Physics + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260250 + shortname: tsd1d + longname: Standard Dev. of IR Temp. over 1x1 deg. area + units: K + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260251 + shortname: shahr + longname: Shallow Convective Heating rate + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260252 + shortname: vdfhr + longname: Vertical Diffusion Heating rate + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260253 + shortname: thz0 + longname: Potential temperature at top of viscous sublayer + units: K + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260254 + shortname: tchp + longname: Tropical Cyclone Heat Potential + units: J m**-2 K**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260255 + shortname: aptmp + longname: Apparent temperature + units: K + description: Apparent temperature is the perceived outdoor temperature, caused by + a combination of phenomena, such as air temperature, relative humidity and wind + speed + access_ids: + - dissemination + origin_ids: + - 0 +- id: 260256 + shortname: hindex + longname: Haines Index + units: Numeric + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 260257 + shortname: ccl + longname: Cloud cover + units: '%' + description: Percentage of the sky hidden by all visible clouds on a model level + access_ids: [] + origin_ids: + - 0 +- id: 260259 + shortname: eva + longname: Evaporation + units: kg m**-2 + description: 'Moisture flux from the surface into the atmosphere. Accumulated. + +
[NOTE: See 182 for the equivalent parameter in "m of water equivalent"]' + access_ids: [] + origin_ids: + - -20 + - 0 +- id: 260260 + shortname: 10wdir + longname: 10 metre wind direction + units: Degree true + description: Wind direction at a height of 10m. + access_ids: [] + origin_ids: + - -20 + - 0 +- id: 260261 + shortname: minrh + longname: Minimum Relative Humidity + units: '%' + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260262 + shortname: sdirswrf + longname: Surface direct short-wave radiation flux + units: W m**-2 + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 260263 + shortname: sdifswrf + longname: Surface diffuse short-wave radiation flux + units: W m**-2 + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 260264 + shortname: tidirswrf + longname: Time-integrated surface direct short wave radiation flux + units: J m**-2 + description: 'Direct solar (short-wave) radiation at the surface.
+ + Accumulated (from the beginning of the forecast)
+ + The flux sign convention is positive downwards.' + access_ids: [] + origin_ids: + - -20 +- id: 260267 + shortname: tp06 + longname: Total precipitation in the last 6 hours + units: kg m**-2 + description: Convective precipitation + stratiform precipitation (CP + LSP). Accumulated + field + access_ids: [] + origin_ids: + - -10 +- id: 260268 + shortname: tp24 + longname: Total precipitation in the last 24 hours + units: kg m**-2 + description: Convective precipitation + stratiform precipitation (CP + LSP). Accumulated + field + access_ids: [] + origin_ids: + - -10 +- id: 260269 + shortname: tipd + longname: Total Icing Potential Diagnostic + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260270 + shortname: ncip + longname: Number concentration for ice particles + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260271 + shortname: snot + longname: Snow temperature + units: K + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260272 + shortname: tclsw + longname: Total column-integrated supercooled liquid water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260273 + shortname: tcolm + longname: Total column-integrated melting ice + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260274 + shortname: emnp + longname: Evaporation - Precipitation + units: cm per day + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260275 + shortname: sbsno + longname: Sublimation (evaporation from snow) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260276 + shortname: cnvmr + longname: Deep Convective Moistening Rate + units: kg (kg s**-1)**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260277 + shortname: shamr + longname: Shallow Convective Moistening Rate + units: kg (kg s**-1)**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260278 + shortname: vdfmr + longname: Vertical Diffusion Moistening Rate + units: kg (kg s**-1)**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260279 + shortname: condp + longname: Condensation Pressure of Parcali Lifted From Indicate Surface + units: Pa + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260280 + shortname: lrgmr + longname: Large scale moistening rate + units: kg (kg s**-1)**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260281 + shortname: qz0 + longname: Specific humidity at top of viscous sublayer + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260282 + shortname: qmax + longname: Maximum specific humidity at 2m + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260283 + shortname: qmin + longname: Minimum specific humidity at 2m + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260284 + shortname: arain + longname: Liquid precipitation (rainfall) + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260285 + shortname: snowt + longname: Snow temperature, depth-avg + units: K + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260286 + shortname: apcpn + longname: Total precipitation (nearest grid point) + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260287 + shortname: acpcpn + longname: Convective precipitation (nearest grid point) + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260288 + shortname: frzr + longname: Freezing Rain + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260289 + shortname: fscov + longname: Fraction of snow cover + units: Proportion + description: Fraction (0-1) of the cell/grid-box occupied by snow. + access_ids: + - dissemination + origin_ids: + - -20 + - 0 +- id: 260290 + shortname: cat + longname: Clear air turbulence (CAT) + units: m**2/3 s**-1 + description: Clear air turbulence diagnostic as derived from three-dimensional wind + and temperature gradients with statistical projection on a turbulent eddy dissipation. + CAT is proportional to the cube root of the eddy dissipation rate. + access_ids: + - dissemination + origin_ids: + - 0 +- id: 260291 + shortname: mwt + longname: Mountain wave turbulence (eddy dissipation rate) + units: m**2/3 s**-1 + description: Mountain wave turbulence diagnostic derived as CAT but also taking + into account near surface wind speed and orography. This parameter is proportional + to the cube root of the eddy dissipation rate. + access_ids: [] + origin_ids: + - 0 +- id: 260292 + shortname: crwc_conv + longname: Specific rain water content (convective) + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 260293 + shortname: cswc_conv + longname: Specific snow water content (convective) + units: kg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 260294 + shortname: glm + longname: Glacier mask + units: Proportion + description: 'This parameter is the proportion of glacier in a grid box. + + It has values ranging between zero and one and is dimensionless. + + Grid boxes in the ECMWF Integrated Forecast System with a value strictly above + 0.5 are treated as glacier. Those with a value equal or below 0.5 are treated + as land point without glacier.' + access_ids: [] + origin_ids: + - 0 +- id: 260295 + shortname: lauv + longname: Latitude of U Wind Component of Velocity + units: deg + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260296 + shortname: louv + longname: Longitude of U Wind Component of Velocity + units: deg + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260297 + shortname: lavv + longname: Latitude of V Wind Component of Velocity + units: deg + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260298 + shortname: lovv + longname: Longitude of V Wind Component of Velocity + units: deg + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260299 + shortname: lapp + longname: Latitude of Pressure Point + units: deg + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260300 + shortname: lopp + longname: Longitude of Pressure Point + units: deg + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260301 + shortname: vedh + longname: Vertical Eddy Diffusivity Heat exchange + units: m**2 s**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260302 + shortname: covmz + longname: Covariance between Meridional and Zonal Components of the wind. + units: m**2 s**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260303 + shortname: covtz + longname: Covariance between Temperature and Zonal Components of the wind. + units: K m s**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260304 + shortname: covtm + longname: Covariance between Temperature and Meridional Components of the wind. + units: K m s**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260305 + shortname: vdfua + longname: Vertical Diffusion Zonal Acceleration + units: m s**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260306 + shortname: vdfva + longname: Vertical Diffusion Meridional Acceleration + units: m s**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260307 + shortname: gwdu + longname: Gravity wave drag zonal acceleration + units: m s**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260308 + shortname: gwdv + longname: Gravity wave drag meridional acceleration + units: m s**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260309 + shortname: cnvu + longname: Convective zonal momentum mixing acceleration + units: m s**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260310 + shortname: cnvv + longname: Convective meridional momentum mixing acceleration + units: m s**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260311 + shortname: wtend + longname: Tendency of vertical velocity + units: m s**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260312 + shortname: omgalf + longname: Omega (Dp/Dt) divide by density + units: K + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260313 + shortname: cngwdu + longname: Convective Gravity wave drag zonal acceleration + units: m s**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260314 + shortname: cngwdv + longname: Convective Gravity wave drag meridional acceleration + units: m s**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260315 + shortname: lmv + longname: Velocity Point Model Surface + units: '~' + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260316 + shortname: pvmww + longname: Potential Vorticity (Mass-Weighted) + units: (s m**-1)**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260317 + shortname: mslet + longname: MSLP (Eta model reduction) + units: Pa + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260318 + shortname: ptype_sev1h + longname: Precipitation type (most severe) in the last 1 hour + units: (Code table 4.201) + description: '' + access_ids: + - dissemination + origin_ids: + - 0 +- id: 260319 + shortname: ptype_sev3h + longname: Precipitation type (most severe) in the last 3 hours + units: (Code table 4.201) + description: '' + access_ids: + - dissemination + origin_ids: + - 0 +- id: 260320 + shortname: ptype_freq1h + longname: Precipitation type (most frequent) in the last 1 hour + units: (Code table 4.201) + description: '' + access_ids: + - dissemination + origin_ids: + - 0 +- id: 260321 + shortname: ptype_freq3h + longname: Precipitation type (most frequent) in the last 3 hours + units: (Code table 4.201) + description: '' + access_ids: + - dissemination + origin_ids: + - 0 +- id: 260323 + shortname: mslma + longname: MSLP (MAPS System Reduction) + units: Pa + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260324 + shortname: tslsa + longname: 3-hr pressure tendency (Std. Atmos. Reduction) + units: Pa s**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260325 + shortname: plpl + longname: Pressure of level from which parcel was lifted + units: Pa + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260326 + shortname: lpsx + longname: X-gradient of Log Pressure + units: m**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260327 + shortname: lpsy + longname: Y-gradient of Log Pressure + units: m**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260328 + shortname: hgtx + longname: X-gradient of Height + units: m**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260329 + shortname: hgty + longname: Y-gradient of Height + units: m**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260330 + shortname: layth + longname: Layer Thickness + units: m + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260331 + shortname: nlgsp + longname: Natural Log of Surface Pressure + units: ln(kPa) + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260332 + shortname: cnvumf + longname: Convective updraft mass flux + units: kg (m**2 s-1)**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260333 + shortname: cnvdmf + longname: Convective downdraft mass flux + units: kg (m**2 s-1)**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260334 + shortname: cnvdemf + longname: Convective detrainment mass flux + units: kg (m**2 s-1)**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260335 + shortname: lmh + longname: Mass Point Model Surface + units: '~' + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260336 + shortname: hgtn + longname: Geopotential Height (nearest grid point) + units: gpm + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260337 + shortname: presn + longname: Pressure (nearest grid point) + units: Pa + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260338 + shortname: ptype_sev6h + longname: Precipitation type (most severe) in the last 6 hours + units: (Code table 4.201) + description: '' + access_ids: + - dissemination + origin_ids: + - 0 +- id: 260339 + shortname: ptype_freq6h + longname: Precipitation type (most frequent) in the last 6 hours + units: (Code table 4.201) + description: '' + access_ids: + - dissemination + origin_ids: + - 0 +- id: 260340 + shortname: duvb + longname: UV-B downward solar flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260341 + shortname: cduvb + longname: Clear sky UV-B downward solar flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260342 + shortname: csdsf + longname: Clear Sky Downward Solar Flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 7 + - 34 +- id: 260343 + shortname: swhr + longname: Solar Radiative Heating Rate + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260344 + shortname: csusf + longname: Clear Sky Upward Solar Flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 7 + - 34 +- id: 260345 + shortname: cfnsf + longname: Cloud Forcing Net Solar Flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260346 + shortname: vbdsf + longname: Visible Beam Downward Solar Flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260347 + shortname: vddsf + longname: Visible Diffuse Downward Solar Flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260348 + shortname: nbdsf + longname: Near IR Beam Downward Solar Flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260349 + shortname: nddsf + longname: Near IR Diffuse Downward Solar Flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260350 + shortname: dtrf + longname: Downward Total radiation Flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260351 + shortname: utrf + longname: Upward Total radiation Flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260354 + shortname: lwhr + longname: Long-Wave Radiative Heating Rate + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260355 + shortname: csulf + longname: Clear Sky Upward Long Wave Flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 7 + - 34 +- id: 260356 + shortname: csdlf + longname: Clear Sky Downward Long Wave Flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 7 + - 34 +- id: 260357 + shortname: cfnlf + longname: Cloud Forcing Net Long Wave Flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260360 + shortname: sot + longname: Soil temperature + units: K + description: '' + access_ids: + - dissemination + origin_ids: + - 0 +- id: 260361 + shortname: sdswrfcs + longname: Surface downward short-wave radiation flux, clear sky + units: W m**-2 + description:

Downward short-wave radiation flux computed under actual atmospheric + conditions but assuming zero cloudiness

+ access_ids: [] + origin_ids: + - 0 +- id: 260362 + shortname: suswrfcs + longname: Surface upward short-wave radiation flux, clear sky + units: W m**-2 + description:

Upward short-wave radiation flux computed under actual atmospheric + conditions but assuming zero cloudiness.

+ access_ids: [] + origin_ids: + - 0 +- id: 260363 + shortname: sdlwrfcs + longname: Surface downward long-wave radiation flux, clear sky + units: W m**-2 + description:

Downward long-wave radiation flux computed under actual atmospheric + conditions but assuming zero cloudiness

+ access_ids: [] + origin_ids: + - 0 +- id: 260364 + shortname: sohf + longname: Soil heat flux + units: W m**-2 + description: 'The soil heat flux is the energy receive by the soil to heat it per + unit of surface and time.
+ + The Soil heat flux is positive when the soil receives energy (warms) and negative + when the soil loses energy (cools).' + access_ids: [] + origin_ids: + - 0 +- id: 260365 + shortname: percr + longname: Percolation rate + units: kg m**-2 s**-1 + description: 'The percolation is the downward movement of water under hydrostatic + pressure in the saturated zone.
+ + This water might still end up in rivers and lakes as discharge but it is a slower + process than water runoff or drainage.
+ + Such defined percolation is an input for hydrological models together with e.g. + water runoff.' + access_ids: [] + origin_ids: + - 0 +- id: 260366 + shortname: mflux + longname: Convective Cloud Mass Flux + units: Pa s**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260367 + shortname: sod + longname: Soil depth + units: m + description: Soil depth, positive downward. It is meant to be used together with + the type of level "soil level" to encode the depth of the level at each grid point. + access_ids: [] + origin_ids: + - 0 +- id: 260368 + shortname: som + longname: Soil moisture + units: kg m**-3 + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 260369 + shortname: ri + longname: Richardson Number + units: Numeric + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260370 + shortname: cwdi + longname: Convective Weather Detection Index + units: '~' + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260372 + shortname: uphl + longname: Updraft Helicity + units: m**2 s**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260373 + shortname: lai + longname: Leaf Area Index + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 + - 7 +- id: 260374 + shortname: pmtc + longname: Particulate matter (coarse) + units: (10**-6 g) m**-3 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260375 + shortname: pmtf + longname: Particulate matter (fine) + units: (10**-6 g) m**-3 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260376 + shortname: lpmtf + longname: Particulate matter (fine) + units: log10((10**-6g) m**-3) + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260377 + shortname: lipmf + longname: Integrated column particulate matter (fine) + units: log10((10**-6g) m**-3) + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260379 + shortname: ozcon + longname: Ozone Concentration (PPB) + units: ppb + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260380 + shortname: ozcat + longname: Categorical Ozone Concentration + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260381 + shortname: vdfoz + longname: Ozone vertical diffusion + units: kg (kg s**-1)**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260382 + shortname: poz + longname: Ozone production + units: kg (kg s**-1)**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260383 + shortname: toz + longname: Ozone tendency + units: kg (kg s**-1)**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260384 + shortname: pozt + longname: Ozone production from temperature term + units: kg (kg s**-1)**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260385 + shortname: pozo + longname: Ozone production from col ozone term + units: kg (kg s**-1)**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260386 + shortname: refzr + longname: Derived radar reflectivity backscatter from rain + units: mm**6 m**-3 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260387 + shortname: refzi + longname: Derived radar reflectivity backscatter from ice + units: mm**6 m**-3 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260388 + shortname: refzc + longname: Derived radar reflectivity backscatter from parameterized convection + units: mm**6 m**-3 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260389 + shortname: refd + longname: Derived radar reflectivity + units: dB + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260390 + shortname: refc + longname: Maximum/Composite radar reflectivity + units: dB + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260391 + shortname: ltng + longname: Lightning + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260394 + shortname: srcono + longname: Slight risk convective outlook + units: categorical + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260395 + shortname: mrcono + longname: Moderate risk convective outlook + units: categorical + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260396 + shortname: hrcono + longname: High risk convective outlook + units: categorical + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260397 + shortname: torprob + longname: Tornado probability + units: '%' + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260398 + shortname: hailprob + longname: Hail probability + units: '%' + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260399 + shortname: windprob + longname: Wind probability + units: '%' + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260400 + shortname: storprob + longname: Significant Tornado probability + units: '%' + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260401 + shortname: shailpro + longname: Significant Hail probability + units: '%' + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260402 + shortname: swindpro + longname: Significant Wind probability + units: '%' + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260403 + shortname: tstmc + longname: Categorical Thunderstorm (1-yes, 0-no) + units: categorical + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260404 + shortname: mixly + longname: Number of mixed layers next to surface + units: Integer + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260405 + shortname: flght + longname: Flight Category + units: '~' + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260406 + shortname: cicel + longname: Confidence - Ceiling + units: '~' + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260407 + shortname: civis + longname: Confidence - Visibility + units: '~' + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260408 + shortname: ciflt + longname: Confidence - Flight Category + units: '~' + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260409 + shortname: lavni + longname: Low-Level aviation interest + units: '~' + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260410 + shortname: havni + longname: High-Level aviation interest + units: '~' + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260411 + shortname: sbsalb + longname: Visible, Black Sky Albedo + units: '%' + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260412 + shortname: swsalb + longname: Visible, White Sky Albedo + units: '%' + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260413 + shortname: nbsalb + longname: Near IR, Black Sky Albedo + units: '%' + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260414 + shortname: nwsalb + longname: Near IR, White Sky Albedo + units: '%' + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260415 + shortname: prsvr + longname: Total Probability of Severe Thunderstorms (Days 2,3) + units: '%' + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260416 + shortname: prsigsvr + longname: Total Probability of Extreme Severe Thunderstorms (Days 2,3) + units: '%' + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260417 + shortname: sipd + longname: Supercooled Large Droplet (SLD) Potential + units: '~' + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260418 + shortname: epsr + longname: Radiative emissivity + units: '~' + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260419 + shortname: tpfi + longname: Turbulence Potential Forecast Index + units: '~' + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260420 + shortname: vaftd + longname: Volcanic Ash Forecast Transport and Dispersion + units: log10(kg m**-3) + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260421 + shortname: nlat + longname: Latitude (-90 to +90) + units: deg + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260422 + shortname: elon + longname: East Longitude (0 - 360) + units: deg + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260423 + shortname: adswrf_cs + longname: Accumulated surface downward short-wave radiation flux, clear sky + units: J m**-2 + description: '' + access_ids: [] + origin_ids: + - -20 +- id: 260424 + shortname: mlyno + longname: Model Layer number (From bottom up) + units: '~' + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260425 + shortname: nlatn + longname: Latitude (nearest neighbor) (-90 to +90) + units: deg + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260426 + shortname: elonn + longname: East Longitude (nearest neighbor) (0 - 360) + units: deg + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260427 + shortname: auswrf_cs + longname: Accumulated surface upward short-wave radiation flux, clear sky + units: J m**-2 + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 260428 + shortname: adlwrf_cs + longname: Accumulated surface downward long-wave radiation flux, clear sky + units: J m**-2 + description: '' + access_ids: [] + origin_ids: + - -20 +- id: 260429 + shortname: cpozp + longname: Probability of Freezing Precipitation + units: '%' + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260430 + shortname: perc + longname: Percolation + units: kg m**-2 + description: Accumulated version of 'Percolation rate' + access_ids: [] + origin_ids: + - 0 +- id: 260431 + shortname: ppffg + longname: Probability of precipitation exceeding flash flood guidance values + units: '%' + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260432 + shortname: cwr + longname: Probability of Wetting Rain, exceeding in 0.10 in a given time period + units: '%' + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260433 + shortname: etr + longname: Evapotranspiration rate + units: kg m**-2 s**-1 + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 260436 + shortname: petr + longname: Potential evapotranspiration rate + units: kg m**-2 s**-1 + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 260439 + shortname: vgtyp + longname: Vegetation Type + units: Integer(0-13) + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260442 + shortname: wilt + longname: Wilting Point + units: Fraction + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260443 + shortname: rorwe + longname: Runoff rate water equivalent (surface plus subsurface) + units: kg m**-2 s**-1 + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 260447 + shortname: rdrip + longname: Rate of water dropping from canopy to ground + units: '~' + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260448 + shortname: icwat + longname: Ice-free water surface + units: '%' + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260449 + shortname: akhs + longname: Surface exchange coefficients for T and Q divided by delta z + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260450 + shortname: akms + longname: Surface exchange coefficients for U and V divided by delta z + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260451 + shortname: vegt + longname: Vegetation canopy temperature + units: K + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260452 + shortname: sstor + longname: Surface water storage + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260453 + shortname: lsoil + longname: Liquid soil moisture content (non-frozen) + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260454 + shortname: ewatr + longname: Open water evaporation (standing water) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260455 + shortname: gwrec + longname: Groundwater recharge + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260456 + shortname: qrec + longname: Flood plain recharge + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260457 + shortname: sfcrh + longname: Roughness length for heat + units: m + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260458 + shortname: ndvi + longname: Normalized Difference Vegetation Index + units: '~' + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260459 + shortname: landn + longname: Land-sea coverage (nearest neighbor) [land=1,sea=0] + units: '~' + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260460 + shortname: amixl + longname: Asymptotic mixing length scale + units: m + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260461 + shortname: wvinc + longname: Water vapor added by precip assimilation + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260462 + shortname: wcinc + longname: Water condensate added by precip assimilation + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260463 + shortname: wvconv + longname: Water Vapor Flux Convergence (Vertical Int) + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260464 + shortname: wcconv + longname: Water Condensate Flux Convergence (Vertical Int) + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260465 + shortname: wvuflx + longname: Water Vapor Zonal Flux (Vertical Int) + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260466 + shortname: wvvflx + longname: Water Vapor Meridional Flux (Vertical Int) + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260467 + shortname: wcuflx + longname: Water Condensate Zonal Flux (Vertical Int) + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260468 + shortname: wcvflx + longname: Water Condensate Meridional Flux (Vertical Int) + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260469 + shortname: acond + longname: Aerodynamic conductance + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260470 + shortname: evcw + longname: Canopy water evaporation + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260471 + shortname: trans + longname: Transpiration + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260474 + shortname: sltyp + longname: Surface Slope Type + units: Index + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260475 + shortname: smr + longname: Snow melt rate + units: kg m**-2 s**-1 + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 260478 + shortname: evbs + longname: Direct evaporation from bare soil + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260479 + shortname: lspa + longname: Land Surface Precipitation Accumulation + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260480 + shortname: baret + longname: Bare soil surface skin temperature + units: K + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260481 + shortname: avsft + longname: Average surface skin temperature + units: K + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260482 + shortname: radt + longname: Effective radiative skin temperature + units: K + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260483 + shortname: fldcp + longname: Field Capacity + units: Fraction + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260484 + shortname: usct + longname: Scatterometer Estimated U Wind Component + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260485 + shortname: vsct + longname: Scatterometer Estimated V Wind Component + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260486 + shortname: wstp + longname: Wave Steepness + units: '~' + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260487 + shortname: omlu + longname: Ocean Mixed Layer U Velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260488 + shortname: omlv + longname: Ocean Mixed Layer V Velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260489 + shortname: ubaro + longname: Barotropic U velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260490 + shortname: vbaro + longname: Barotropic V velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260491 + shortname: surge + longname: Storm Surge + units: m + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260492 + shortname: etsrg + longname: Extra Tropical Storm Surge + units: m + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260493 + shortname: elevhtml + longname: Ocean Surface Elevation Relative to Geoid + units: m + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260494 + shortname: sshg + longname: Sea Surface Height Relative to Geoid + units: m + description: null + access_ids: [] + origin_ids: + - 7 +- id: 260495 + shortname: p2omlt + longname: Ocean Mixed Layer Potential Density (Reference 2000m)
\r\nInformation on how the Fine Fuel Moisture code is calculated\ + \ is given in: Development and structure of the Canadian Forest Fire Weather Index\ + \ System. 1987. Van Wagner, C.E. Canadian Forestry Service, Headquarters, Ottawa.\ + \ Forestry Technical Report 35. 35 p." + access_ids: [] + origin_ids: + - 0 +- id: 260542 + shortname: dufmcode + longname: Duff moisture code (as defined by the Canadian Forest Service) + units: Numeric + description: "Numerical rating of the moisture content of loosely compacted organic\ + \ fuel layers of moderate depth.
\r\nInformation on how the Duff Moisture Code\ + \ is calculated is given in: Development and structure of the Canadian Forest\ + \ Fire Weather Index System. 1987. Van Wagner, C.E. Canadian Forestry Service,\ + \ Headquarters, Ottawa. Forestry Technical Report 35. 35 p." + access_ids: [] + origin_ids: + - 0 +- id: 260543 + shortname: drtcode + longname: Drought code (as defined by the Canadian Forest Service) + units: Numeric + description: "Numerical rating of the moisture content of deep, compact organic\ + \ fuel layers.
\r\nInformation on how the Drought Code is calculated is given\ + \ in: Development and structure of the Canadian Forest Fire Weather Index System.\ + \ 1987. Van Wagner, C.E. Canadian Forestry Service, Headquarters, Ottawa. Forestry\ + \ Technical Report 35. 35 p." + access_ids: [] + origin_ids: + - 0 +- id: 260544 + shortname: infsinx + longname: Initial fire spread index (as defined by the Canadian Forest Service) + units: Numeric + description: "Numerical rating of the expected rate of fire spread.
\r\nInformation\ + \ on how the Initial fire spread index is calculated is given in: Development\ + \ and structure of the Canadian Forest Fire Weather Index System. 1987. Van Wagner,\ + \ C.E. Canadian Forestry Service, Headquarters, Ottawa. Forestry Technical Report\ + \ 35. 35 p." + access_ids: [] + origin_ids: + - 0 +- id: 260545 + shortname: fbupinx + longname: Fire buildup index (as defined by the Canadian Forest Service) + units: Numeric + description: "Numerical rating of the total amount of fuel available for combustion.
\r\ + \nInformation on how the fire build-up index is calculated is given in: Development\ + \ and structure of the Canadian Forest Fire Weather Index System. 1987. Van Wagner,\ + \ C.E. Canadian Forestry Service, Headquarters, Ottawa. Forestry Technical Report\ + \ 35. 35 p." + access_ids: [] + origin_ids: + - 0 +- id: 260546 + shortname: fdsrte + longname: Fire daily severity rating (as defined by the Canadian Forest Service) + units: Numeric + description: "Numeric rating of the difficulty of controlling fires. It is based\ + \ on the Fire Weather Index but more accurately reflects the expected efforts\ + \ required for fire suppression.
\r\nInformation on how the fire daily severity\ + \ rating is calculated is given in: Development and structure of the Canadian\ + \ Forest Fire Weather Index System. 1987. Van Wagner, C.E. Canadian Forestry Service,\ + \ Headquarters, Ottawa. Forestry Technical Report 35. 35 p." + access_ids: [] + origin_ids: + - 0 +- id: 260550 + shortname: '~' + longname: Cloudy radiance (with respect to wave number) + units: W m**-1 sr**-1 + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 260551 + shortname: '~' + longname: Clear-sky radiance (with respect to wave number) + units: W m**-1 sr**-1 + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 260552 + shortname: '~' + longname: Wind speed + units: m s**-1 + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 260553 + shortname: '~' + longname: Aerosol optical thickness at 0.635 um + units: dimensionless + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 260554 + shortname: '~' + longname: Aerosol optical thickness at 0.810 um + units: dimensionless + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 260555 + shortname: '~' + longname: Aerosol optical thickness at 1.640 um + units: dimensionless + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 260556 + shortname: '~' + longname: Angstrom coefficient + units: dimensionless + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 260557 + shortname: kbdi + longname: Keetch-Byram drought index + units: Numeric + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 260558 + shortname: drtmrk + longname: Drought factor (as defined by the Australian forest service) + units: Numeric + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 260559 + shortname: rosmrk + longname: Rate of spread (as defined by the Australian forest service) + units: m s**-1 + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 260560 + shortname: fdimrk + longname: Fire danger index (as defined by the Australian forest service) + units: Numeric + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 260561 + shortname: scnfdr + longname: Spread component (as defined by the U.S Forest Service National Fire-Danger + Rating System) + units: Numeric + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 260562 + shortname: buinfdr + longname: Burning index (as defined by the U.S Forest Service National Fire-Danger + Rating System) + units: Numeric + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 260563 + shortname: icnfdr + longname: Ignition component (as defined by the U.S Forest Service National Fire-Danger + Rating System) + units: '%' + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 260564 + shortname: ercnfdr + longname: Energy release component (as defined by the U.S Forest Service National + Fire-Danger Rating System) + units: J m**-2 + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 260565 + shortname: pof + longname: Probability of fire detection + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260566 + shortname: pil + longname: Probability of ignition from lightning + units: '%' + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260600 + shortname: evpsfc + longname: Mean evaporation + units: mm per day + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260601 + shortname: tpratsfc + longname: Mean total precipitation + units: mm per day + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260602 + shortname: lpratsfc + longname: Mean large scale precipitation + units: mm per day + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260603 + shortname: cpratsfc + longname: Mean convective precipitation + units: mm per day + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260604 + shortname: srweqsfc + longname: Mean snowfall rate water equivalent + units: mm per day + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260605 + shortname: rofsfc + longname: Mean surface water runoff + units: mm per day + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260606 + shortname: bvf2tht + longname: Square of Brunt-Vaisala frequency + units: s**-2 + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260607 + shortname: aduahbl + longname: Adiabatic zonal acceleration + units: m s**-1 per day + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260609 + shortname: advaprs + longname: Adiabatic meridional acceleration + units: m s**-1 per day + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260610 + shortname: frcvsfc + longname: Mean frequency of deep convection + units: '%' + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260611 + shortname: frcvssfc + longname: Mean frequency of shallow convection + units: '%' + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260612 + shortname: frscsfc + longname: Mean frequency of stratocumulus parameterisation + units: '%' + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260613 + shortname: gwduahbl + longname: Gravity wave zonal acceleration + units: m s**-1 per day + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260614 + shortname: gwdvahbl + longname: Gravity wave meridional acceleration + units: m s**-1 per day + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260615 + shortname: ltrssfc + longname: Mean evapotranspiration + units: W m**-2 + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260616 + shortname: adhrhbl + longname: Adiabatic heating rate + units: K per day + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260617 + shortname: mscsfc + longname: Moisture storage on canopy + units: m + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260618 + shortname: msgsfc + longname: Moisture storage on ground or cover + units: m + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260619 + shortname: smcugl + longname: Mass concentration of condensed water in soil + units: kg m**-3 + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260621 + shortname: mflxbhbl + longname: Upward mass flux at cloud base + units: kg m**-2 s**-1 + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260622 + shortname: mfluxhbl + longname: Upward mass flux + units: kg m**-2 s**-1 + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260623 + shortname: admrhbl + longname: Adiabatic moistening rate + units: kg kg**-1 per day + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260624 + shortname: ozonehbl + longname: Ozone mixing ratio + units: mg kg**-1 + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260625 + shortname: cnvuahbl + longname: Convective zonal acceleration + units: m s**-1 per day + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260626 + shortname: fglusfc + longname: Mean zonal momentum flux by long gravity wave + units: N m**-2 + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260627 + shortname: fglvsfc + longname: Mean meridional momentum flux by long gravity wave + units: N m**-2 + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260628 + shortname: fgsvsfc + longname: Mean meridional momentum flux by short gravity wave + units: N m**-2 + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260629 + shortname: fgsusfc + longname: Mean zonal momentum flux by short gravity wave + units: N m**-2 + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260632 + shortname: cnvvahbl + longname: Convective meridional acceleration + units: m s**-1 per day + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260633 + shortname: lrghrhbl + longname: Large scale condensation heating rate + units: K per day + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260634 + shortname: cnvhrhbl + longname: Convective heating rate + units: K per day + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260635 + shortname: cnvmrhbl + longname: Convective moistening rate + units: kg kg**-1 per day + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260636 + shortname: vdfhrhbl + longname: Vertical diffusion heating rate + units: K per day + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260637 + shortname: vdfuahbl + longname: Vertical diffusion zonal acceleration + units: m s**-1 per day + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260638 + shortname: vdfvahbl + longname: Vertical diffusion meridional acceleration + units: m s**-1 per day + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260639 + shortname: vdfmrhbl + longname: Vertical diffusion moistening rate + units: kg kg**-1 per day + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260640 + shortname: swhrhbl + longname: Solar radiative heating rate + units: K per day + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260641 + shortname: lwhrhbl + longname: Long wave radiative heating rate + units: K per day + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260642 + shortname: lrgmrhbl + longname: Large scale moistening rate + units: kg kg**-1 per day + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260643 + shortname: tovg + longname: Type of vegetation + units: (Code table JMA-252) + description: '' + access_ids: [] + origin_ids: + - 34 +- id: 260644 + shortname: vsi + longname: Volumetric soil ice + units: m**3 m**-3 + description: This parameter is the water equivalent of volumetric soil ice content. + It is the volume that the liquid water would have if the ice melted. + access_ids: [] + origin_ids: + - 0 +- id: 260645 + shortname: titspf + longname: Time integral of total solid precipitation flux + units: kg m**-2 + description: "This parameter is the accumulated sum of all types of solid water,\ + \ e.g. graupel, snow and hail that falls to the Earth's surface. It is the sum\ + \ of large-scale solid precipitation and convective solid precipitation.\r\n\r\ + \nIn the ECMWF Integrated Forecasting System (IFS), large-scale solid precipitation\ + \ is generated by the prognostic cloud scheme. Convective solid precipitation\ + \ is generated by the convection scheme in the IFS, which represents convection\ + \ at spatial scales smaller than the grid box.See further information. This parameter does not include precipitation that\ + \ evaporates in the atmosphere before it lands at the surface of the Earth.\r\n\ + \r\nThis parameter is the total amount of solid precipitation accumulated over a particular time period which depends on the data extracted.\r\ + \n\r\nCare should be taken when comparing model parameters with observations,\ + \ because observations are often local to a particular point in space and time,\ + \ rather than representing averages over a model grid box." + access_ids: [] + origin_ids: + - 0 +- id: 260646 + shortname: 10efg + longname: 10 metre eastward wind gust since previous post-processing + units: m s**-1 + description: 'This parameter is the eastward component of the maximum wind gust + since the previous post-processing step at a height of ten metres above the surface + of the Earth.
+ + The WMO defines a wind gust as the maximum of the wind averaged over 3 second + intervals. This duration is shorter than a model + time step, and so the ECMWF Integrated Forecasting System deduces the magnitude + of a gust within each time step from the time-step-averaged surface stress, surface + friction, wind shear and stability. Then, the maximum wind gust is selected from + the gusts at each time step since the previous post-processing time.
+ + Care should be taken when comparing model parameters with observations, because + observations are often local to a particular point in space and time, rather than + representing averages over a model + grid box and model time step.' + access_ids: [] + origin_ids: + - 0 +- id: 260647 + shortname: 10nfg + longname: 10 metre northward wind gust since previous post-processing + units: m s**-1 + description: 'This parameter is the northward component of the maximum wind gust + since the previous post-processing step at a height of ten metres above the surface + of the Earth.
+ + The WMO defines a wind gust as the maximum of the wind averaged over 3 second + intervals. This duration is shorter than a model + time step, and so the ECMWF Integrated Forecasting System deduces the magnitude + of a gust within each time step from the time-step-averaged surface stress, surface + friction, wind shear and stability. Then, the maximum wind gust is selected from + the gusts at each time step since the previous post-processing time.
+ + Care should be taken when comparing model parameters with observations, because + observations are often local to a particular point in space and time, rather than + representing averages over a model + grid box and model time step.' + access_ids: [] + origin_ids: + - 0 +- id: 260648 + shortname: fog + longname: Fog + units: '%' + description: This parameter is defined as cloud cover in the lowest model level. + access_ids: [] + origin_ids: + - 0 +- id: 260649 + shortname: sist + longname: Sea ice surface temperature + units: K + description: This parameter is the temperature of sea ice near the surface. + access_ids: [] + origin_ids: + - -20 +- id: 260650 + shortname: sitd + longname: Snow on ice total depth + units: m + description: This parameter is snow on ice depth. + access_ids: [] + origin_ids: + - -20 +- id: 260651 + shortname: srlh + longname: Surface roughness length for heat + units: m + description: The surface roughness for heat is a measure of the surface resistance + to heat transfer. This parameter is used to determine the air to surface transfer + of heat. For given atmospheric conditions, a higher surface roughness for heat + means that it is more difficult for the air to exchange heat with the surface. + A lower surface roughness for heat that it is easier for the air to exchange heat + with the surface.
Over the ocean, surface roughness for heat depends on the + waves. Over sea-ice, it has a constant value of 0.001 m. Over the land, it is + derived from the vegetation type and snow cover. See + further information. + access_ids: [] + origin_ids: + - 98 +- id: 260652 + shortname: etssofd + longname: Time-integrated eastward turbulent surface stress due to orographic form + drag + units: N m**-2 s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260653 + shortname: ntssofd + longname: Time-integrated northward turbulent surface stress due to orographic form + drag + units: N m**-2 s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260654 + shortname: etsssr + longname: Time-integrated eastward turbulent surface stress due to surface roughness + units: N m**-2 s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260655 + shortname: ntsssr + longname: Time-integrated northward turbulent surface stress due to surface roughness + units: N m**-2 s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260656 + shortname: sqw + longname: Saturation specific humidity with respect to water + units: kg m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260657 + shortname: tcsqw + longname: Total column integrated saturation specific humidity with respect to water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260658 + shortname: spi + longname: Standardised Precipitation Index (SPI) + units: Numeric + description: The Standardised Precipitation Index (SPI) is a widely used index to + detect and characterise meteorological drought on a range of timescales (McKee + et al., 1993). + access_ids: [] + origin_ids: + - 0 +- id: 260659 + shortname: spei + longname: Standardised Precipitation Evapotranspiration Index (SPEI) + units: Numeric + description: The Standardised Precipitation Evapotranspiration Index (SPEI) is a + multiscalar drought index often used to detect and characterise drought conditions + (Vicente-Serrano et al., 2010). As an extension of the Standardised Precipitation + Index (SPI), the SPEI evaluates the climatic water balance at the land surface + and includes the effects of temperature in the drought assessment. + access_ids: [] + origin_ids: + - 0 +- id: 260660 + shortname: ssfi + longname: Standardised Streamflow Index (SSFI) + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260661 + shortname: srsi + longname: Standardised Reservoir Supply Index (SRSI) + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260662 + shortname: swi + longname: Standardised Water-level Index (SWI) + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260663 + shortname: smri + longname: Standardised Snowmelt and Rain Index (SMRI) + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260664 + shortname: sdi + longname: Streamflow Drought Index (SDI) + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260665 + shortname: vsw20 + longname: Volumetric soil moisture top 20 cm + units: m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260666 + shortname: vsw100 + longname: Volumetric soil moisture top 100 cm + units: m**3 m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260667 + shortname: parcsf + longname: Surface photosynthetically active radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260668 + shortname: sdirnswrf + longname: Surface direct normal short-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260669 + shortname: imagss + longname: Instantaneous magnitude of turbulent surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260670 + shortname: ibld + longname: Instantaneous boundary layer dissipation + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260671 + shortname: tnswrf + longname: Top net short-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260672 + shortname: tnlwrf + longname: Top net long-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260673 + shortname: igwd + longname: Instantaneous gravity wave dissipation + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260674 + shortname: tnswrfcs + longname: Top net short-wave radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260675 + shortname: tnlwrfcs + longname: Top net long-wave radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260676 + shortname: tdswrf + longname: Top downward short-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260677 + shortname: sdirswrfcs + longname: Surface direct short-wave radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260678 + shortname: ietssofd + longname: Instantaneous eastward turbulent surface stress due to orographic form + drag + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260679 + shortname: intssofd + longname: Instantaneous northward turbulent surface stress due to orographic form + drag + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260680 + shortname: ietsssr + longname: Instantaneous eastward turbulent surface stress due to surface roughness + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260681 + shortname: intsssr + longname: Instantaneous northward turbulent surface stress due to surface roughness + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260682 + shortname: sev_ptype + longname: Time-severity precipitation type + units: (Code table 4.201) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260683 + shortname: freq_ptype + longname: Time-mode precipitation type + units: (Code table 4.201) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260684 + shortname: lshnf + longname: Land surface heat net flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260685 + shortname: sdirnswrfcs + longname: Surface direct normal short-wave radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260686 + shortname: 10cogu + longname: 10 metre convective gust + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260687 + shortname: 10tugu + longname: 10 metre turbulent gust + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260688 + shortname: rol + longname: Reciprocal Obukhov length + units: m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260689 + shortname: rdpr + longname: Precipitation rate from radar + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260690 + shortname: rdqi + longname: Radar data quality index + units: Proportion + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260691 + shortname: rdqf + longname: Radar data quality flag + units: (Code table 4.106) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260692 + shortname: frdpr + longname: Precipitation rate from forecasted radar imagery + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260693 + shortname: frdp + longname: Precipitation from forecasted radar imagery + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 260694 + shortname: sdifswrfcs + longname: Surface diffuse short-wave radiation flux, clear sky + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 261001 + shortname: utci + longname: Universal thermal climate index + units: K + description: The Universal Thermal Climate Index (UTCI) is defined as the air temperature + of a reference outdoor environment that would elicit in the human body the same + physiological response (sweat production, shivering, skin wettedness,skin blood + flow and rectal, mean skin and face temperatures) as the actual environment (Jendritzky + et al. 2012) + access_ids: + - dissemination + origin_ids: + - 0 +- id: 261002 + shortname: mrt + longname: Mean radiant temperature + units: K + description: The mean radiant temperature is the temperature of a uniform, black + enclosure that exchanges the same amount of heat by radiation with the occupant + as the actual surroundings (ANSI/ASHRAE 2017). + access_ids: + - dissemination + origin_ids: + - 0 +- id: 261003 + shortname: mal_cases_frac + longname: Fraction of Malaria cases + units: Fraction + description: Fraction of new clinical malaria cases per person + access_ids: [] + origin_ids: + - 0 +- id: 261004 + shortname: mal_prot_ratio + longname: Malaria circumsporozoite protein ratio + units: Fraction + description: Malaria circumsporozoite protein ratio (Fraction of infective vectors) + access_ids: [] + origin_ids: + - 0 +- id: 261005 + shortname: mal_innoc_rate + longname: Plasmodium falciparum entomological inoculation rate + units: Bites per day per person + description: The Plasmodium falciparum entomological inoculation rate is a measure + of exposure to infectious mosquitoes. It is usually interpreted as the number + of P. falciparum infective bites received by an individual during a day. + access_ids: [] + origin_ids: + - 0 +- id: 261006 + shortname: mal_hbite_rate + longname: Human bite rate by anopheles vectors + units: Bites per day per person + description: Bite rate by Anopheles vectors + access_ids: [] + origin_ids: + - 0 +- id: 261007 + shortname: mal_immun_ratio + longname: Malaria immunity ratio + units: Fraction + description: Proportion of population with acquired malaria immunity + access_ids: [] + origin_ids: + - 0 +- id: 261008 + shortname: mal_infect_ratio + longname: Falciparum parasite ratio + units: Fraction + description: Proportion of hosts infected + access_ids: [] + origin_ids: + - 0 +- id: 261009 + shortname: mal_infect_d10_ratio + longname: Detectable falciparum parasite ratio (after day 10) + units: Fraction + description: Proportion of hosts infected detected (after day 10) + access_ids: [] + origin_ids: + - 0 +- id: 261010 + shortname: mal_host_ratio + longname: Anopheles vector to host ratio + units: Fraction + description: Number of Anopheles vectors to number of infected population + access_ids: [] + origin_ids: + - 0 +- id: 261011 + shortname: mal_vect_dens + longname: Anopheles vector density + units: Number m**-2 + description: Number of Anopheles vectors per unit area + access_ids: [] + origin_ids: + - 0 +- id: 261012 + shortname: mal_hab_frac + longname: Fraction of malarial vector reproductive habitat + units: Fraction + description: Water coverage of small scale breeding sites + access_ids: [] + origin_ids: + - 0 +- id: 261013 + shortname: pop_dens + longname: Population density + units: Person m**-2 + description: Number of persons per unit area + access_ids: [] + origin_ids: + - 0 +- id: 261014 + shortname: wbgt + longname: Wet bulb globe temperature + units: K + description: The wet bulb globe temperature is a measure of environmental heat as + it affects humans. It is derived from air temperature, dew point temperature, + wind speed and mean radiant temperature. + access_ids: + - dissemination + origin_ids: + - 0 +- id: 261015 + shortname: gt + longname: Globe temperature + units: K + description: The (black) globe temperature is an indirect measurement of the radiant + heat load of the environment. Its name comes from the way the parameter is measured, + i.e. via a thermometer installed inside a hollow copper sphere painted matte black. + It is calculated using the air temperature, wind speed and mean radiant temperature. + access_ids: + - dissemination + origin_ids: + - 0 +- id: 261016 + shortname: hmdx + longname: Humidex + units: K + description: The humidex, which is an abbreviation for humidity index, describes + how the combined effects of warm temperatures and humidity are perceived by an + average person. It is calculated using the air temperature and the dew point temperature. + access_ids: + - dissemination + origin_ids: + - 0 +- id: 261017 + shortname: efft + longname: Effective temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 261018 + shortname: nefft + longname: Normal effective temperature + units: K + description: ' The normal effective temperature links air temperature, humidity + and wind with the human body’s thermoregulatory capacity. It is derived from air + temperature, wind speed and relative humidity.' + access_ids: + - dissemination + origin_ids: + - 0 +- id: 261019 + shortname: sefft + longname: Standard effective temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 261020 + shortname: peqt + longname: Physiological equivalent temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 261021 + shortname: swvp + longname: Saturation water vapour pressure + units: Pa + description: null + access_ids: [] + origin_ids: + - 0 +- id: 261022 + shortname: wbpt + longname: Wet-bulb potential temperature + units: K + description: This parameter describes the temperature a parcel of air at any level + would have if, starting at the wet-bulb temperature, it were brought at the saturated + adiabatic lapse rate to the standard pressure of 1,000 mbar. + access_ids: [] + origin_ids: + - 0 +- id: 261023 + shortname: wbt + longname: Wet-bulb temperature + units: K + description: The (natural) wet bulb temperature represents the temperature measured + by a thermometer wrapped in a wet cloth, which simulates the cooling effect of + human sweat. + access_ids: + - dissemination + origin_ids: + - 0 +- id: 261024 + shortname: exhf + longname: Excess heat factor + units: K**2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 261025 + shortname: excf + longname: Excess cold factor + units: K**2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262000 + shortname: sithick + longname: Sea ice thickness + units: m + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262001 + shortname: siconc + longname: Sea ice area fraction + units: Fraction + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262002 + shortname: sisnthick + longname: Snow thickness over sea ice + units: m + description: null + access_ids: + - dissemination + origin_ids: + - -90 + - -80 + - -50 + - 98 +- id: 262003 + shortname: siue + longname: Eastward sea ice velocity + units: m s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262004 + shortname: sivn + longname: Northward sea ice velocity + units: m s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262005 + shortname: sialb + longname: Sea ice albedo + units: Fraction + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262006 + shortname: sitemptop + longname: Sea ice surface temperature + units: K + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262007 + shortname: sigrowth + longname: Sea ice growth + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262008 + shortname: sivol + longname: Sea ice volume per unit area + units: m**3 m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262009 + shortname: snvol + longname: Snow volume over sea ice per unit area + units: m**3 m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262010 + shortname: vasit + longname: Vertically averaged sea ice temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262011 + shortname: sntemp + longname: Snow temperature over sea ice + units: K + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262012 + shortname: sisntemp + longname: Sea ice temperature at the sea ice and snow interface + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262013 + shortname: usitemp + longname: Underside ice temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262014 + shortname: sihc + longname: Sea ice heat content + units: J m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262015 + shortname: snhc + longname: Snow heat content over sea ice + units: J m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262016 + shortname: sifbr + longname: Sea ice freeboard thickness + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262017 + shortname: sipf + longname: Sea ice melt pond fraction + units: Proportion + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262018 + shortname: sipd + longname: Sea ice melt pond depth + units: m + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262019 + shortname: sipvol + longname: Sea ice melt pond volume per unit area + units: m**3 m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262020 + shortname: bckinsic + longname: Sea ice fraction tendency due to parameterization + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262021 + shortname: six + longname: X-component of sea ice velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262022 + shortname: siy + longname: Y-component of sea ice velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262023 + shortname: icesalt + longname: Sea ice salinity + units: g kg**-1 + description: '' + access_ids: + - dissemination + origin_ids: + - -80 + - -50 + - 98 +- id: 262024 + shortname: sit + longname: Sea ice temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262025 + shortname: sibm + longname: Sea ice breakup memory + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262100 + shortname: sos + longname: Sea surface practical salinity + units: g kg**-1 + description: '' + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262101 + shortname: tos + longname: Sea surface temperature + units: K + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262102 + shortname: t14d + longname: Depth of 14 C isotherm + units: m + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262103 + shortname: t17d + longname: Depth of 17 C isotherm + units: m + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262104 + shortname: t20d + longname: Depth of 20 C isotherm + units: m + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262105 + shortname: t26d + longname: Depth of 26 C isotherm + units: m + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262106 + shortname: t28d + longname: Depth of 28 C isotherm + units: m + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262107 + shortname: stfbarot + longname: Barotropic stream function + units: m**3 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262108 + shortname: hfds + longname: Surface downward heat flux + units: W m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262109 + shortname: tauvon + longname: Northward surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262110 + shortname: tauuoe + longname: Eastward surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262111 + shortname: tauvo + longname: Y-component of surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262112 + shortname: tauuo + longname: X-component of surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262113 + shortname: mlotst010 + longname: Ocean mixed layer depth defined by sigma theta 0.01 kg m-3 + units: m + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262114 + shortname: mlotst030 + longname: Ocean mixed layer depth defined by sigma theta 0.03 kg m-3 + units: m + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262115 + shortname: mlotst125 + longname: Ocean mixed layer depth defined by sigma theta 0.125 kg m-3 + units: m + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262116 + shortname: mlott02 + longname: Ocean mixed layer depth defined by temperature 0.2 C + units: m + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262117 + shortname: mlott05 + longname: Ocean mixed layer depth defined by temperature 0.5 C + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262118 + shortname: sc300m + longname: Average sea water practical salinity in the upper 300 m + units: g kg**-1 + description: '' + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262119 + shortname: sc700m + longname: Average sea water practical salinity in the upper 700 m + units: g kg**-1 + description: '' + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262120 + shortname: scbtm + longname: Total column average sea water practical salinity + units: g kg**-1 + description: '' + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262121 + shortname: hc300m + longname: Vertically-integrated heat content in the upper 300 m + units: J m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262122 + shortname: hc700m + longname: Vertically-integrated heat content in the upper 700 m + units: J m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262123 + shortname: hcbtm + longname: Total column of heat content + units: J m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262124 + shortname: zos + longname: Sea surface height + units: m + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262125 + shortname: stheig + longname: Steric change in sea surface height + units: m + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262126 + shortname: hstheig + longname: Halosteric change in sea surface height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262127 + shortname: tstheig + longname: Thermosteric change in sea surface height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262128 + shortname: thcline + longname: Thermocline depth + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262129 + shortname: btp + longname: Bottom pressure equivalent height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262130 + shortname: swfup + longname: Net surface upward water flux + units: kg m**-2 s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262131 + shortname: fw2sw + longname: Fresh water flux into sea water (from rivers) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262132 + shortname: vsf2sw + longname: Virtual salt flux into sea water + units: g kg**-1 m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262133 + shortname: hfcorr + longname: Heat flux correction + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262134 + shortname: fwcorr + longname: Fresh water flux correction + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262135 + shortname: vsfcorr + longname: Virtual salt flux correction + units: g kg**-1 m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262136 + shortname: turbocl + longname: Turbocline depth (kz=5e-4) + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262137 + shortname: svy + longname: Y-component of surface sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262138 + shortname: svx + longname: X-component of surface sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262139 + shortname: svn + longname: Northward surface sea water velocity + units: m s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262140 + shortname: sve + longname: Eastward surface sea water velocity + units: m s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262141 + shortname: hct26 + longname: Heat Content surface to 26C isotherm + units: J m**-2 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262142 + shortname: bckineta + longname: Sea surface height tendency due to parameterization + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262143 + shortname: zosib + longname: Sea surface height with inverse barometer correction + units: m + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262144 + shortname: pt300m + longname: Average sea water potential temperature in the upper 300m + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262145 + shortname: sss + longname: Sea surface salinity + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262146 + shortname: sc300v + longname: Vertically integrated sea water practical salinity in the upper 300 m + units: g kg**-1 m + description: Can also be seen as kg of salt per square metre in the sea water column + (assuming a density of water of 1000 kg m-3). + access_ids: [] + origin_ids: + - 0 +- id: 262147 + shortname: sc700v + longname: Vertically integrated sea water practical salinity in the upper 700 m + units: g kg**-1 m + description: Can also be seen as kg of salt per square metre in the sea water column + (assuming a density of water of 1000 kg m-3). + access_ids: [] + origin_ids: + - 0 +- id: 262148 + shortname: scbtv + longname: Total column vertically integrated sea water practical salinity + units: g kg**-1 m + description: Can also be seen as kg of salt per square metre in the sea water column + (assuming a density of water of 1000 kg m-3). + access_ids: [] + origin_ids: + - 0 +- id: 262149 + shortname: rsdos + longname: Sea surface downward short-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262500 + shortname: so + longname: Sea water practical salinity + units: g kg**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262501 + shortname: thetao + longname: Sea water potential temperature + units: K + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262502 + shortname: sigmat + longname: Sea water sigma theta + units: kg m**-3 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262503 + shortname: voy + longname: Y-component of sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262504 + shortname: uox + longname: X-component of sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262505 + shortname: von + longname: Northward sea water velocity + units: m s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262506 + shortname: uoe + longname: Eastward sea water velocity + units: m s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262507 + shortname: wo + longname: Upward sea water velocity + units: m s**-1 + description: null + access_ids: + - dissemination + origin_ids: + - 0 +- id: 262508 + shortname: thetaodmp + longname: Sea water potential temperature tendency due to newtonian relaxation + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262509 + shortname: sodmp + longname: Sea water salinity tendency due to newtonian relaxation + units: g kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262510 + shortname: bckint + longname: Sea water temperature tendency due to parameterization + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262511 + shortname: bckins + longname: Sea water salinity tendency due to parameterization + units: g kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262512 + shortname: bckine + longname: Eastward sea water velocity tendency due to parameterization + units: m s**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262513 + shortname: bckinn + longname: Northward sea water velocity tendency due to parameterization + units: m s**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262514 + shortname: tdbiascorr + longname: Sea water temperature tendency due to direct bias correction + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262515 + shortname: sdbiascorr + longname: Sea water salinity tendency due to direct bias correction + units: g kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262516 + shortname: salo + longname: Sea water salinity + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262517 + shortname: mtn + longname: Northward mass transport + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262518 + shortname: mte + longname: Eastward mass transport + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262519 + shortname: zo + longname: Sea water depth + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262520 + shortname: mtup + longname: Sea water upward mass transport + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262521 + shortname: agessc + longname: Sea water age since surface contact + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262522 + shortname: rsdo + longname: Sea water downward short-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262523 + shortname: sigmatrel + longname: Sea water sigma theta relative + units: Proportion + description: null + access_ids: [] + origin_ids: + - 98 +- id: 262900 + shortname: ssr_sea + longname: Net short wave radiation rate at sea surface + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262901 + shortname: wst_sea + longname: Wind stress at sea surface + units: N m**-2 + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 262902 + shortname: 10ws_sea + longname: Wind speed at 10m above sea surface + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262903 + shortname: 10nd_sea + longname: Neutral drag coefficient at 10m above sea surface + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262904 + shortname: tprate_sea + longname: Total precipitation rate at sea surface + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262905 + shortname: snrate_sea + longname: Snow precipitation rate at sea surface + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262906 + shortname: ewst_sea + longname: Eastward component of wind stress over sea ice + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262907 + shortname: nwst_sea + longname: Northward component of wind stress over sea ice + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262908 + shortname: uwst_sea + longname: U-component of wind stress over sea ice + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 262909 + shortname: vwst_sea + longname: V-component of wind stress over sea ice + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263000 + shortname: avg_sithick + longname: Time-mean sea ice thickness + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263001 + shortname: avg_siconc + longname: Time-mean sea ice area fraction + units: Fraction + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263002 + shortname: avg_sisnthick + longname: Time-mean snow thickness over sea ice + units: m + description: null + access_ids: [] + origin_ids: + - -90 + - -80 + - -50 + - 98 +- id: 263003 + shortname: avg_siue + longname: Time-mean eastward sea ice velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263004 + shortname: avg_sivn + longname: Time-mean northward sea ice velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263005 + shortname: avg_sialb + longname: Time-mean sea ice albedo + units: Fraction + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263006 + shortname: avg_sitemptop + longname: Time-mean sea ice surface temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263007 + shortname: avg_sigrowth + longname: Time-mean sea ice growth + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263008 + shortname: avg_sivol + longname: Time-mean sea ice volume per unit area + units: m**3 m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263009 + shortname: avg_snvol + longname: Time-mean snow volume over sea ice per unit area + units: m**3 m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263010 + shortname: avg_vasit + longname: Time-mean vertically averaged sea ice temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263011 + shortname: avg_sntemp + longname: Time-mean snow temperature over sea ice + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263012 + shortname: avg_sisntemp + longname: Time-mean sea ice temperature at the sea ice and snow interface + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263013 + shortname: avg_usitemp + longname: Time-mean underside ice temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263014 + shortname: avg_sihc + longname: Time-mean sea ice heat content + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263015 + shortname: avg_snhc + longname: Time-mean snow heat content over sea ice + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263016 + shortname: avg_sifbr + longname: Time-mean sea ice freeboard thickness + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263017 + shortname: avg_sipf + longname: Time-mean sea ice melt pond fraction + units: Proportion + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263018 + shortname: avg_sipd + longname: Time-mean sea ice melt pond depth + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263019 + shortname: avg_sipvol + longname: Time-mean sea ice melt pond volume per unit area + units: m**3 m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263020 + shortname: avg_bckinsic + longname: Time-mean sea ice fraction tendency due to parameterization + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263021 + shortname: avg_six + longname: Time-mean X-component of sea ice velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263022 + shortname: avg_siy + longname: Time-mean Y-component of sea ice velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263023 + shortname: avg_icesalt + longname: Time-mean Sea ice salinity + units: g kg**-1 + description: '' + access_ids: [] + origin_ids: + - -80 + - -50 + - 98 +- id: 263024 + shortname: avg_sit + longname: Time-mean sea ice temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263025 + shortname: avg_sibm + longname: Time-mean sea ice breakup memory + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263100 + shortname: avg_sos + longname: Time-mean sea surface practical salinity + units: g kg**-1 + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 263101 + shortname: avg_tos + longname: Time-mean sea surface temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263102 + shortname: avg_t14d + longname: Time-mean depth of 14 C isotherm + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263103 + shortname: avg_t17d + longname: Time-mean depth of 17 C isotherm + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263104 + shortname: avg_t20d + longname: Time-mean depth of 20 C isotherm + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263105 + shortname: avg_t26d + longname: Time-mean depth of 26 C isotherm + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263106 + shortname: avg_t28d + longname: Time-mean depth of 28 C isotherm + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263107 + shortname: avg_stfbarot + longname: Time-mean barotropic stream function + units: m**3 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263108 + shortname: avg_hfds + longname: Time-mean surface downward heat flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263109 + shortname: avg_tauvon + longname: Time-mean northward surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263110 + shortname: avg_tauuoe + longname: Time-mean eastward surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263111 + shortname: avg_tauvo + longname: Time mean Y-component of surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263112 + shortname: avg_tauuo + longname: Time-mean X-component of surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263113 + shortname: avg_mlotst010 + longname: Time-mean ocean mixed layer depth defined by sigma theta 0.01 kg m-3 + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263114 + shortname: avg_mlotst030 + longname: Time-mean ocean mixed layer depth defined by sigma theta 0.03 kg m-3 + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263115 + shortname: avg_mlotst125 + longname: Time-mean ocean mixed layer depth defined by sigma theta 0.125 kg m-3 + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263116 + shortname: avg_mlott02 + longname: Time-mean ocean mixed layer depth defined by temperature 0.2 C + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263117 + shortname: avg_mlott05 + longname: Time-mean ocean mixed layer depth defined by temperature 0.5 C + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263118 + shortname: avg_sc300m + longname: Time-mean average sea water practical salinity in the upper 300 m + units: g kg**-1 + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 263119 + shortname: avg_sc700m + longname: Time-mean average sea water practical salinity in the upper 700 m + units: g kg**-1 + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 263120 + shortname: avg_scbtm + longname: Time-mean total column average sea water practical salinity + units: g kg**-1 + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 263121 + shortname: avg_hc300m + longname: Time-mean vertically-integrated heat content in the upper 300 m + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263122 + shortname: avg_hc700m + longname: Time-mean vertically-integrated heat content in the upper 700 m + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263123 + shortname: avg_hcbtm + longname: Time-mean total column heat content + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263124 + shortname: avg_zos + longname: Time-mean sea surface height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263125 + shortname: avg_stheig + longname: Time-mean steric change in sea surface height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263126 + shortname: avg_hstheig + longname: Time-mean halosteric change in sea surface height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263127 + shortname: avg_tstheig + longname: Time-mean thermosteric change in sea surface height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263128 + shortname: avg_thcline + longname: Time-mean thermocline depth + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263129 + shortname: avg_btp + longname: Time-mean bottom pressure equivalent height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263130 + shortname: avg_swfup + longname: Time-mean net surface upward water flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263131 + shortname: avg_fw2sw + longname: Time-mean fresh water flux into sea water (from rivers) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263132 + shortname: avg_vsf2sw + longname: Time-mean virtual salt flux into sea water + units: g kg**-1 m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263133 + shortname: avg_hfcorr + longname: Time-mean heat flux correction + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263134 + shortname: avg_fwcorr + longname: Time-mean fresh water flux correction + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263135 + shortname: avg_vsfcorr + longname: Time-mean virtual salt flux correction + units: g kg**-1 m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263136 + shortname: avg_turbocl + longname: Time-mean turbocline depth (kz=5e-4) + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263137 + shortname: avg_svy + longname: Time-mean Y-component of surface sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263138 + shortname: avg_svx + longname: Time-mean X-component of surface sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263139 + shortname: avg_svn + longname: Time-mean northward surface sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263140 + shortname: avg_sve + longname: Time-mean eastward surface sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263141 + shortname: avg_hct26 + longname: Time-mean heat content surface to 26C isotherm + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263142 + shortname: avg_bckineta + longname: Time-mean sea surface height tendency due to parameterization + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263143 + shortname: avg_zosib + longname: Time-mean sea surface height with inverse barometer correction + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263144 + shortname: avg_pt300m + longname: Time-mean average sea water potential temperature in the upper 300m + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263145 + shortname: avg_sss + longname: Time-mean sea surface salinity + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263146 + shortname: avg_sc300v + longname: Time-mean vertically integrated sea water practical salinity in the upper + 300 m + units: g kg**-1 m + description: Can also be seen as kg of salt per square metre in the sea water column + (assuming a density of water of 1000 kg m-3). + access_ids: [] + origin_ids: + - 0 +- id: 263147 + shortname: avg_sc700v + longname: Time-mean vertically integrated sea water practical salinity in the upper + 700 m + units: g kg**-1 m + description: Can also be seen as kg of salt per square metre in the sea water column + (assuming a density of water of 1000 kg m-3). + access_ids: [] + origin_ids: + - 0 +- id: 263148 + shortname: avg_scbtv + longname: Time-mean total column vertically integrated sea water practical salinity + units: g kg**-1 m + description: Can also be seen as kg of salt per square metre in the sea water column + (assuming a density of water of 1000 kg m-3). + access_ids: [] + origin_ids: + - 0 +- id: 263149 + shortname: avg_rsdos + longname: Time-mean sea surface downward short-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263500 + shortname: avg_so + longname: Time-mean sea water practical salinity + units: g kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263501 + shortname: avg_thetao + longname: Time-mean sea water potential temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263502 + shortname: avg_sigmat + longname: Time-mean sea water sigma theta + units: kg m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263503 + shortname: avg_voy + longname: Time-mean Y-component of sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263504 + shortname: avg_uox + longname: Time-mean X-component of sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263505 + shortname: avg_von + longname: Time-mean northward sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263506 + shortname: avg_uoe + longname: Time-mean eastward sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263507 + shortname: avg_wo + longname: Time-mean upward sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263508 + shortname: avg_thetaodmp + longname: Time-mean sea water potential temperature tendency due to newtonian relaxation + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263509 + shortname: avg_sodmp + longname: Time-mean sea water salinity tendency due to newtonian relaxation + units: g kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263510 + shortname: avg_bckint + longname: Time-mean sea water temperature tendency due to parameterization + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263511 + shortname: avg_bckins + longname: Time-mean sea water salinity tendency due to parameterization + units: g kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263512 + shortname: avg_bckine + longname: Time-mean eastward sea water velocity tendency due to parameterization + units: m s**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263513 + shortname: avg_bckinn + longname: Time-mean northward sea water velocity tendency due to parameterization + units: m s**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263514 + shortname: avg_tdbiascorr + longname: Time-mean sea water temperature tendency due to direct bias correction + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263515 + shortname: avg_sdbiascorr + longname: Time-mean sea water salinity tendency due to direct bias correction + units: g kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263516 + shortname: avg_salo + longname: Time-mean sea water salinity + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263517 + shortname: avg_mtn + longname: Time-mean northward mass transport + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263518 + shortname: avg_mte + longname: Time-mean eastward mass transport + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263519 + shortname: avg_zo + longname: Time-mean sea water depth + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263520 + shortname: avg_mtup + longname: Time-mean sea water upward mass transport + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263521 + shortname: avg_agessc + longname: Time-mean sea water age since surface contact + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263522 + shortname: avg_rsdo + longname: Time-mean sea water downward short-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263523 + shortname: avg_sigmatrel + longname: Time-mean sea water sigma theta relative + units: Proportion + description: null + access_ids: [] + origin_ids: + - 98 +- id: 263900 + shortname: avg_ssr_sea + longname: Time-mean net short wave radiation rate at sea surface + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263901 + shortname: avg_wst_sea + longname: Time-mean wind stress at sea surface + units: N m**-2 + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 263902 + shortname: avg_10ws_sea + longname: Time-mean wind speed at 10m above sea surface + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263903 + shortname: avg_10nd_sea + longname: Time-mean neutral drag coefficient at 10m above sea surface + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263904 + shortname: avg_tprate_sea + longname: Time-mean total precipitation rate at sea surface + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263905 + shortname: avg_snrate_sea + longname: Time-mean snow precipitation rate at sea surface + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263906 + shortname: avg_ewst_sea + longname: Time-mean eastward component of wind stress over sea ice + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263907 + shortname: avg_nwst_sea + longname: Time-mean northward component of wind stress over sea ice + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263908 + shortname: avg_uwst_sea + longname: Time-mean U-component of wind stress over sea ice + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 263909 + shortname: avg_vwst_sea + longname: Time-mean V-component of wind stress over sea ice + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 264900 + shortname: acc_ssr_sea + longname: Time-accumulated net short wave radiation at sea surface + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 264904 + shortname: tp_sea + longname: Time-accumulated total precipitation at sea surface + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 264905 + shortname: sn_sea + longname: Time-accumulated snow precipitation at sea surface + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265000 + shortname: max_sithick + longname: Time-maximum sea ice thickness + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265001 + shortname: max_siconc + longname: Time-maximum sea ice area fraction + units: Fraction + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265002 + shortname: max_sisnthick + longname: Time-maximum snow thickness over sea ice + units: m + description: null + access_ids: [] + origin_ids: + - -50 + - 98 +- id: 265003 + shortname: max_siue + longname: Time-maximum eastward sea ice velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265004 + shortname: max_sivn + longname: Time-maximum northward sea ice velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265005 + shortname: max_sialb + longname: Time-maximum sea ice albedo + units: Fraction + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265006 + shortname: max_sitemptop + longname: Time-maximum sea ice surface temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265007 + shortname: max_sigrowth + longname: Time-maximum sea ice growth + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265008 + shortname: max_sivol + longname: Time-maximum sea ice volume per unit area + units: m**3 m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265009 + shortname: max_snvol + longname: Time-maximum snow volume over sea ice per unit area + units: m**3 m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265010 + shortname: max_vasit + longname: Time-maximum vertically averaged sea ice temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265011 + shortname: max_sntemp + longname: Time-maximum snow temperature over sea ice + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265012 + shortname: max_sisntemp + longname: Time-maximum sea ice temperature at the sea ice and snow interface + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265013 + shortname: max_usitemp + longname: Time-maximum underside ice temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265014 + shortname: max_sihc + longname: Time-maximum sea ice heat content + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265015 + shortname: max_snhc + longname: Time-maximum snow heat content over sea ice + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265016 + shortname: max_sifbr + longname: Time-maximum sea ice freeboard thickness + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265017 + shortname: max_sipf + longname: Time-maximum sea ice melt pond fraction + units: Proportion + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265018 + shortname: max_sipd + longname: Time-maximum sea ice melt pond depth + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265019 + shortname: max_sipvol + longname: Time-maximum sea ice melt pond volume per unit area + units: m**3 m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265020 + shortname: max_bckinsic + longname: Time-maximum sea ice fraction tendency due to parameterization + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265021 + shortname: max_six + longname: Time-maximum X-component of sea ice velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265022 + shortname: max_siy + longname: Time-maximum Y-component of sea ice velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265023 + shortname: max_icesalt + longname: Time-maximum sea ice salinity + units: g kg**-1 + description: null + access_ids: [] + origin_ids: + - -50 + - 98 +- id: 265024 + shortname: max_sit + longname: Time-maximum sea ice temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265025 + shortname: max_sibm + longname: Time-maximum sea ice breakup memory + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265100 + shortname: max_sos + longname: Time-maximum sea surface practical salinity + units: g kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265101 + shortname: max_tos + longname: Time-maximum sea surface temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265102 + shortname: max_t14d + longname: Time-maximum depth of 14 C isotherm + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265103 + shortname: max_t17d + longname: Time-maximum depth of 17 C isotherm + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265104 + shortname: max_t20d + longname: Time-maximum depth of 20 C isotherm + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265105 + shortname: max_t26d + longname: Time-maximum depth of 26 C isotherm + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265106 + shortname: max_t28d + longname: Time-maximum depth of 28 C isotherm + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265107 + shortname: max_stfbarot + longname: Time-maximum barotropic stream function + units: m**3 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265108 + shortname: max_hfds + longname: Time-maximum surface downward heat flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265109 + shortname: max_tauvon + longname: Time-maximum northward surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265110 + shortname: max_tauuoe + longname: Time-maximum eastward surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265111 + shortname: max_tauvo + longname: Time-maximum Y-component of surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265112 + shortname: max_tauuo + longname: Time-maximum X-component of surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265113 + shortname: max_mlotst010 + longname: Time-maximum ocean mixed layer depth defined by sigma theta 0.01 kg m-3 + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265114 + shortname: max_mlotst030 + longname: Time-maximum ocean mixed layer depth defined by sigma theta 0.03 kg m-3 + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265115 + shortname: max_mlotst125 + longname: Time-maximum ocean mixed layer depth defined by sigma theta 0.125 kg m-3 + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265116 + shortname: max_mlott02 + longname: Time-maximum ocean mixed layer depth defined by temperature 0.2 C + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265117 + shortname: max_mlott05 + longname: Time-maximum ocean mixed layer depth defined by temperature 0.5 C + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265118 + shortname: max_sc300m + longname: Time-maximum average sea water practical salinity in the upper 300 m + units: g kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265119 + shortname: max_sc700m + longname: Time-maximum average sea water practical salinity in the upper 700 m + units: g kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265120 + shortname: max_scbtm + longname: Time-maximum total column average sea water practical salinity + units: g kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265121 + shortname: max_hc300m + longname: Time-maximum vertically-integrated heat content in the upper 300 m + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265122 + shortname: max_hc700m + longname: Time-maximum vertically-integrated heat content in the upper 700 m + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265123 + shortname: max_hcbtm + longname: Time-maximum total column of heat content + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265124 + shortname: max_zos + longname: Time-maximum sea surface height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265125 + shortname: max_stheig + longname: Time-maximum steric change in sea surface height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265126 + shortname: max_hstheig + longname: Time-maximum halosteric change in sea surface height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265127 + shortname: max_tstheig + longname: Time-maximum thermosteric change in sea surface height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265128 + shortname: max_thcline + longname: Time-maximum thermocline depth + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265129 + shortname: max_btp + longname: Time-maximum bottom pressure equivalent height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265130 + shortname: max_swfup + longname: Time-maximum net surface upward water flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265131 + shortname: max_fw2sw + longname: Time-maximum fresh water flux into sea water (from rivers) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265132 + shortname: max_vsf2sw + longname: Time-maximum virtual salt flux into sea water + units: g kg**-1 m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265133 + shortname: max_hfcorr + longname: Time-maximum heat flux correction + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265134 + shortname: max_fwcorr + longname: Time-maximum fresh water flux correction + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265135 + shortname: max_vsfcorr + longname: Time-maximum virtual salt flux correction + units: g kg**-1 m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265136 + shortname: max_turbocl + longname: Time-maximum turbocline depth (kz=5e-4) + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265137 + shortname: max_svy + longname: Time-maximum Y-component of surface sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265138 + shortname: max_svx + longname: Time-maximum X-component of surface sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265139 + shortname: max_svn + longname: Time-maximum northward surface sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265140 + shortname: max_sve + longname: Time-maximum eastward surface sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265141 + shortname: max_hct26 + longname: Time-maximum heat content surface to 26C isotherm + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265142 + shortname: max_bckineta + longname: Time-maximum sea surface height tendency due to parameterization + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265143 + shortname: max_zosib + longname: Time-maximum sea surface height with inverse barometer correction + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265144 + shortname: max_pt300m + longname: Time-maximum average sea water potential temperature in the upper 300m + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265145 + shortname: max_sss + longname: Time-maximum sea surface salinity + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265146 + shortname: max_sc300v + longname: Time-maximum vertically integrated sea water practical salinity in the + upper 300 m + units: g kg**-1 m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265147 + shortname: max_sc700v + longname: Time-maximum vertically integrated sea water practical salinity in the + upper 700 m + units: g kg**-1 m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265148 + shortname: max_scbtv + longname: Time-maximum total column vertically integrated sea water practical salinity + units: g kg**-1 m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265149 + shortname: max_rsdos + longname: Time-maximum sea surface downward short-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265500 + shortname: max_so + longname: Time-maximum sea water practical salinity + units: g kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265501 + shortname: max_thetao + longname: Time-maximum sea water potential temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265502 + shortname: max_sigmat + longname: Time-maximum sea water sigma theta + units: kg m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265503 + shortname: max_voy + longname: Time-maximum Y-component of sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265504 + shortname: max_uox + longname: Time-maximum X-component of sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265505 + shortname: max_von + longname: Time-maximum northward sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265506 + shortname: max_uoe + longname: Time-maximum eastward sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265507 + shortname: max_wo + longname: Time-maximum upward sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265508 + shortname: max_thetaodmp + longname: Time-maximum sea water potential temperature tendency due to newtonian + relaxation + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265509 + shortname: max_sodmp + longname: Time-maximum sea water salinity tendency due to newtonian relaxation + units: g kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265510 + shortname: max_bckint + longname: Time-maximum sea water temperature tendency due to parameterization + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265511 + shortname: max_bckins + longname: Time-maximum sea water salinity tendency due to parameterization + units: g kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265512 + shortname: max_bckine + longname: Time-maximum eastward sea water velocity tendency due to parameterization + units: m s**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265513 + shortname: max_bckinn + longname: Time-maximum northward sea water velocity tendency due to parameterization + units: m s**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265514 + shortname: max_tdbiascorr + longname: Time-maximum sea water temperature tendency due to direct bias correction + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265515 + shortname: max_sdbiascorr + longname: Time-maximum sea water salinity tendency due to direct bias correction + units: g kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265516 + shortname: max_salo + longname: Time-maximum sea water salinity + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265517 + shortname: max_mtn + longname: Time-maximum northward mass transport + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265518 + shortname: max_mte + longname: Time-maximum eastward mass transport + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265519 + shortname: max_zo + longname: Time-maximum sea water depth + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265520 + shortname: max_mtup + longname: Time-maximum sea water upward mass transport + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265521 + shortname: max_agessc + longname: Time-maximum sea water age since surface contact + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265522 + shortname: max_rsdo + longname: Time-maximum sea water downward short-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265900 + shortname: max_ssr_sea + longname: Time-maximum net short wave radiation rate at sea surface + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265901 + shortname: max_wst_sea + longname: Time-maximum wind stress at sea surface + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265902 + shortname: max_10ws_sea + longname: Time-maximum wind speed at 10m above sea surface + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265903 + shortname: max_10nd_sea + longname: Time-maximum neutral drag coefficient at 10m above sea surface + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265904 + shortname: max_tprate_sea + longname: Time-maximum total precipitation rate at sea surface + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265905 + shortname: max_snrate_sea + longname: Time-maximum snow precipitation rate at sea surface + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265906 + shortname: max_ewst_sea + longname: Time-maximum eastward component of wind stress over sea ice + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265907 + shortname: max_nwst_sea + longname: Time-maximum northward component of wind stress over sea ice + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265908 + shortname: max_uwst_sea + longname: Time-maximum U-component of wind stress over sea ice + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 265909 + shortname: max_vwst_sea + longname: Time-maximum V-component of wind stress over sea ice + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266000 + shortname: min_sithick + longname: Time-minimum sea ice thickness + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266001 + shortname: min_siconc + longname: Time-minimum sea ice area fraction + units: Fraction + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266002 + shortname: min_sisnthick + longname: Time-minimum snow thickness over sea ice + units: m + description: null + access_ids: [] + origin_ids: + - -50 + - 98 +- id: 266003 + shortname: min_siue + longname: Time-minimum eastward sea ice velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266004 + shortname: min_sivn + longname: Time-minimum northward sea ice velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266005 + shortname: min_sialb + longname: Time-minimum sea ice albedo + units: Fraction + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266006 + shortname: min_sitemptop + longname: Time-minimum sea ice surface temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266007 + shortname: min_sigrowth + longname: Time-minimum sea ice growth + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266008 + shortname: min_sivol + longname: Time-minimum sea ice volume per unit area + units: m**3 m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266009 + shortname: min_snvol + longname: Time-minimum snow volume over sea ice per unit area + units: m**3 m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266010 + shortname: min_vasit + longname: Time-minimum vertically averaged sea ice temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266011 + shortname: min_sntemp + longname: Time-minimum snow temperature over sea ice + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266012 + shortname: min_sisntemp + longname: Time-minimum sea ice temperature at the sea ice and snow interface + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266013 + shortname: min_usitemp + longname: Time-minimum underside ice temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266014 + shortname: min_sihc + longname: Time-minimum sea ice heat content + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266015 + shortname: min_snhc + longname: Time-minimum snow heat content over sea ice + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266016 + shortname: min_sifbr + longname: Time-minimum sea ice freeboard thickness + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266017 + shortname: min_sipf + longname: Time-minimum sea ice melt pond fraction + units: Proportion + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266018 + shortname: min_sipd + longname: Time-minimum sea ice melt pond depth + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266019 + shortname: min_sipvol + longname: Time-minimum sea ice melt pond volume per unit area + units: m**3 m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266020 + shortname: min_bckinsic + longname: Time-minimum sea ice fraction tendency due to parameterization + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266021 + shortname: min_six + longname: Time-minimum X-component of sea ice velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266022 + shortname: min_siy + longname: Time-minimum Y-component of sea ice velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266023 + shortname: min_icesalt + longname: Time-minimum sea ice salinity + units: g kg**-1 + description: null + access_ids: [] + origin_ids: + - -50 + - 98 +- id: 266024 + shortname: min_sit + longname: Time-minimum sea ice temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266025 + shortname: min_sibm + longname: Time-minimum sea ice breakup memory + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266100 + shortname: min_sos + longname: Time-minimum sea surface practical salinity + units: g kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266101 + shortname: min_tos + longname: Time-minimum sea surface temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266102 + shortname: min_t14d + longname: Time-minimum depth of 14 C isotherm + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266103 + shortname: min_t17d + longname: Time-minimum depth of 17 C isotherm + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266104 + shortname: min_t20d + longname: Time-minimum depth of 20 C isotherm + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266105 + shortname: min_t26d + longname: Time-minimum depth of 26 C isotherm + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266106 + shortname: min_t28d + longname: Time-minimum depth of 28 C isotherm + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266107 + shortname: min_stfbarot + longname: Time-minimum barotropic stream function + units: m**3 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266108 + shortname: min_hfds + longname: Time-minimum surface downward heat flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266109 + shortname: min_tauvon + longname: Time-minimum northward surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266110 + shortname: min_tauuoe + longname: Time-minimum eastward surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266111 + shortname: min_tauvo + longname: Time-minimum Y-component of surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266112 + shortname: min_tauuo + longname: Time-minimum X-component of surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266113 + shortname: min_mlotst010 + longname: Time-minimum ocean mixed layer depth defined by sigma theta 0.01 kg m-3 + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266114 + shortname: min_mlotst030 + longname: Time-minimum ocean mixed layer depth defined by sigma theta 0.03 kg m-3 + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266115 + shortname: min_mlotst125 + longname: Time-minimum ocean mixed layer depth defined by sigma theta 0.125 kg m-3 + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266116 + shortname: min_mlott02 + longname: Time-minimum ocean mixed layer depth defined by temperature 0.2 C + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266117 + shortname: min_mlott05 + longname: Time-minimum ocean mixed layer depth defined by temperature 0.5 C + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266118 + shortname: min_sc300m + longname: Time-minimum average sea water practical salinity in the upper 300 m + units: g kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266119 + shortname: min_sc700m + longname: Time-minimum average sea water practical salinity in the upper 700 m + units: g kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266120 + shortname: min_scbtm + longname: Time-minimum total column average sea water practical salinity + units: g kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266121 + shortname: min_hc300m + longname: Time-minimum vertically-integrated heat content in the upper 300 m + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266122 + shortname: min_hc700m + longname: Time-minimum vertically-integrated heat content in the upper 700 m + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266123 + shortname: min_hcbtm + longname: Time-minimum total column of heat content + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266124 + shortname: min_zos + longname: Time-minimum sea surface height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266125 + shortname: min_stheig + longname: Time-minimum steric change in sea surface height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266126 + shortname: min_hstheig + longname: Time-minimum halosteric change in sea surface height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266127 + shortname: min_tstheig + longname: Time-minimum thermosteric change in sea surface height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266128 + shortname: min_thcline + longname: Time-minimum thermocline depth + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266129 + shortname: min_btp + longname: Time-minimum bottom pressure equivalent height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266130 + shortname: min_swfup + longname: Time-minimum net surface upward water flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266131 + shortname: min_fw2sw + longname: Time-minimum fresh water flux into sea water (from rivers) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266132 + shortname: min_vsf2sw + longname: Time-minimum virtual salt flux into sea water + units: g kg**-1 m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266133 + shortname: min_hfcorr + longname: Time-minimum heat flux correction + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266134 + shortname: min_fwcorr + longname: Time-minimum fresh water flux correction + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266135 + shortname: min_vsfcorr + longname: Time-minimum virtual salt flux correction + units: g kg**-1 m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266136 + shortname: min_turbocl + longname: Time-minimum turbocline depth (kz=5e-4) + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266137 + shortname: min_svy + longname: Time-minimum Y-component of surface sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266138 + shortname: min_svx + longname: Time-minimum X-component of surface sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266139 + shortname: min_svn + longname: Time-minimum northward surface sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266140 + shortname: min_sve + longname: Time-minimum eastward surface sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266141 + shortname: min_hct26 + longname: Time-minimum heat content surface to 26C isotherm + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266142 + shortname: min_bckineta + longname: Time-minimum sea surface height tendency due to parameterization + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266143 + shortname: min_zosib + longname: Time-minimum sea surface height with inverse barometer correction + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266144 + shortname: min_pt300m + longname: Time-minimum average sea water potential temperature in the upper 300m + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266145 + shortname: min_sss + longname: Time-minimum sea surface salinity + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266146 + shortname: min_sc300v + longname: Time-minimum vertically integrated sea water practical salinity in the + upper 300 m + units: g kg**-1 m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266147 + shortname: min_sc700v + longname: Time-minimum vertically integrated sea water practical salinity in the + upper 700 m + units: g kg**-1 m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266148 + shortname: min_scbtv + longname: Time-minimum total column vertically integrated sea water practical salinity + units: g kg**-1 m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266149 + shortname: min_rsdos + longname: Time-minimum sea surface downward short-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266500 + shortname: min_so + longname: Time-minimum sea water practical salinity + units: g kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266501 + shortname: min_thetao + longname: Time-minimum sea water potential temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266502 + shortname: min_sigmat + longname: Time-minimum sea water sigma theta + units: kg m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266503 + shortname: min_voy + longname: Time-minimum Y-component of sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266504 + shortname: min_uox + longname: Time-minimum X-component of sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266505 + shortname: min_von + longname: Time-minimum northward sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266506 + shortname: min_uoe + longname: Time-minimum eastward sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266507 + shortname: min_wo + longname: Time-minimum upward sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266508 + shortname: min_thetaodmp + longname: Time-minimum sea water potential temperature tendency due to newtonian + relaxation + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266509 + shortname: min_sodmp + longname: Time-minimum sea water salinity tendency due to newtonian relaxation + units: g kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266510 + shortname: min_bckint + longname: Time-minimum sea water temperature tendency due to parameterization + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266511 + shortname: min_bckins + longname: Time-minimum sea water salinity tendency due to parameterization + units: g kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266512 + shortname: min_bckine + longname: Time-minimum eastward sea water velocity tendency due to parameterization + units: m s**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266513 + shortname: min_bckinn + longname: Time-minimum northward sea water velocity tendency due to parameterization + units: m s**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266514 + shortname: min_tdbiascorr + longname: Time-minimum sea water temperature tendency due to direct bias correction + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266515 + shortname: min_sdbiascorr + longname: Time-minimum sea water salinity tendency due to direct bias correction + units: g kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266516 + shortname: min_salo + longname: Time-minimum sea water salinity + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266517 + shortname: min_mtn + longname: Time-minimum northward mass transport + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266518 + shortname: min_mte + longname: Time-minimum eastward mass transport + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266519 + shortname: min_zo + longname: Time-minimum sea water depth + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266520 + shortname: min_mtup + longname: Time-minimum sea water upward mass transport + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266521 + shortname: min_agessc + longname: Time-minimum sea water age since surface contact + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266522 + shortname: min_rsdo + longname: Time-minimum sea water downward short-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266900 + shortname: min_ssr_sea + longname: Time-minimum net short wave radiation rate at sea surface + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266901 + shortname: min_wst_sea + longname: Time-minimum wind stress at sea surface + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266902 + shortname: min_10ws_sea + longname: Time-minimum wind speed at 10m above sea surface + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266903 + shortname: min_10nd_sea + longname: Time-minimum neutral drag coefficient at 10m above sea surface + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266904 + shortname: min_tprate_sea + longname: Time-minimum total precipitation rate at sea surface + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266905 + shortname: min_snrate_sea + longname: Time-minimum snow precipitation rate at sea surface + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266906 + shortname: min_ewst_sea + longname: Time-minimum eastward component of wind stress over sea ice + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266907 + shortname: min_nwst_sea + longname: Time-minimum northward component of wind stress over sea ice + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266908 + shortname: min_uwst_sea + longname: Time-minimum U-component of wind stress over sea ice + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 266909 + shortname: min_vwst_sea + longname: Time-minimum V-component of wind stress over sea ice + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267000 + shortname: std_sithick + longname: Time-standard-deviation sea ice thickness + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267001 + shortname: std_siconc + longname: Time-standard-deviation sea ice area fraction + units: Fraction + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267002 + shortname: std_sisnthick + longname: Time-standard-deviation snow thickness over sea ice + units: m + description: null + access_ids: [] + origin_ids: + - -50 + - 98 +- id: 267003 + shortname: std_siue + longname: Time-standard-deviation eastward sea ice velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267004 + shortname: std_sivn + longname: Time-standard-deviation northward sea ice velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267005 + shortname: std_sialb + longname: Time-standard-deviation sea ice albedo + units: Fraction + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267006 + shortname: std_sitemptop + longname: Time-standard-deviation sea ice surface temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267007 + shortname: std_sigrowth + longname: Time-standard-deviation sea ice growth + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267008 + shortname: std_sivol + longname: Time-standard-deviation sea ice volume per unit area + units: m**3 m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267009 + shortname: std_snvol + longname: Time-standard-deviation snow volume over sea ice per unit area + units: m**3 m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267010 + shortname: std_vasit + longname: Time-standard-deviation vertically averaged sea ice temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267011 + shortname: std_sntemp + longname: Time-standard-deviation snow temperature over sea ice + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267012 + shortname: std_sisntemp + longname: Time-standard-deviation sea ice temperature at the sea ice and snow interface + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267013 + shortname: std_usitemp + longname: Time-standard-deviation underside ice temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267014 + shortname: std_sihc + longname: Time-standard-deviation sea ice heat content + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267015 + shortname: std_snhc + longname: Time-standard-deviation snow heat content over sea ice + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267016 + shortname: std_sifbr + longname: Time-standard-deviation sea ice freeboard thickness + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267017 + shortname: std_sipf + longname: Time-standard-deviation sea ice melt pond fraction + units: Proportion + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267018 + shortname: std_sipd + longname: Time-standard-deviation sea ice melt pond depth + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267019 + shortname: std_sipvol + longname: Time-standard-deviation sea ice melt pond volume per unit area + units: m**3 m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267020 + shortname: std_bckinsic + longname: Time-standard-deviation sea ice fraction tendency due to parameterization + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267021 + shortname: std_six + longname: Time-standard-deviation X-component of sea ice velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267022 + shortname: std_siy + longname: Time-standard-deviation Y-component of sea ice velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267023 + shortname: std_icesalt + longname: Time-standard-deviation sea ice salinity + units: g kg**-1 + description: null + access_ids: [] + origin_ids: + - -50 + - 98 +- id: 267024 + shortname: std_sit + longname: Time-standard-deviation sea ice temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267025 + shortname: std_sibm + longname: Time-standard-deviation sea ice breakup memory + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267100 + shortname: std_sos + longname: Time-standard-deviation sea surface practical salinity + units: g kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267101 + shortname: std_tos + longname: Time-standard-deviation sea surface temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267102 + shortname: std_t14d + longname: Time-standard-deviation depth of 14 C isotherm + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267103 + shortname: std_t17d + longname: Time-standard-deviation depth of 17 C isotherm + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267104 + shortname: std_t20d + longname: Time-standard-deviation depth of 20 C isotherm + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267105 + shortname: std_t26d + longname: Time-standard-deviation depth of 26 C isotherm + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267106 + shortname: std_t28d + longname: Time-standard-deviation depth of 28 C isotherm + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267107 + shortname: std_stfbarot + longname: Time-standard-deviation barotropic stream function + units: m**3 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267108 + shortname: std_hfds + longname: Time-standard-deviation surface downward heat flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267109 + shortname: std_tauvon + longname: Time-standard-deviation northward surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267110 + shortname: std_tauuoe + longname: Time-standard-deviation eastward surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267111 + shortname: std_tauvo + longname: Time-standard-deviation Y-component of surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267112 + shortname: std_tauuo + longname: Time-standard-deviation X-component of surface stress + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267113 + shortname: std_mlotst010 + longname: Time-standard-deviation ocean mixed layer depth defined by sigma theta + 0.01 kg m-3 + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267114 + shortname: std_mlotst030 + longname: Time-standard-deviation ocean mixed layer depth defined by sigma theta + 0.03 kg m-3 + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267115 + shortname: std_mlotst125 + longname: Time-standard-deviation ocean mixed layer depth defined by sigma theta + 0.125 kg m-3 + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267116 + shortname: std_mlott02 + longname: Time-standard-deviation ocean mixed layer depth defined by temperature + 0.2 C + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267117 + shortname: std_mlott05 + longname: Time-standard-deviation ocean mixed layer depth defined by temperature + 0.5 C + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267118 + shortname: std_sc300m + longname: Time-standard-deviation average sea water practical salinity in the upper + 300 m + units: g kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267119 + shortname: std_sc700m + longname: Time-standard-deviation average sea water practical salinity in the upper + 700 m + units: g kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267120 + shortname: std_scbtm + longname: Time-standard-deviation total column average sea water practical salinity + units: g kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267121 + shortname: std_hc300m + longname: Time-standard-deviation vertically-integrated heat content in the upper + 300 m + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267122 + shortname: std_hc700m + longname: Time-standard-deviation vertically-integrated heat content in the upper + 700 m + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267123 + shortname: std_hcbtm + longname: Time-standard-deviation total column of heat content + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267124 + shortname: std_zos + longname: Time-standard-deviation sea surface height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267125 + shortname: std_stheig + longname: Time-standard-deviation steric change in sea surface height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267126 + shortname: std_hstheig + longname: Time-standard-deviation halosteric change in sea surface height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267127 + shortname: std_tstheig + longname: Time-standard-deviation thermosteric change in sea surface height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267128 + shortname: std_thcline + longname: Time-standard-deviation thermocline depth + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267129 + shortname: std_btp + longname: Time-standard-deviation bottom pressure equivalent height + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267130 + shortname: std_swfup + longname: Time-standard-deviation net surface upward water flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267131 + shortname: std_fw2sw + longname: Time-standard-deviation fresh water flux into sea water (from rivers) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267132 + shortname: std_vsf2sw + longname: Time-standard-deviation virtual salt flux into sea water + units: g kg**-1 m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267133 + shortname: std_hfcorr + longname: Time-standard-deviation heat flux correction + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267134 + shortname: std_fwcorr + longname: Time-standard-deviation fresh water flux correction + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267135 + shortname: std_vsfcorr + longname: Time-standard-deviation virtual salt flux correction + units: g kg**-1 m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267136 + shortname: std_turbocl + longname: Time-standard-deviation turbocline depth (kz=5e-4) + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267137 + shortname: std_svy + longname: Time-standard-deviation Y-component of surface sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267138 + shortname: std_svx + longname: Time-standard-deviation X-component of surface sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267139 + shortname: std_svn + longname: Time-standard-deviation northward surface sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267140 + shortname: std_sve + longname: Time-standard-deviation eastward surface sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267141 + shortname: std_hct26 + longname: Time-standard-deviation heat content surface to 26C isotherm + units: J m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267142 + shortname: std_bckineta + longname: Time-standard-deviation sea surface height tendency due to parameterization + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267143 + shortname: std_zosib + longname: Time-standard-deviation sea surface height with inverse barometer correction + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267144 + shortname: std_pt300m + longname: Time-standard-deviation average sea water potential temperature in the + upper 300m + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267145 + shortname: std_sss + longname: Time-standard-deviation sea surface salinity + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267146 + shortname: std_sc300v + longname: Time-standard-deviation vertically integrated sea water practical salinity + in the upper 300 m + units: g kg**-1 m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267147 + shortname: std_sc700v + longname: Time-standard-deviation vertically integrated sea water practical salinity + in the upper 700 m + units: g kg**-1 m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267148 + shortname: std_scbtv + longname: Time-standard-deviation total column vertically integrated sea water practical + salinity + units: g kg**-1 m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267149 + shortname: std_rsdos + longname: Time-standard-deviation sea surface downward short-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267500 + shortname: std_so + longname: Time-standard-deviation sea water practical salinity + units: g kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267501 + shortname: std_thetao + longname: Time-standard-deviation sea water potential temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267502 + shortname: std_sigmat + longname: Time-standard-deviation sea water sigma theta + units: kg m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267503 + shortname: std_voy + longname: Time-standard-deviation Y-component of sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267504 + shortname: std_uox + longname: Time-standard-deviation X-component of sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267505 + shortname: std_von + longname: Time-standard-deviation northward sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267506 + shortname: std_uoe + longname: Time-standard-deviation eastward sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267507 + shortname: std_wo + longname: Time-standard-deviation upward sea water velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267508 + shortname: std_thetaodmp + longname: Time-standard-deviation sea water potential temperature tendency due to + newtonian relaxation + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267509 + shortname: std_sodmp + longname: Time-standard-deviation sea water salinity tendency due to newtonian relaxation + units: g kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267510 + shortname: std_bckint + longname: Time-standard-deviation sea water temperature tendency due to parameterization + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267511 + shortname: std_bckins + longname: Time-standard-deviation sea water salinity tendency due to parameterization + units: g kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267512 + shortname: std_bckine + longname: Time-standard-deviation eastward sea water velocity tendency due to parameterization + units: m s**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267513 + shortname: std_bckinn + longname: Time-standard-deviation northward sea water velocity tendency due to parameterization + units: m s**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267514 + shortname: std_tdbiascorr + longname: Time-standard-deviation sea water temperature tendency due to direct bias + correction + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267515 + shortname: std_sdbiascorr + longname: Time-standard-deviation sea water salinity tendency due to direct bias + correction + units: g kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267516 + shortname: std_salo + longname: Time-standard-deviation sea water salinity + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267517 + shortname: std_mtn + longname: Time-standard-deviation northward mass transport + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267518 + shortname: std_mte + longname: Time-standard-deviation eastward mass transport + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267519 + shortname: std_zo + longname: Time-standard-deviation sea water depth + units: m + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267520 + shortname: std_mtup + longname: Time-standard-deviation sea water upward mass transport + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267521 + shortname: std_agessc + longname: Time-standard-deviation sea water age since surface contact + units: s + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267522 + shortname: std_rsdo + longname: Time-standard-deviation sea water downward short-wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267900 + shortname: std_ssr_sea + longname: Time-standard-deviation net short wave radiation rate at sea surface + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267901 + shortname: std_wst_sea + longname: Time-standard-deviation wind stress at sea surface + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267902 + shortname: std_10ws_sea + longname: Time-standard-deviation wind speed at 10m above sea surface + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267903 + shortname: std_10nd_sea + longname: Time-standard-deviation neutral drag coefficient at 10m above sea surface + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267904 + shortname: std_tprate_sea + longname: Time-standard-deviation total precipitation rate at sea surface + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267905 + shortname: std_snrate_sea + longname: Time-standard-deviation snow precipitation rate at sea surface + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267906 + shortname: std_ewst_sea + longname: Time-standard-deviation eastward component of wind stress over sea ice + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267907 + shortname: std_nwst_sea + longname: Time-standard-deviation northward component of wind stress over sea ice + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267908 + shortname: std_uwst_sea + longname: Time-standard-deviation U-component of wind stress over sea ice + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 267909 + shortname: std_vwst_sea + longname: Time-standard-deviation V-component of wind stress over sea ice + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 300001 + shortname: pres + longname: Pressure + units: hPa + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300002 + shortname: psnm + longname: Pressure reduced to msl + units: hPa + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300003 + shortname: tsps + longname: Pressure tendency + units: Pa s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300006 + shortname: geop + longname: Geopotential + units: dam + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300007 + shortname: zgeo + longname: Geopotential height + units: gpm + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300008 + shortname: gzge + longname: Geometric height + units: m + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300011 + shortname: temp + longname: Absolute temperature + units: K + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300012 + shortname: vtmp + longname: Virtual temperature + units: K + description: null + access_ids: [] + origin_ids: + - 0 + - 34 + - 46 +- id: 300013 + shortname: ptmp + longname: Potential temperature + units: K + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300014 + shortname: psat + longname: Pseudo-adiabatic potential temperature + units: K + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300015 + shortname: mxtp + longname: Maximum temperature + units: K + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300016 + shortname: mntp + longname: Minimum temperature + units: K + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300017 + shortname: tpor + longname: Dew point temperature + units: K + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300018 + shortname: dptd + longname: Dew point depression + units: K + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300019 + shortname: lpsr + longname: Lapse rate + units: K m**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300021 + shortname: rds1 + longname: Radar spectra(1) + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300022 + shortname: rds2 + longname: Radar spectra(2) + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300023 + shortname: rds3 + longname: Radar spectra(3) + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300025 + shortname: tpan + longname: Temperature anomaly + units: K + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300026 + shortname: psan + longname: Pressure anomaly + units: Pa hPa + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300027 + shortname: zgan + longname: Geopot height anomaly + units: m + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300028 + shortname: wvs1 + longname: Wave spectra(1) + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300029 + shortname: wvs2 + longname: Wave spectra(2) + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300030 + shortname: wvs3 + longname: Wave spectra(3) + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300031 + shortname: wind + longname: Wind direction + units: deg + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300032 + shortname: wins + longname: Wind speed + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300033 + shortname: uvel + longname: Zonal wind (u) + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300034 + shortname: vvel + longname: Meridional wind (v) + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300035 + shortname: fcor + longname: Stream function + units: m**2 s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300036 + shortname: potv + longname: Velocity potential + units: m**2 s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300038 + shortname: sgvv + longname: Sigma coord vert vel + units: s s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300039 + shortname: omeg + longname: Omega + units: Pa s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300040 + shortname: omg2 + longname: Vertical velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 34 + - 46 +- id: 300041 + shortname: abvo + longname: Absolute vorticity + units: 10**5 s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300042 + shortname: abdv + longname: Absolute divergence + units: 10**5 s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300043 + shortname: vort + longname: Vorticity + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300044 + shortname: divg + longname: Divergence + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300045 + shortname: vucs + longname: Vertical u-comp shear + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300046 + shortname: vvcs + longname: Vert v-comp shear + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300047 + shortname: dirc + longname: Direction of current + units: deg + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300048 + shortname: spdc + longname: Speed of current + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300049 + shortname: ucpc + longname: U-component of current + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300050 + shortname: vcpc + longname: V-component of current + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300051 + shortname: umes + longname: Specific humidity + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300052 + shortname: umrl + longname: Relative humidity + units: '~' + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300053 + shortname: hmxr + longname: Humidity mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300054 + shortname: agpl + longname: Inst. precipitable water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300055 + shortname: vapp + longname: Vapour pressure + units: Pa hPa + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300056 + shortname: sadf + longname: Saturation deficit + units: Pa hPa + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300057 + shortname: evap + longname: Evaporation + units: kg m**-2/day + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300059 + shortname: prcr + longname: Precipitation rate + units: kg m**-2/day + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300060 + shortname: thpb + longname: Thunder probability + units: '%' + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300061 + shortname: prec + longname: Total precipitation + units: kg m**-2/day + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300062 + shortname: prge + longname: Large scale precipitation + units: kg m**-2/day + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300063 + shortname: prcv + longname: Convective precipitation + units: kg m**-2/day + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300064 + shortname: neve + longname: Snowfall + units: kg m**-2/day + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300065 + shortname: wenv + longname: Wat equiv acc snow depth + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300066 + shortname: nvde + longname: Snow depth + units: cm + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300067 + shortname: mxld + longname: Mixed layer depth + units: m cm + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300068 + shortname: tthd + longname: Trans thermocline depth + units: m cm + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300069 + shortname: mthd + longname: Main thermocline depth + units: m cm + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300070 + shortname: mtha + longname: Main thermocline anom + units: m cm + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300071 + shortname: cbnv + longname: Cloud cover + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300072 + shortname: cvnv + longname: Convective cloud cover + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300073 + shortname: lwnv + longname: Low cloud cover + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300074 + shortname: mdnv + longname: Medium cloud cover + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300075 + shortname: hinv + longname: High cloud cover + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300076 + shortname: wtnv + longname: Cloud water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300077 + shortname: bli + longname: Best lifted index (to 500 hpa) + units: K + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300081 + shortname: lsmk + longname: Land sea mask + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300082 + shortname: dslm + longname: Dev sea_lev from mean + units: m + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300083 + shortname: zorl + longname: Roughness length + units: m + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300084 + shortname: albe + longname: Albedo + units: '%' + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300085 + shortname: dstp + longname: Deep soil temperature + units: K + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300086 + shortname: soic + longname: Soil moisture content + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300087 + shortname: vege + longname: Vegetation + units: '%' + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300089 + shortname: dens + longname: Density + units: kg m**-3 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300091 + shortname: icec + longname: Ice concentration + units: Fraction + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300092 + shortname: icet + longname: Ice thickness + units: m + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300093 + shortname: iced + longname: Direction of ice drift + units: deg + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300094 + shortname: ices + longname: Speed of ice drift + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300095 + shortname: iceu + longname: U-comp of ice drift + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300096 + shortname: icev + longname: V-comp of ice drift + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300097 + shortname: iceg + longname: Ice growth + units: m + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300098 + shortname: icdv + longname: Ice divergence + units: s s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300100 + shortname: shcw + longname: Sig hgt com wave/swell + units: m + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300101 + shortname: wwdi + longname: Direction of wind wave + units: deg + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300102 + shortname: wwsh + longname: Sig hght of wind waves + units: m + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300103 + shortname: wwmp + longname: Mean period wind waves + units: s + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300104 + shortname: swdi + longname: Direction of swell wave + units: deg + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300105 + shortname: swsh + longname: Sig height swell waves + units: m + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300106 + shortname: swmp + longname: Mean period swell waves + units: s + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300107 + shortname: prwd + longname: Primary wave direction + units: deg + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300108 + shortname: prmp + longname: Prim wave mean period + units: s + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300109 + shortname: swdi + longname: Second wave direction + units: deg + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300110 + shortname: swmp + longname: Second wave mean period + units: s + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300111 + shortname: ocas + longname: Short wave absorbed at ground + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300112 + shortname: slds + longname: Net long wave at bottom + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300113 + shortname: nswr + longname: Net short-wav rad(top) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300114 + shortname: role + longname: Outgoing long wave at top + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300115 + shortname: lwrd + longname: Long-wav rad + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300116 + shortname: swea + longname: Short wave absorbed by earth/atmosphere + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300117 + shortname: glbr + longname: Global radiation + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300121 + shortname: clsf + longname: Latent heat flux from surface + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300122 + shortname: cssf + longname: Sensible heat flux from surface + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300123 + shortname: blds + longname: Bound layer dissipation + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300127 + shortname: imag + longname: Image + units: image^data + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300128 + shortname: tp2m + longname: 2 metre temperature + units: K + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300129 + shortname: dp2m + longname: 2 metre dewpoint temperature + units: K + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300130 + shortname: u10m + longname: 10 metre u-wind component + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300131 + shortname: v10m + longname: 10 metre v-wind component + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300132 + shortname: topo + longname: Topography + units: m + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300133 + shortname: gsfp + longname: Geometric mean surface pressure + units: hPa + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300134 + shortname: lnsp + longname: Ln surface pressure + units: hPa + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300135 + shortname: pslc + longname: Surface pressure + units: hPa + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300136 + shortname: pslm + longname: M s l pressure (mesinger method) + units: hPa + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300137 + shortname: mask + longname: Mask + units: -/+ + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300138 + shortname: mxwu + longname: Maximum u-wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300139 + shortname: mxwv + longname: Maximum v-wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300140 + shortname: cape + longname: Convective avail. pot.energy + units: m**2 s**-12 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300141 + shortname: cine + longname: Convective inhib. energy + units: m**2 s**-12 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300142 + shortname: lhcv + longname: Convective latent heating + units: K s**-2 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300143 + shortname: mscv + longname: Convective moisture source + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300144 + shortname: scvm + longname: Shallow conv. moisture source + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300145 + shortname: scvh + longname: Shallow convective heating + units: K s**-2 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300146 + shortname: mxwp + longname: Maximum wind press. lvl + units: hPa + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300147 + shortname: ustr + longname: Storm motion u-component + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300148 + shortname: vstr + longname: Storm motion v-component + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300149 + shortname: cbnt + longname: Mean cloud cover + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300150 + shortname: pcbs + longname: Pressure at cloud base + units: hPa + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300151 + shortname: pctp + longname: Pressure at cloud top + units: hPa + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300152 + shortname: fzht + longname: Freezing level height + units: m + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300153 + shortname: fzrh + longname: Freezing level relative humidity + units: '%' + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300154 + shortname: fdlt + longname: Flight levels temperature + units: K + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300155 + shortname: fdlu + longname: Flight levels u-wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300156 + shortname: fdlv + longname: Flight levels v-wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300157 + shortname: tppp + longname: Tropopause pressure + units: hPa + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300158 + shortname: tppt + longname: Tropopause temperature + units: K + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300159 + shortname: tppu + longname: Tropopause u-wind component + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300160 + shortname: tppv + longname: Tropopause v-wind component + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300162 + shortname: gvdu + longname: Gravity wave drag du/dt + units: m s**-12 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300163 + shortname: gvdv + longname: Gravity wave drag dv/dt + units: m s**-12 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300164 + shortname: gvus + longname: Gravity wave drag sfc zonal stress + units: Pa + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300165 + shortname: gvvs + longname: Gravity wave drag sfc meridional stress + units: Pa + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300167 + shortname: dvsh + longname: Divergence of specific humidity + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300168 + shortname: hmfc + longname: Horiz. moisture flux conv. + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300169 + shortname: vmfl + longname: Vert. integrated moisture flux conv. + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300170 + shortname: vadv + longname: Vertical moisture advection + units: kg kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300171 + shortname: nhcm + longname: Neg. hum. corr. moisture source + units: kg kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300172 + shortname: lglh + longname: Large scale latent heating + units: K s**-2 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300173 + shortname: lgms + longname: Large scale moisture source + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300174 + shortname: smav + longname: Soil moisture availability + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300175 + shortname: tgrz + longname: Soil temperature of root zone + units: K + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300176 + shortname: bslh + longname: Bare soil latent heat + units: Ws m**-2 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300177 + shortname: evpp + longname: Potential sfc evaporation + units: m + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300178 + shortname: rnof + longname: Runoff + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300179 + shortname: pitp + longname: Interception loss + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 34 + - 46 +- id: 300180 + shortname: vpca + longname: Vapor pressure of canopy air space + units: mb + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300181 + shortname: qsfc + longname: Surface spec humidity + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300182 + shortname: ussl + longname: Soil wetness of surface + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 34 + - 46 +- id: 300183 + shortname: uzrs + longname: Soil wetness of root zone + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300184 + shortname: uzds + longname: Soil wetness of drainage zone + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300185 + shortname: amdl + longname: Storage on canopy + units: m + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300186 + shortname: amsl + longname: Storage on ground + units: m + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300187 + shortname: tsfc + longname: Surface temperature + units: K + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300188 + shortname: tems + longname: Surface absolute temperature + units: K + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300189 + shortname: tcas + longname: Temperature of canopy air space + units: K + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300190 + shortname: ctmp + longname: Temperature at canopy + units: K + description: null + access_ids: [] + origin_ids: + - 34 + - 46 +- id: 300191 + shortname: tgsc + longname: Ground/surface cover temperature + units: K + description: null + access_ids: [] + origin_ids: + - 34 + - 46 +- id: 300192 + shortname: uves + longname: Surface zonal wind (u) + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300193 + shortname: usst + longname: Surface zonal wind stress + units: Pa + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300194 + shortname: vves + longname: Surface meridional wind (v) + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300195 + shortname: vsst + longname: Surface meridional wind stress + units: Pa + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300196 + shortname: suvf + longname: Surface momentum flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300197 + shortname: iswf + longname: Incident short wave flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300198 + shortname: ghfl + longname: Time ave ground ht flx + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300200 + shortname: lwbc + longname: Net long wave at bottom (clear) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300201 + shortname: lwtc + longname: Outgoing long wave at top (clear) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300202 + shortname: swec + longname: Short wv absrbd by earth/atmos (clear) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300203 + shortname: ocac + longname: Short wave absorbed at ground (clear) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300205 + shortname: lwrh + longname: Long wave radiative heating + units: K s**-2 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300206 + shortname: swrh + longname: Short wave radiative heating + units: K s**-2 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300207 + shortname: olis + longname: Downward long wave at bottom + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300208 + shortname: olic + longname: Downward long wave at bottom (clear) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300209 + shortname: ocis + longname: Downward short wave at ground + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300210 + shortname: ocic + longname: Downward short wave at ground (clear) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300211 + shortname: oles + longname: Upward long wave at bottom + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300212 + shortname: oces + longname: Upward short wave at ground + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300213 + shortname: swgc + longname: Upward short wave at ground (clear) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300214 + shortname: roce + longname: Upward short wave at top + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300215 + shortname: swtc + longname: Upward short wave at top (clear) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300218 + shortname: hhdf + longname: Horizontal heating diffusion + units: K s**-2 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300219 + shortname: hmdf + longname: Horizontal moisture diffusion + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300220 + shortname: hddf + longname: Horizontal divergence diffusion + units: s**-12 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300221 + shortname: hvdf + longname: Horizontal vorticity diffusion + units: s**-12 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300222 + shortname: vdms + longname: Vertical diff. moisture source + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300223 + shortname: vdfu + longname: Vertical diffusion du/dt + units: m s**-12 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300224 + shortname: vdfv + longname: Vertical diffusion dv/dt + units: m s**-12 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300225 + shortname: vdfh + longname: Vertical diffusion heating + units: K s**-2 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300226 + shortname: umrs + longname: Surface relative humidity + units: '~' + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300227 + shortname: vdcc + longname: Vertical dist total cloud cover + units: '~' + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300230 + shortname: usmt + longname: Time mean surface zonal wind (u) + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300231 + shortname: vsmt + longname: Time mean surface meridional wind (v) + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300232 + shortname: tsmt + longname: Time mean surface absolute temperature + units: K + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300233 + shortname: rsmt + longname: Time mean surface relative humidity + units: '~' + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300234 + shortname: atmt + longname: Time mean absolute temperature + units: K + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300235 + shortname: stmt + longname: Time mean deep soil temperature + units: K + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300236 + shortname: ommt + longname: Time mean derived omega + units: Pa s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300237 + shortname: dvmt + longname: Time mean divergence + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300238 + shortname: zhmt + longname: Time mean geopotential height + units: m + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300239 + shortname: lnmt + longname: Time mean log surface pressure + units: ln(cbar) + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300240 + shortname: mkmt + longname: Time mean mask + units: -/+ + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300241 + shortname: vvmt + longname: Time mean meridional wind (v) + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300242 + shortname: omtm + longname: Time mean omega + units: cbar s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300243 + shortname: ptmt + longname: Time mean potential temperature + units: K + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300244 + shortname: pcmt + longname: Time mean precip. water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300245 + shortname: rhmt + longname: Time mean relative humidity + units: '%' + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300246 + shortname: mpmt + longname: Time mean sea level pressure + units: hPa + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300247 + shortname: simt + longname: Time mean sigmadot + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300248 + shortname: uemt + longname: Time mean specific humidity + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300249 + shortname: fcmt + longname: Time mean stream function + units: m**2 s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300250 + shortname: psmt + longname: Time mean surface pressure + units: hPa + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300251 + shortname: tmmt + longname: Time mean surface temperature + units: K + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300252 + shortname: pvmt + longname: Time mean velocity potential + units: m**2 s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300253 + shortname: tvmt + longname: Time mean virtual temperature + units: K + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300254 + shortname: vtmt + longname: Time mean vorticity + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 300255 + shortname: uvmt + longname: Time mean zonal wind (u) + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 46 +- id: 400000 + shortname: mdens + longname: Mass density + units: kg m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 400001 + shortname: avg_mdens + longname: Time-mean mass density + units: kg m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 400003 + shortname: max_mdens + longname: Time-maximum mass density + units: kg m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 400004 + shortname: min_mdens + longname: Time-minimum mass density + units: kg m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 400005 + shortname: std_mdens + longname: Time-standard-deviation mass density + units: kg m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 401000 + shortname: tcvimd + longname: Total column vertically-integrated mass density + units: kg m**-2 + description: '' + access_ids: [] + origin_ids: + - 0 +- id: 401001 + shortname: avg_tcvimd + longname: Time-mean total column vertically-integrated mass density + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 401003 + shortname: max_tcvimd + longname: Time-maximum total column vertically-integrated mass density + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 401004 + shortname: min_tcvimd + longname: Time-minimum total column vertically-integrated mass density + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 401005 + shortname: std_tcvimd + longname: Time-standard-deviation total column vertically-integrated mass density + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 402000 + shortname: mass_mixrat + longname: Mass mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 402001 + shortname: avg_mass_mixrat + longname: Time-mean mass mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 402003 + shortname: max_mass_mixrat + longname: Time-maximum mass mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 402004 + shortname: min_mass_mixrat + longname: Time-minimum mass mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 402005 + shortname: std_mass_mixrat + longname: Time-standard-deviation mass mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 403000 + shortname: emi_mflx + longname: Emission mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 403001 + shortname: avg_emi_mflx + longname: Time-mean emission mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 403003 + shortname: max_emi_mflx + longname: Time-maximum emission mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 403004 + shortname: min_emi_mflx + longname: Time-minimum emission mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 403005 + shortname: std_emi_mflx + longname: Time-standard-deviation emission mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 404000 + shortname: drydep_vel + longname: Dry deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 404001 + shortname: avg_drydep_vel + longname: Time-mean dry deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 404003 + shortname: max_drydep_vel + longname: Time-maximum dry deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 404004 + shortname: min_drydep_vel + longname: Time-minimum dry deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 404005 + shortname: std_drydep_vel + longname: Time-standard-deviation dry deposition velocity + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 405000 + shortname: wetdep_mflx + longname: Wet deposition mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 405001 + shortname: avg_wetdep_mflx + longname: Time-mean wet deposition mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 405003 + shortname: max_wetdep_mflx + longname: Time-maximum wet deposition mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 405004 + shortname: min_wetdep_mflx + longname: Time-minimum wet deposition mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 405005 + shortname: std_wetdep_mflx + longname: Time-standard-deviation wet deposition mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 406000 + shortname: drydep_mflx + longname: Dry deposition mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 406001 + shortname: avg_drydep_mflx + longname: Time-mean dry deposition mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 406003 + shortname: max_drydep_mflx + longname: Time-maximum dry deposition mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 406004 + shortname: min_drydep_mflx + longname: Time-minimum dry deposition mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 406005 + shortname: std_drydep_mflx + longname: Time-standard-deviation dry deposition mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 407000 + shortname: sed_mflx + longname: Sedimentation mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 407001 + shortname: avg_sed_mflx + longname: Time-mean sedimentation mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 407003 + shortname: max_sed_mflx + longname: Time-maximum sedimentation mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 407004 + shortname: min_sed_mflx + longname: Time-minimum sedimentation mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 407005 + shortname: std_sed_mflx + longname: Time-standard-deviation sedimentation mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 408000 + shortname: vol_mixrat + longname: Volume mixing ratio + units: mol mol**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 408001 + shortname: avg_vol_mixrat + longname: Time-mean volume mixing ratio + units: mol mol**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 408003 + shortname: max_vol_mixrat + longname: Time-maximum volume mixing ratio + units: mol mol**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 408004 + shortname: min_vol_mixrat + longname: Time-minimum volume mixing ratio + units: mol mol**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 408005 + shortname: std_vol_mixrat + longname: Time-standard-deviation volume mixing ratio + units: mol mol**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 409000 + shortname: vm_tc_vol_mixrat + longname: Volume-mean total column mixing ratio + units: mol mol**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 409001 + shortname: avg_vm_tc_vol_mixrat + longname: Time-mean volume-mean total column mixing ratio + units: mol mol**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 409003 + shortname: max_vm_tc_vol_mixrat + longname: Time-maximum volume-mean total column mixing ratio + units: mol mol**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 409004 + shortname: min_vm_tc_vol_mixrat + longname: Time-minimum volume-mean total column mixing ratio + units: mol mol**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 409005 + shortname: std_vm_tc_vol_mixrat + longname: Time-standard-deviation volume-mean total column mixing ratio + units: mol mol**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 410000 + shortname: wetdep_mflx_lsp + longname: Wet deposition mass flux by large-scale precipitation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 410001 + shortname: avg_wetdep_mflx_lsp + longname: Time-mean wet deposition mass flux by large-scale precipitation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 410003 + shortname: max_wetdep_mflx_lsp + longname: Time-maximum wet deposition mass flux by large-scale precipitation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 410004 + shortname: min_wetdep_mflx_lsp + longname: Time-minimum wet deposition mass flux by large-scale precipitation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 410005 + shortname: std_wetdep_mflx_lsp + longname: Time-standard-deviation wet deposition mass flux by large-scale precipitation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 411000 + shortname: wetdep_mflx_cp + longname: Wet deposition mass flux by convective precipitation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 411001 + shortname: avg_wetdep_mflx_cp + longname: Time-mean wet deposition mass flux by convective precipitation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 411003 + shortname: max_wetdep_mflx_cp + longname: Time-maximum wet deposition mass flux by convective precipitation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 411004 + shortname: min_wetdep_mflx_cp + longname: Time-minimum wet deposition mass flux by convective precipitation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 411005 + shortname: std_wetdep_mflx_cp + longname: Time-standard-deviation wet deposition mass flux by convective precipitation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 412000 + shortname: emi_mflx_veg + longname: Emission mass flux from vegetation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 412001 + shortname: avg_emi_mflx_veg + longname: Time-mean emission mass flux from vegetation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 412003 + shortname: max_emi_mflx_veg + longname: Time-maximum emission mass flux from vegetation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 412004 + shortname: min_emi_mflx_veg + longname: Time-minimum emission mass flux from vegetation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 412005 + shortname: std_emi_mflx_veg + longname: Time-standard-deviation emission mass flux from vegetation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 413000 + shortname: emi_mflx_natsrc + longname: Emission mass flux from natural sources + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 413001 + shortname: avg_emi_mflx_natsrc + longname: Time-mean emission mass flux from natural sources + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 413003 + shortname: max_emi_mflx_natsrc + longname: Time-maximum emission mass flux from natural sources + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 413004 + shortname: min_emi_mflx_natsrc + longname: Time-minimum emission mass flux from natural sources + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 413005 + shortname: std_emi_mflx_natsrc + longname: Time-standard-deviation emission mass flux from natural sources + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 414000 + shortname: emi_mflx_antsrc + longname: Emission mass flux from anthropogenic sources + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 414001 + shortname: avg_emi_mflx_antsrc + longname: Time-mean emission mass flux from anthropogenic sources + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 414003 + shortname: max_emi_mflx_antsrc + longname: Time-maximum emission mass flux from anthropogenic sources + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 414004 + shortname: min_emi_mflx_antsrc + longname: Time-minimum emission mass flux from anthropogenic sources + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 414005 + shortname: std_emi_mflx_antsrc + longname: Time-standard-deviation emission mass flux from anthropogenic sources + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 415000 + shortname: emi_mflx_elevantsrc + longname: Emission mass flux from elevated anthropogenic sources + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 415001 + shortname: avg_emi_mflx_elevantsrc + longname: Time-mean emission mass flux from elevated anthropogenic sources + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 415003 + shortname: max_emi_mflx_elevantsrc + longname: Time-maximum emission mass flux from elevated anthropogenic sources + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 415004 + shortname: min_emi_mflx_elevantsrc + longname: Time-minimum emission mass flux from elevated anthropogenic sources + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 415005 + shortname: std_emi_mflx_elevantsrc + longname: Time-standard-deviation emission mass flux from elevated anthropogenic + sources + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 416000 + shortname: emi_mflx_sfcantsrc + longname: Emission mass flux from surface anthropogenic sources + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 416001 + shortname: avg_emi_mflx_sfcantsrc + longname: Time-mean emission mass flux from surface anthropogenic sources + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 416003 + shortname: max_emi_mflx_sfcantsrc + longname: Time-maximum emission mass flux from surface anthropogenic sources + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 416004 + shortname: min_emi_mflx_sfcantsrc + longname: Time-minimum emission mass flux from surface anthropogenic sources + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 416005 + shortname: std_emi_mflx_sfcantsrc + longname: Time-standard-deviation emission mass flux from surface anthropogenic + sources + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 417000 + shortname: emi_mflx_biomburn + longname: Emission mass flux from biomass burning + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 417001 + shortname: avg_emi_mflx_biomburn + longname: Time-mean emission mass flux from biomass burning + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 417003 + shortname: max_emi_mflx_biomburn + longname: Time-maximum emission mass flux from biomass burning + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 417004 + shortname: min_emi_mflx_biomburn + longname: Time-minimum emission mass flux from biomass burning + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 417005 + shortname: std_emi_mflx_biomburn + longname: Time-standard-deviation emission mass flux from biomass burning + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 418000 + shortname: emi_mflx_aviation + longname: Emission from aviation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 418001 + shortname: avg_emi_mflx_aviation + longname: Time-mean emission from aviation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 418003 + shortname: max_emi_mflx_aviation + longname: Time-maximum emission from aviation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 418004 + shortname: min_emi_mflx_aviation + longname: Time-minimum emission from aviation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 418005 + shortname: std_emi_mflx_aviation + longname: Time-standard-deviation emission from aviation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 419000 + shortname: emi_mflx_agriliv + longname: Emission mass flux from agriculture livestock + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 419001 + shortname: avg_emi_mflx_agriliv + longname: Time-mean emission mass flux from agriculture livestock + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 419003 + shortname: max_emi_mflx_agriliv + longname: Time-maximum emission mass flux from agriculture livestock + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 419004 + shortname: min_emi_mflx_agriliv + longname: Time-minimum emission mass flux from agriculture livestock + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 419005 + shortname: std_emi_mflx_agriliv + longname: Time-standard-deviation emission mass flux from agriculture livestock + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 420000 + shortname: emi_mflx_agrisol + longname: Emission mass flux from agriculture soils + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 420001 + shortname: avg_emi_mflx_agrisol + longname: Time-mean emission mass flux from agriculture soils + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 420003 + shortname: max_emi_mflx_agrisol + longname: Time-maximum emission mass flux from agriculture soils + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 420004 + shortname: min_emi_mflx_agrisol + longname: Time-minimum emission mass flux from agriculture soils + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 420005 + shortname: std_emi_mflx_agrisol + longname: Time-standard-deviation emission mass flux from agriculture soils + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 421000 + shortname: emi_mflx_agriwasburn + longname: Emission mass flux from agricultural waste burning + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 421001 + shortname: avg_emi_mflx_agriwasburn + longname: Time-mean emission mass flux from agricultural waste burning + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 421003 + shortname: max_emi_mflx_agriwasburn + longname: Time-maximum emission mass flux from agricultural waste burning + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 421004 + shortname: min_emi_mflx_agriwasburn + longname: Time-minimum emission mass flux from agricultural waste burning + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 421005 + shortname: std_emi_mflx_agriwasburn + longname: Time-standard-deviation emission mass flux from agricultural waste burning + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 422000 + shortname: emi_mflx_rescomb + longname: Emission mass flux from residential, commercial and other combustion + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 422001 + shortname: avg_emi_mflx_rescomb + longname: Time-mean emission mass flux from residential, commercial and other combustion + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 422003 + shortname: max_emi_mflx_rescomb + longname: Time-maximum emission mass flux from residential, commercial and other + combustion + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 422004 + shortname: min_emi_mflx_rescomb + longname: Time-minimum emission mass flux from residential, commercial and other + combustion + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 422005 + shortname: std_emi_mflx_rescomb + longname: Time-standard-deviation emission mass flux from residential, commercial + and other combustion + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 423000 + shortname: emi_mflx_powgen + longname: Emission mass flux from power generation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 423001 + shortname: avg_emi_mflx_powgen + longname: Time-mean emission mass flux from power generation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 423003 + shortname: max_emi_mflx_powgen + longname: Time-maximum emission mass flux from power generation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 423004 + shortname: min_emi_mflx_powgen + longname: Time-minimum emission mass flux from power generation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 423005 + shortname: std_emi_mflx_powgen + longname: Time-standard-deviation emission mass flux from power generation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 424000 + shortname: emi_mflx_fug + longname: Emission mass flux from fugitives + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 424001 + shortname: avg_emi_mflx_fug + longname: Time-mean emission mass flux from fugitives + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 424003 + shortname: max_emi_mflx_fug + longname: Time-maximum emission mass flux from fugitives + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 424004 + shortname: min_emi_mflx_fug + longname: Time-minimum emission mass flux from fugitives + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 424005 + shortname: std_emi_mflx_fug + longname: Time-standard-deviation emission mass flux from fugitives + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 425000 + shortname: emi_mflx_indproc + longname: Emission mass flux from industrial process + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 425001 + shortname: avg_emi_mflx_indproc + longname: Time-mean emission mass flux from industrial process + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 425003 + shortname: max_emi_mflx_indproc + longname: Time-maximum emission mass flux from industrial process + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 425004 + shortname: min_emi_mflx_indproc + longname: Time-minimum emission mass flux from industrial process + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 425005 + shortname: std_emi_mflx_indproc + longname: Time-standard-deviation emission mass flux from industrial process + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 426000 + shortname: emi_mflx_solv + longname: Emission mass flux from solvents + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 426001 + shortname: avg_emi_mflx_solv + longname: Time-mean emission mass flux from solvents + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 426003 + shortname: max_emi_mflx_solv + longname: Time-maximum emission mass flux from solvents + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 426004 + shortname: min_emi_mflx_solv + longname: Time-minimum emission mass flux from solvents + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 426005 + shortname: std_emi_mflx_solv + longname: Time-standard-deviation emission mass flux from solvents + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 427000 + shortname: emi_mflx_shp + longname: Emission mass flux from ships + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 427001 + shortname: avg_emi_mflx_shp + longname: Time-mean emission mass flux from ships + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 427003 + shortname: max_emi_mflx_shp + longname: Time-maximum emission mass flux from ships + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 427004 + shortname: min_emi_mflx_shp + longname: Time-minimum emission mass flux from ships + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 427005 + shortname: std_emi_mflx_shp + longname: Time-standard-deviation emission mass flux from ships + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 428000 + shortname: emi_mflx_wastes + longname: Emission mass flux from wastes (solid and water) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 428001 + shortname: avg_emi_mflx_wastes + longname: Time-mean emission mass flux from wastes (solid and water) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 428003 + shortname: max_emi_mflx_wastes + longname: Time-maximum emission mass flux from wastes (solid and water) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 428004 + shortname: min_emi_mflx_wastes + longname: Time-minimum emission mass flux from wastes (solid and water) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 428005 + shortname: std_emi_mflx_wastes + longname: Time-standard-deviation emission mass flux from wastes (solid and water) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 429000 + shortname: emi_mflx_offrdtrans + longname: Emission mass flux from off-road transportation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 429001 + shortname: avg_emi_mflx_offrdtrans + longname: Time-mean emission mass flux from off-road transportation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 429003 + shortname: max_emi_mflx_offrdtrans + longname: Time-maximum emission mass flux from off-road transportation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 429004 + shortname: min_emi_mflx_offrdtrans + longname: Time-minimum emission mass flux from off-road transportation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 429005 + shortname: std_emi_mflx_offrdtrans + longname: Time-standard-deviation emission mass flux from off-road transportation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 430000 + shortname: emi_mflx_rdtrans + longname: Emission mass flux from road transportation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 430001 + shortname: avg_emi_mflx_rdtrans + longname: Time-mean emission mass flux from road transportation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 430003 + shortname: max_emi_mflx_rdtrans + longname: Time-maximum emission mass flux from road transportation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 430004 + shortname: min_emi_mflx_rdtrans + longname: Time-minimum emission mass flux from road transportation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 430005 + shortname: std_emi_mflx_rdtrans + longname: Time-standard-deviation emission mass flux from road transportation + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 431000 + shortname: emi_mflx_suppowstn + longname: Emission mass flux from super power stations + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 431001 + shortname: avg_emi_mflx_suppowstn + longname: Time-mean emission mass flux from super power stations + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 431003 + shortname: max_emi_mflx_suppowstn + longname: Time-maximum emission mass flux from super power stations + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 431004 + shortname: min_emi_mflx_suppowstn + longname: Time-minimum emission mass flux from super power stations + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 431005 + shortname: std_emi_mflx_suppowstn + longname: Time-standard-deviation emission mass flux from super power stations + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 432000 + shortname: emi_mflx_settl + longname: Emission mass flux from settlements + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 432001 + shortname: avg_emi_mflx_settl + longname: Time-mean emission mass flux from settlements + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 432003 + shortname: max_emi_mflx_settl + longname: Time-maximum emission mass flux from settlements + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 432004 + shortname: min_emi_mflx_settl + longname: Time-minimum emission mass flux from settlements + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 432005 + shortname: std_emi_mflx_settl + longname: Time-standard-deviation emission mass flux from settlements + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 433000 + shortname: emi_mflx_vol + longname: Emission mass flux from volcanoes + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 433001 + shortname: avg_emi_mflx_vol + longname: Time-mean emission mass flux from volcanoes + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 433003 + shortname: max_emi_mflx_vol + longname: Time-maximum emission mass flux from volcanoes + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 433004 + shortname: min_emi_mflx_vol + longname: Time-minimum emission mass flux from volcanoes + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 433005 + shortname: std_emi_mflx_vol + longname: Time-standard-deviation emission mass flux from volcanoes + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 434000 + shortname: emi_mflx_wetl + longname: Emission mass flux from wetlands + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 434001 + shortname: avg_emi_mflx_wetl + longname: Time-mean emission mass flux from wetlands + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 434003 + shortname: max_emi_mflx_wetl + longname: Time-maximum emission mass flux from wetlands + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 434004 + shortname: min_emi_mflx_wetl + longname: Time-minimum emission mass flux from wetlands + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 434005 + shortname: std_emi_mflx_wetl + longname: Time-standard-deviation emission mass flux from wetlands + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 435000 + shortname: neef + longname: Net ecosystem exchange flux + units: kg m**-2 s**-1 + description: 'This parameter can be used with templates for chemical constituents + to specify a chemical species if needed, for example: Net ecosystem CO2 exchange + flux or Net ecosystem CH4 exchange flux.' + access_ids: [] + origin_ids: + - 0 +- id: 435001 + shortname: mneef + longname: Mean net ecosystem exchange flux + units: kg m**-2 s**-1 + description: 'This parameter can be used with templates for chemical constituents + to specify a chemical species if needed, for example: Mean net ecosystem CO2 exchange + flux or Mean net ecosystem CH4 exchange flux.' + access_ids: [] + origin_ids: + - 0 +- id: 435002 + shortname: aneef + longname: Accumulated net ecosystem exchange flux + units: kg m**-2 + description: 'This parameter can be used with templates for chemical constituents + to specify a chemical species if needed, for example: Accumulated net ecosystem + CO2 exchange flux or Accumulated net ecosystem CH4 exchange flux.' + access_ids: [] + origin_ids: + - 0 +- id: 435003 + shortname: max_neef + longname: Time-maximum net ecosystem exchange flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 435004 + shortname: min_neef + longname: Time-minimum net ecosystem exchange flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 435005 + shortname: std_neef + longname: Time-standard-deviation net ecosystem exchange flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 436000 + shortname: gppf + longname: Gross primary production flux + units: kg m**-2 s**-1 + description: 'This parameter can be used with templates for chemical constituents + to specify a chemical species if needed, for example: Gross primary CO2 production + flux or Gross primary CH4 production flux.' + access_ids: [] + origin_ids: + - 0 +- id: 436001 + shortname: mgppf + longname: Mean gross primary production flux + units: kg m**-2 s**-1 + description: 'This parameter can be used with templates for chemical constituents + to specify a chemical species if needed, for example: Mean gross primary CO2 production + flux or Mean gross primary CH4 production flux.' + access_ids: [] + origin_ids: + - 0 +- id: 436002 + shortname: agppf + longname: Accumulated gross primary production flux + units: kg m**-2 + description: 'This parameter can be used with templates for chemical constituents + to specify a chemical species if needed, for example: Accumulated gross primary + CO2 production flux or Accumulated gross primary CH4 production flux.' + access_ids: [] + origin_ids: + - 0 +- id: 436003 + shortname: max_gppf + longname: Time-maximum gross primary production flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 436004 + shortname: min_gppf + longname: Time-minimum gross primary production flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 436005 + shortname: std_gppf + longname: Time-standard-deviation gross primary production flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 437000 + shortname: erf + longname: Ecosystem respiration flux + units: kg m**-2 s**-1 + description: 'This parameter can be used with templates for chemical constituents + to specify a chemical species if needed, for example: Ecosystem CO2 respiration + flux or Ecosystem CH4 respiration flux.' + access_ids: [] + origin_ids: + - 0 +- id: 437001 + shortname: merf + longname: Mean ecosystem respiration flux + units: kg m**-2 s**-1 + description: 'This parameter can be used with templates for chemical constituents + to specify a chemical species if needed, for example: Mean ecosystem CO2 respiration + flux or Mean ecosystem CH4 respiration flux.' + access_ids: [] + origin_ids: + - 0 +- id: 437002 + shortname: aerf + longname: Accumulated ecosystem respiration flux + units: kg m**-2 + description: 'This parameter can be used with templates for chemical constituents + to specify a chemical species if needed, for example: Accumulated ecosystem CO2 + respiration flux or Accumulated ecosystem CH4 respiration flux.' + access_ids: [] + origin_ids: + - 0 +- id: 437003 + shortname: max_erf + longname: Time-maximum ecosystem respiration flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 437004 + shortname: min_erf + longname: Time-minimum ecosystem respiration flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 437005 + shortname: std_erf + longname: Time-standard-deviation ecosystem respiration flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 438000 + shortname: emi_mflx_biofuel + longname: Emission mass flux from bio fuel + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 438001 + shortname: avg_emi_mflx_biofuel + longname: Time-mean emission mass flux from bio fuel + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 438003 + shortname: max_emi_mflx_biofuel + longname: Time-maximum emission mass flux from bio fuel + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 438004 + shortname: min_emi_mflx_biofuel + longname: Time-minimum emission mass flux from bio fuel + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 438005 + shortname: std_emi_mflx_biofuel + longname: Time-standard-deviation emission mass flux from bio fuel + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 439000 + shortname: emi_mflx_fossilfuel + longname: Emission mass flux from fossil fuel + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 439001 + shortname: avg_emi_mflx_fossilfuel + longname: Time-mean emission mass flux from fossil fuel + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 439003 + shortname: max_emi_mflx_fossilfuel + longname: Time-maximum emission mass flux from fossil fuel + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 439004 + shortname: min_emi_mflx_fossilfuel + longname: Time-minimum emission mass flux from fossil fuel + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 439005 + shortname: std_emi_mflx_fossilfuel + longname: Time-standard-deviation emission mass flux from fossil fuel + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 440000 + shortname: emi_mflx_other + longname: Emission mass flux from other + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 440001 + shortname: avg_emi_mflx_other + longname: Time-mean emission mass flux from other + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 440003 + shortname: max_emi_mflx_other + longname: Time-maximum emission mass flux from other + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 440004 + shortname: min_emi_mflx_other + longname: Time-minimum emission mass flux from other + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 440005 + shortname: std_emi_mflx_other + longname: Time-standard-deviation emission mass flux from other + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 441000 + shortname: emi_mflx_ocean + longname: Emission mass flux from oceans + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 441001 + shortname: avg_emi_mflx_ocean + longname: Time-mean emission mass flux from oceans + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 441003 + shortname: max_emi_mflx_ocean + longname: Time-maximum emission mass flux from oceans + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 441004 + shortname: min_emi_mflx_ocean + longname: Time-minimum emission mass flux from oceans + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 441005 + shortname: std_emi_mflx_ocean + longname: Time-standard-deviation emission mass flux from oceans + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 442000 + shortname: emi_mflx_soil + longname: Emission mass flux from soil + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 442001 + shortname: avg_emi_mflx_soil + longname: Time-mean emission mass flux from soil + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 442003 + shortname: max_emi_mflx_soil + longname: Time-maximum emission mass flux from soil + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 442004 + shortname: min_emi_mflx_soil + longname: Time-minimum emission mass flux from soil + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 442005 + shortname: std_emi_mflx_soil + longname: Time-standard-deviation emission mass flux from soil + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 443000 + shortname: emi_mflx_wildanim + longname: Emission mass flux from wild animals + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 443001 + shortname: avg_emi_mflx_wildanim + longname: Time-mean emission mass flux from wild animals + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 443003 + shortname: max_emi_mflx_wildanim + longname: Time-maximum emission mass flux from wild animals + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 443004 + shortname: min_emi_mflx_wildanim + longname: Time-minimum emission mass flux from wild animals + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 443005 + shortname: std_emi_mflx_wildanim + longname: Time-standard-deviation emission mass flux from wild animals + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 444000 + shortname: acc_wetdep_mflx + longname: Accumulated wet deposition mass flux + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 445000 + shortname: acc_drydep_mflx + longname: Accumulated dry deposition mass flux + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 450000 + shortname: aer_ndens + longname: Aerosol number density + units: m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 450001 + shortname: avg_aer_ndens + longname: Time-mean aerosol number density + units: m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 450003 + shortname: max_aer_ndens + longname: Time-maximum aerosol number density + units: m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 450004 + shortname: min_aer_ndens + longname: Time-minimum aerosol number density + units: m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 450005 + shortname: std_aer_ndens + longname: Time-standard-deviation aerosol number density + units: m**-3 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 451000 + shortname: aer_negfix_mflx + longname: Aerosol negative fixer mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 451001 + shortname: avg_aer_negfix_mflx + longname: Time-mean aerosol negative fixer mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 451003 + shortname: max_aer_negfix_mflx + longname: Time-maximum aerosol negative fixer mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 451004 + shortname: min_aer_negfix_mflx + longname: Time-minimum aerosol negative fixer mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 451005 + shortname: std_aer_negfix_mflx + longname: Time-standard-deviation aerosol negative fixer mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 452000 + shortname: aer_sink_mflx + longname: Aerosol sink/loss mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 452001 + shortname: avg_aer_sink_mflx + longname: Time-mean aerosol sink/loss mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 452003 + shortname: max_aer_sink_mflx + longname: Time-maximum aerosol sink/loss mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 452004 + shortname: min_aer_sink_mflx + longname: Time-minimum aerosol sink/loss mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 452005 + shortname: std_aer_sink_mflx + longname: Time-standard-deviation aerosol sink/loss mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 453000 + shortname: aer_src_mflx + longname: Aerosol source/gain mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 453001 + shortname: avg_aer_src_mflx + longname: Time-mean aerosol source/gain mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 453003 + shortname: max_aer_src_mflx + longname: Time-maximum aerosol source/gain mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 453004 + shortname: min_aer_src_mflx + longname: Time-minimum aerosol source/gain mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 453005 + shortname: std_aer_src_mflx + longname: Time-standard-deviation aerosol source/gain mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 98 +- id: 454000 + shortname: mass_mixrat_vol + longname: Mass mixing ratio from volcanoes + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 454001 + shortname: avg_mass_mixrat_vol + longname: Time-mean mass mixing ratio from volcanoes + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 454003 + shortname: max_mass_mixrat_vol + longname: Time-maximum mass mixing ratio from volcanoes + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 454004 + shortname: min_mass_mixrat_vol + longname: Time-minimum mass mixing ratio from volcanoes + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 454005 + shortname: std_mass_mixrat_vol + longname: Time-standard-deviation mass mixing ratio from volcanoes + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 455000 + shortname: tc_mdens_vol + longname: Total column vertically-integrated mass density from volcanoes + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 455001 + shortname: avg_tc_mdens_vol + longname: Time-mean total column vertically-integrated mass density from volcanoes + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 455003 + shortname: max_tc_mdens_vol + longname: Time-maximum total column vertically-integrated mass density from volcanoes + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 455004 + shortname: min_tc_mdens_vol + longname: Time-minimum total column vertically-integrated mass density from volcanoes + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 455005 + shortname: std_tc_mdens_vol + longname: Time-standard-deviation total column vertically-integrated mass density + from volcanoes + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 456000 + shortname: drydep_vel_vol + longname: Dry deposition velocity from volcanoes + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 456001 + shortname: avg_drydep_vel_vol + longname: Time-mean dry deposition velocity from volcanoes + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 456003 + shortname: max_drydep_vel_vol + longname: Time-maximum dry deposition velocity from volcanoes + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 456004 + shortname: min_drydep_vel_vol + longname: Time-minimum dry deposition velocity from volcanoes + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 456005 + shortname: std_drydep_vel_vol + longname: Time-standard-deviation dry deposition velocity from volcanoes + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 457000 + shortname: aod + longname: Aerosol optical depth + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 457001 + shortname: avg_aod + longname: Time-mean aerosol optical depth + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 457003 + shortname: max_aod + longname: Time-maximum aerosol optical depth + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 457004 + shortname: min_aod + longname: Time-minimum aerosol optical depth + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 457005 + shortname: std_aod + longname: Time-standard-deviation aerosol optical depth + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 458000 + shortname: ssa + longname: Single scattering albedo + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 458001 + shortname: avg_ssa + longname: Time-mean single scattering albedo + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 458003 + shortname: max_ssa + longname: Time-maximum single scattering albedo + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 458004 + shortname: min_ssa + longname: Time-minimum single scattering albedo + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 458005 + shortname: std_ssa + longname: Time-standard-deviation single scattering albedo + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 0 +- id: 459000 + shortname: asymf + longname: Asymmetry Factor + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 459001 + shortname: avg_asymf + longname: Time-mean asymmetry Factor + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 459003 + shortname: max_asymf + longname: Time-maximum asymmetry Factor + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 459004 + shortname: min_asymf + longname: Time-minimum asymmetry Factor + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 459005 + shortname: std_asymf + longname: Time-standard-deviation asymmetry Factor + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 460000 + shortname: aerbscattoa + longname: Attenuated aerosol backscatter from top of atmosphere + units: m**-1 sr**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 460001 + shortname: avg_aerbscattoa + longname: Time-mean attenuated aerosol backscatter from top of atmosphere + units: m**-1 sr**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 460003 + shortname: max_aerbscattoa + longname: Time-maximum attenuated aerosol backscatter from top of atmosphere + units: m**-1 sr**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 460004 + shortname: min_aerbscattoa + longname: Time-minimum attenuated aerosol backscatter from top of atmosphere + units: m**-1 sr**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 460005 + shortname: std_aerbscattoa + longname: Time-standard-deviation attenuated aerosol backscatter from top of atmosphere + units: m**-1 sr**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 461000 + shortname: aerbscatgnd + longname: Attenuated aerosol backscatter from ground + units: m**-1 sr**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 461001 + shortname: avg_aerbscatgnd + longname: Time-mean attenuated aerosol backscatter from ground + units: m**-1 sr**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 461003 + shortname: max_aerbscatgnd + longname: Time-maximum attenuated aerosol backscatter from ground + units: m**-1 sr**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 461004 + shortname: min_aerbscatgnd + longname: Time-minimum attenuated aerosol backscatter from ground + units: m**-1 sr**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 461005 + shortname: std_aerbscatgnd + longname: Time-standard-deviation attenuated aerosol backscatter from ground + units: m**-1 sr**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 462000 + shortname: aerext + longname: Aerosol extinction coefficient + units: m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 462001 + shortname: avg_aerext + longname: Time-mean aerosol extinction coefficient + units: m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 462003 + shortname: max_aerext + longname: Time-maximum aerosol extinction coefficient + units: m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 462004 + shortname: min_aerext + longname: Time-minimum aerosol extinction coefficient + units: m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 462005 + shortname: std_aerext + longname: Time-standard-deviation aerosol extinction coefficient + units: m**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 463000 + shortname: emi_mflx_cbh + longname: Emission mass flux from commercial buildings heating + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 463001 + shortname: avg_emi_mflx_cbh + longname: Time-mean emission mass flux from commercial buildings heating + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 463003 + shortname: max_emi_mflx_cbh + longname: Time-maximum emission mass flux from commercial buildings heating + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 463004 + shortname: min_emi_mflx_cbh + longname: Time-minimum emission mass flux from commercial buildings heating + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 463005 + shortname: std_emi_mflx_cbh + longname: Time-standard-deviation emission mass flux from commercial buildings heating + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 464000 + shortname: emi_mflx_rh + longname: Emission mass flux from residential heating + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 464001 + shortname: avg_emi_mflx_rh + longname: Time-mean emission mass flux from residential heating + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 464003 + shortname: max_emi_mflx_rh + longname: Time-maximum emission mass flux from residential heating + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 464004 + shortname: min_emi_mflx_rh + longname: Time-minimum emission mass flux from residential heating + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 464005 + shortname: std_emi_mflx_rh + longname: Time-standard-deviation emission mass flux from residential heating + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 465000 + shortname: emi_mflx_oti + longname: Emission mass flux from oil refineries and transformation industry + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 465001 + shortname: avg_emi_mflx_oti + longname: Time-mean emission mass flux from oil refineries and transformation industry + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 465003 + shortname: max_emi_mflx_oti + longname: Time-maximum emission mass flux from oil refineries and transformation + industry + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 465004 + shortname: min_emi_mflx_oti + longname: Time-minimum emission mass flux from oil refineries and transformation + industry + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 465005 + shortname: std_emi_mflx_oti + longname: Time-standard-deviation emission mass flux from oil refineries and transformation + industry + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 466000 + shortname: emi_mflx_gp + longname: Emission mass flux from gas production + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 + - 98 +- id: 466001 + shortname: avg_emi_mflx_gp + longname: Time-mean emission mass flux from gas production + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 466003 + shortname: max_emi_mflx_gp + longname: Time-maximum emission mass flux from gas production + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 466004 + shortname: min_emi_mflx_gp + longname: Time-minimum emission mass flux from gas production + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 466005 + shortname: std_emi_mflx_gp + longname: Time-standard-deviation emission mass flux from gas production + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 467000 + shortname: mass_mixrat_diff + longname: Mass mixing ratio difference + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 467001 + shortname: avg_mass_mixrat_diff + longname: Time-mean mass mixing ratio difference + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 467003 + shortname: max_mass_mixrat_diff + longname: Time-maximum mass mixing ratio difference + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 467004 + shortname: min_mass_mixrat_diff + longname: Time-minimum mass mixing ratio difference + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 467005 + shortname: std_mass_mixrat_diff + longname: Time-standard-deviation mass mixing ratio difference + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 468000 + shortname: mass_mixrat_vol_diff + longname: Mass mixing ratio from volcanoes difference + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 468001 + shortname: avg_mass_mixrat_vol_diff + longname: Time-mean mass mixing ratio from volcanoes difference + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 468003 + shortname: max_mass_mixrat_vol_diff + longname: Time-maximum mass mixing ratio from volcanoes difference + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 468004 + shortname: min_mass_mixrat_vol_diff + longname: Time-minimum mass mixing ratio from volcanoes difference + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 468005 + shortname: std_mass_mixrat_vol_diff + longname: Time-standard-deviation mass mixing ratio from volcanoes difference + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 469000 + shortname: emi_mflx_wfire + longname: Emission mass flux from wild fires + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 469001 + shortname: avg_emi_mflx_wfire + longname: Time-mean emission mass flux from wild fires + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 469003 + shortname: max_emi_mflx_wfire + longname: Time-maximum emission mass flux from wild fires + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 469004 + shortname: min_emi_mflx_wfire + longname: Time-minimum emission mass flux from wild fires + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 469005 + shortname: std_emi_mflx_wfire + longname: Time-standard-deviation emission mass flux from wild fires + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 470000 + shortname: snkmf + longname: Sink mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 470001 + shortname: avg_snkmf + longname: Time-mean sink mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 470003 + shortname: max_snkmf + longname: Time-maximum sink mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 470004 + shortname: min_snkmf + longname: Time-minimum sink mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 470005 + shortname: std_snkmf + longname: Time-standard-deviation sink mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 471000 + shortname: srcmf + longname: Source mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 471001 + shortname: avg_srcmf + longname: Time-mean source mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 471003 + shortname: max_srcmf + longname: Time-maximum source mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 471004 + shortname: min_srcmf + longname: Time-minimum source mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 471005 + shortname: std_srcmf + longname: Time-standard-deviation source mass flux + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 472000 + shortname: absaod + longname: Absorption aerosol optical thickness + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 472001 + shortname: avg_absaod + longname: Time-mean absorption aerosol optical thickness + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 472003 + shortname: max_absaod + longname: Time-maximum absorption aerosol optical thickness + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 472004 + shortname: min_absaod + longname: Time-minimum absorption aerosol optical thickness + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 472005 + shortname: std_absaod + longname: Time-standard-deviation absorption aerosol optical thickness + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 473000 + shortname: tropvimd + longname: Tropospheric column vertically-integrated mass density + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 473001 + shortname: avg_tropvimd + longname: Time-mean tropospheric column vertically-integrated mass density + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 473003 + shortname: max_tropvimd + longname: Time-maximum tropospheric column vertically-integrated mass density + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 473004 + shortname: min_tropvimd + longname: Time-minimum tropospheric column vertically-integrated mass density + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 473005 + shortname: std_tropvimd + longname: Time-standard-deviation tropospheric column vertically-integrated mass + density + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 474000 + shortname: stratvimd + longname: Stratospheric column vertically-integrated mass density + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 474001 + shortname: avg_stratvimd + longname: Time-mean stratospheric column vertically-integrated mass density + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 474003 + shortname: max_stratvimd + longname: Time-maximum stratospheric column vertically-integrated mass density + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 474004 + shortname: min_stratvimd + longname: Time-minimum stratospheric column vertically-integrated mass density + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 474005 + shortname: std_stratvimd + longname: Time-standard-deviation stratospheric column vertically-integrated mass + density + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 475000 + shortname: aerbscat + longname: Aerosol unattenuated backscatter coefficient + units: m**-1 sr**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 475001 + shortname: avg_aerbscat + longname: Time-mean aerosol unattenuated backscatter coefficient + units: m**-1 sr**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 475003 + shortname: max_aerbscat + longname: Time-maximum aerosol unattenuated backscatter coefficient + units: m**-1 sr**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 475004 + shortname: min_aerbscat + longname: Time-minimum aerosol unattenuated backscatter coefficient + units: m**-1 sr**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 475005 + shortname: std_aerbscat + longname: Time-standard-deviation aerosol unattenuated backscatter coefficient + units: m**-1 sr**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 476000 + shortname: pH + longname: Potential of hydrogen + units: dimensionless + description: null + access_ids: [] + origin_ids: + - 0 +- id: 477000 + shortname: strataod + longname: Stratospheric aerosol optical thickness + units: Numeric + description: null + access_ids: [] + origin_ids: + - 0 +- id: 478000 + shortname: emi_mflx_lightn + longname: Emission mass flux from lightning + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 479000 + shortname: lsroh + longname: Loss rate due to OH + units: kg kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 0 +- id: 500000 + shortname: ps + longname: Pressure (S) (not reduced) + units: Pa + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500001 + shortname: p + longname: Pressure + units: Pa + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500002 + shortname: pmsl + longname: Pressure Reduced to MSL + units: Pa + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500003 + shortname: dpsdt + longname: Pressure Tendency (S) + units: Pa s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500004 + shortname: fis + longname: Geopotential (S) + units: m**2 s**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500005 + shortname: fif + longname: Geopotential (full lev) + units: m**2 s**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500006 + shortname: fi + longname: Geopotential + units: m**2 s**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500007 + shortname: hsurf + longname: Geometric Height of the earths surface above sea level + units: m + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500008 + shortname: hhl + longname: Geometric Height of the layer limits above sea level(NN) + units: m + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500009 + shortname: to3 + longname: Total Column Integrated Ozone + units: Dobson + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500010 + shortname: t_g + longname: Temperature (G) + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500012 + shortname: t_2m_av + longname: 2m Temperature (AV) + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500013 + shortname: t_2m_cl + longname: Climat. temperature, 2m Temperature + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500014 + shortname: t + longname: Temperature + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500015 + shortname: tmax_2m + longname: Max 2m Temperature (i) + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500016 + shortname: tmin_2m + longname: Min 2m Temperature (i) + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500017 + shortname: td_2m + longname: 2m Dew Point Temperature + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500018 + shortname: td_2m_av + longname: 2m Dew Point Temperature (AV) + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500019 + shortname: dbz_max + longname: Radar spectra (1) + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500020 + shortname: wvsp1 + longname: Wave spectra (1) + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500021 + shortname: wvsp2 + longname: Wave spectra (2) + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500022 + shortname: wvsp3 + longname: Wave spectra (3) + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500023 + shortname: dd_10m + longname: Wind Direction (DD_10M) + units: degrees + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500024 + shortname: dd + longname: Wind Direction (DD) + units: degrees + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500025 + shortname: sp_10m + longname: Wind speed (SP_10M) + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500026 + shortname: sp + longname: Wind speed (SP) + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500027 + shortname: u_10m + longname: U component of wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500028 + shortname: u + longname: U component of wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500029 + shortname: v_10m + longname: V component of wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500030 + shortname: v + longname: V component of wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500031 + shortname: omega + longname: Vertical Velocity (Pressure) ( omega=dp/dt ) + units: Pa s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500032 + shortname: w + longname: Vertical Velocity (Geometric) (w) + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500033 + shortname: qv_s + longname: Specific Humidity (S) + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500034 + shortname: qv_2m + longname: Specific Humidity (2m) + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500035 + shortname: qv + longname: Specific Humidity + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500036 + shortname: relhum_2m + longname: 2m Relative Humidity + units: '%' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500037 + shortname: relhum + longname: Relative Humidity + units: '%' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500038 + shortname: tqv + longname: Total column integrated water vapour + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500039 + shortname: aevap_s + longname: Evaporation (s) + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500040 + shortname: tqi + longname: Total Column-Integrated Cloud Ice + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500041 + shortname: tot_prec + longname: Total Precipitation rate (S) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500042 + shortname: prec_gsp + longname: Large-Scale Precipitation rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500043 + shortname: prec_con + longname: Convective Precipitation rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500044 + shortname: w_snow + longname: Snow depth water equivalent + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500045 + shortname: h_snow + longname: Snow Depth + units: m + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500046 + shortname: clct + longname: Total Cloud Cover + units: '%' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500047 + shortname: clc_con + longname: Convective Cloud Cover + units: '%' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500048 + shortname: clcl + longname: Cloud Cover (800 hPa - Soil) + units: '%' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500049 + shortname: clcm + longname: Cloud Cover (400 - 800 hPa) + units: '%' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500050 + shortname: clch + longname: Cloud Cover (0 - 400 hPa) + units: '%' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500051 + shortname: tqc + longname: Total Column-Integrated Cloud Water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500052 + shortname: snow_con + longname: Convective Snowfall rate water equivalent (s) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500053 + shortname: snow_gsp + longname: Large-Scale snowfall rate water equivalent (s) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500054 + shortname: fr_land + longname: Land Cover (1=land, 0=sea) + units: (0 - 1) + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500055 + shortname: z0 + longname: Surface Roughness length Surface Roughness + units: m + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500056 + shortname: alb_rad + longname: Albedo (in short-wave) + units: '%' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500057 + shortname: albedo_b + longname: Albedo (in short-wave) + units: '%' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500058 + shortname: t_cl + longname: Soil Temperature ( 36 cm depth, vv=0h) + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500059 + shortname: t_cl_lm + longname: Soil Temperature (41 cm depth) + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500060 + shortname: t_m + longname: Soil Temperature + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500061 + shortname: t_s + longname: Soil Temperature + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500062 + shortname: w_cl + longname: Column-integrated Soil Moisture + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500063 + shortname: w_g1 + longname: Column-integrated Soil Moisture (1) 0 -10 cm + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500064 + shortname: w_g2 + longname: Column-integrated Soil Moisture (2) 10-100cm + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500065 + shortname: plcov + longname: Plant cover + units: '%' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500066 + shortname: runoff_g + longname: Water Runoff (10-100) + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500067 + shortname: runoff_g_lm + longname: Water Runoff (10-190) + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500068 + shortname: runoff_s + longname: Water Runoff (s) + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500069 + shortname: fr_ice + longname: Sea Ice Cover ( 0= free, 1=cover) + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500070 + shortname: h_ice + longname: sea Ice Thickness + units: m + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500071 + shortname: swh + longname: Significant height of combined wind waves and swell + units: m + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500072 + shortname: mdww + longname: Direction of wind waves + units: Degree true + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500073 + shortname: shww + longname: Significant height of wind waves + units: m + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500074 + shortname: mpww + longname: Mean period of wind waves + units: s + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500075 + shortname: mdps + longname: Direction of swell waves + units: Degree true + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500076 + shortname: shps + longname: Significant height of swell waves + units: m + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500077 + shortname: mpps + longname: Mean period of swell waves + units: s + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500078 + shortname: asob_s + longname: Net short wave radiation flux (m) (at the surface) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500079 + shortname: sobs_rad + longname: Net short wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500080 + shortname: athb_s + longname: Net long wave radiation flux (m) (at the surface) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500081 + shortname: thbs_rad + longname: Net long wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500082 + shortname: asob_t + longname: Net short wave radiation flux (m) (on the model top) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500083 + shortname: sobt_rad + longname: Net short wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500084 + shortname: athb_t + longname: Net long wave radiation flux (m) (on the model top) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500085 + shortname: thbt_rad + longname: Net long wave radiation flux + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500086 + shortname: alhfl_s + longname: Latent Heat Net Flux (m) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500087 + shortname: ashfl_s + longname: Sensible Heat Net Flux (m) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500088 + shortname: aumfl_s + longname: Momentum Flux, U-Component (m) + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500089 + shortname: avmfl_s + longname: Momentum Flux, V-Component (m) + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500090 + shortname: apab_s + longname: Photosynthetically active radiation (m) (at the surface) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500091 + shortname: pabs_rad + longname: Photosynthetically active radiation + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500092 + shortname: sohr_rad + longname: Solar radiation heating rate + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500093 + shortname: thhr_rad + longname: Thermal radiation heating rate + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500094 + shortname: alhfl_bs + longname: Latent heat flux from bare soil + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500095 + shortname: alhfl_pl + longname: Latent heat flux from plants + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500096 + shortname: dursun + longname: Sunshine + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500097 + shortname: rstom + longname: Stomatal Resistance + units: s m**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500098 + shortname: clc + longname: Cloud cover + units: '%' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500099 + shortname: clc_sgs + longname: Non-Convective Cloud Cover, grid scale + units: '%' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500100 + shortname: qc + longname: Cloud Mixing Ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500101 + shortname: qi + longname: Cloud Ice Mixing Ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500102 + shortname: qr + longname: Rain mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500103 + shortname: qs + longname: Snow mixing ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500104 + shortname: tqr + longname: Total column integrated rain + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500105 + shortname: tqs + longname: Total column integrated snow + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500106 + shortname: qg + longname: Grauple + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500107 + shortname: tqg + longname: Total column integrated grauple + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500108 + shortname: twater + longname: Total Column integrated water (all components incl. precipitation) + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500109 + shortname: tdiv_hum + longname: vertical integral of divergence of total water content (s) + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500110 + shortname: qc_rad + longname: subgrid scale cloud water + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500111 + shortname: qi_rad + longname: subgridscale cloud ice + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500112 + shortname: clch_8 + longname: cloud cover CH (0..8) + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500113 + shortname: clcm_8 + longname: cloud cover CM (0..8) + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500114 + shortname: clcl_8 + longname: cloud cover CL (0..8) + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500115 + shortname: hbas_sc + longname: cloud base above msl, shallow convection + units: m + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500116 + shortname: htop_sc + longname: cloud top above msl, shallow convection + units: m + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500117 + shortname: clw_con + longname: specific cloud water content, convective cloud + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500118 + shortname: hbas_con + longname: Height of Convective Cloud Base (i) + units: m + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500119 + shortname: htop_con + longname: Height of Convective Cloud Top (i) + units: m + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500120 + shortname: bas_con + longname: base index (vertical level) of main convective cloud (i) + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500121 + shortname: top_con + longname: top index (vertical level) of main convective cloud (i) + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500122 + shortname: dt_con + longname: Temperature tendency due to convection + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500123 + shortname: dqv_con + longname: Specific humitiy tendency due to convection + units: kg kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500124 + shortname: du_con + longname: zonal wind tendency due to convection + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500125 + shortname: dv_con + longname: meridional wind tendency due to convection + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500126 + shortname: htop_dc + longname: height of top of dry convection + units: m + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500127 + shortname: hzerocl + longname: height of 0 degree celsius level code 0,3,6 ? + units: m + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500128 + shortname: snowlmt + longname: Height of snow fall limit + units: m + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500129 + shortname: dqc_con + longname: Tendency of specific cloud liquid water content due to conversion + units: kg kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500130 + shortname: dqi_con + longname: tendency of specific cloud ice content due to convection + units: kg kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500131 + shortname: q_sedim + longname: Specific content of precipitation particles (needed for water loadin)g + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500132 + shortname: prr_gsp + longname: Large scale rain rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500133 + shortname: prs_gsp + longname: Large scale snowfall rate water equivalent + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500134 + shortname: rain_gsp + longname: Large scale rain rate (s) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500135 + shortname: prr_con + longname: Convective rain rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500136 + shortname: prs_con + longname: Convective snowfall rate water equivalent + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500137 + shortname: rain_con + longname: Convective rain rate (s) + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500138 + shortname: rr_f + longname: rain amount, grid-scale plus convective + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500139 + shortname: rr_c + longname: snow amount, grid-scale plus convective + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500140 + shortname: dt_gsp + longname: Temperature tendency due to grid scale precipation + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500141 + shortname: dqv_gsp + longname: Specific humitiy tendency due to grid scale precipitation + units: kg kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500142 + shortname: dqc_gsp + longname: tendency of specific cloud liquid water content due to grid scale precipitation + units: kg kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500143 + shortname: freshsnw + longname: Fresh snow factor (weighting function for albedo indicating freshness + of snow) + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500144 + shortname: dqi_gsp + longname: tendency of specific cloud ice content due to grid scale precipitation + units: kg kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500145 + shortname: prg_gsp + longname: Graupel (snow pellets) precipitation rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500146 + shortname: grau_gsp + longname: Graupel (snow pellets) precipitation rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500147 + shortname: rho_snow + longname: Snow density + units: kg m**-3 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500148 + shortname: pp + longname: Pressure perturbation + units: Pa + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500149 + shortname: sdi_1 + longname: supercell detection index 1 (rot. up+down drafts) + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500150 + shortname: sdi_2 + longname: supercell detection index 2 (only rot. up drafts) + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500151 + shortname: cape_mu + longname: Convective Available Potential Energy, most unstable + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500152 + shortname: cin_mu + longname: Convective Inhibition, most unstable + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500153 + shortname: cape_ml + longname: Convective Available Potential Energy, mean layer + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500154 + shortname: cin_ml + longname: Convective Inhibition, mean layer + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500155 + shortname: tke_con + longname: Convective turbulent kinetic enery + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500156 + shortname: tketens + longname: Tendency of turbulent kinetic energy + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500157 + shortname: ke + longname: Kinetic Energy + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500158 + shortname: tke + longname: Turbulent Kinetic Energy + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500159 + shortname: tkvm + longname: Turbulent diffusioncoefficient for momentum + units: m**2 s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500160 + shortname: tkvh + longname: Turbulent diffusion coefficient for heat (and moisture) + units: m**2 s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500161 + shortname: tcm + longname: Turbulent transfer coefficient for impulse + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500162 + shortname: tch + longname: Turbulent transfer coefficient for heat (and Moisture) + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500163 + shortname: mh + longname: mixed layer depth + units: m + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500164 + shortname: vmax_10m + longname: maximum Wind 10m + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500165 + shortname: ru-103 + longname: Air concentration of Ruthenium 103 + units: Bq m**-3 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500166 + shortname: t_so + longname: Soil Temperature (multilayers) + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500167 + shortname: w_so + longname: Column-integrated Soil Moisture (multilayers) + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500168 + shortname: w_so_ice + longname: soil ice content (multilayers) + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500169 + shortname: w_i + longname: Plant Canopy Surface Water + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500170 + shortname: t_snow + longname: Snow temperature (top of snow) + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500171 + shortname: prs_min + longname: Minimal Stomatal Resistance + units: s m**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500172 + shortname: t_ice + longname: sea Ice Temperature + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500173 + shortname: dbz_850 + longname: Base reflectivity + units: dB + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500174 + shortname: dbz + longname: Base reflectivity + units: dB + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500175 + shortname: dbz_cmax + longname: Base reflectivity (cmax) + units: dB + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500176 + shortname: dttdiv + longname: unknown + units: m + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500177 + shortname: sotr_rad + longname: Effective transmissivity of solar radiation + units: K s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500178 + shortname: evatra_sum + longname: sum of contributions to evaporation + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500179 + shortname: tra_sum + longname: total transpiration from all soil layers + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500180 + shortname: totforce_s + longname: total forcing at soil surface + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500181 + shortname: resid_wso + longname: residuum of soil moisture + units: kg m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500182 + shortname: mflx_con + longname: Massflux at convective cloud base + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500183 + shortname: cape_con + longname: Convective Available Potential Energy + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500184 + shortname: qcvg_con + longname: moisture convergence for Kuo-type closure + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500185 + shortname: mwd + longname: total wave direction + units: Degree true + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500186 + shortname: mwp_x + longname: wind sea mean period + units: s + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500187 + shortname: ppww + longname: wind sea peak period + units: s + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500188 + shortname: mpp_s + longname: swell mean period + units: s + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500189 + shortname: ppps + longname: swell peak period + units: s + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500190 + shortname: pp1d + longname: total wave peak period + units: s + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500191 + shortname: tm10 + longname: total wave mean period + units: s + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500192 + shortname: tm01 + longname: total Tm1 period + units: s + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500193 + shortname: tm02 + longname: total Tm2 period + units: s + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500194 + shortname: sprd + longname: total directional spread + units: Degree true + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500195 + shortname: ana_err_fi + longname: analysis error(standard deviation), geopotential(gpm) + units: gpm + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500196 + shortname: ana_err_u + longname: analysis error(standard deviation), u-comp. of wind + units: m**2 s**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500197 + shortname: ana_err_v + longname: analysis error(standard deviation), v-comp. of wind + units: m**2 s**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500198 + shortname: du_sso + longname: zonal wind tendency due to subgrid scale oro. + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500199 + shortname: dv_sso + longname: meridional wind tendency due to subgrid scale oro. + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500200 + shortname: sso_stdh + longname: Standard deviation of sub-grid scale orography + units: m + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500201 + shortname: sso_gamma + longname: Anisotropy of sub-gridscale orography + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500202 + shortname: sso_theta + longname: Angle of sub-gridscale orography + units: radians + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500203 + shortname: sso_sigma + longname: Slope of sub-gridscale orography + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500204 + shortname: emis_rad + longname: surface emissivity + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500205 + shortname: soiltyp + longname: Soil Type + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500206 + shortname: lai + longname: Leaf area index + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500207 + shortname: rootdp + longname: root depth of vegetation + units: m + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500208 + shortname: hmo3 + longname: height of ozone maximum (climatological) + units: Pa + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500209 + shortname: vio3 + longname: vertically integrated ozone content (climatological) + units: Pa + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500210 + shortname: plcov_mx + longname: Plant covering degree in the vegetation phase + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500211 + shortname: plcov_mn + longname: Plant covering degree in the quiescent phas + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500212 + shortname: lai_mx + longname: Max Leaf area index + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500213 + shortname: lai_mn + longname: Min Leaf area index + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500214 + shortname: oro_mod + longname: Orographie + Land-Meer-Verteilung + units: m + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500215 + shortname: wvar1 + longname: variance of soil moisture content (0-10) + units: kg**2 m**-4 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500216 + shortname: wvar2 + longname: variance of soil moisture content (10-100) + units: kg**2 m**-4 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500217 + shortname: for_e + longname: evergreen forest + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500218 + shortname: for_d + longname: deciduous forest + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500219 + shortname: ndvi + longname: normalized differential vegetation index + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500220 + shortname: ndvi_max + longname: normalized differential vegetation index (NDVI) + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500221 + shortname: ndvi_mrat + longname: ratio of monthly mean NDVI (normalized differential vegetation index) + to annual maximum + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500222 + shortname: ndviratio + longname: ratio of monthly mean NDVI (normalized differential vegetation index) + to annual maximum + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500223 + shortname: aer_so4 + longname: Total sulfate aerosol + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500224 + shortname: aer_so412 + longname: Total sulfate aerosol (12M) + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500225 + shortname: aer_dust + longname: Total soil dust aerosol + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500226 + shortname: aer_dust12 + longname: Total soil dust aerosol (12M) + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500227 + shortname: aer_org + longname: Organic aerosol + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500228 + shortname: aer_org12 + longname: Organic aerosol (12M) + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500229 + shortname: aer_bc + longname: Black carbon aerosol + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500230 + shortname: aer_bc12 + longname: Black carbon aerosol (12M) + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500231 + shortname: aer_ss + longname: Sea salt aerosol + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500232 + shortname: aer_ss12 + longname: Sea salt aerosol (12M) + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500233 + shortname: dqvdt + longname: tendency of specific humidity + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500234 + shortname: qvsflx + longname: water vapor flux + units: s**-1 m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500235 + shortname: fc + longname: Coriolis parameter + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500236 + shortname: rlat + longname: geographical latitude + units: Degree N + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500237 + shortname: rlon + longname: geographical longitude + units: Degree E + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500238 + shortname: ustr + longname: Friction velocity + units: m s**-1 + description: '' + access_ids: [] + origin_ids: + - 80 +- id: 500239 + shortname: ztd + longname: Delay of the GPS signal trough the (total) atm. + units: m + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500240 + shortname: zwd + longname: Delay of the GPS signal trough wet atmos. + units: m + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500241 + shortname: zhd + longname: Delay of the GPS signal trough dry atmos. + units: m + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500242 + shortname: o3 + longname: Ozone Mixing Ratio + units: kg kg**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500243 + shortname: ru-103 + longname: Air concentration of Ruthenium 103 (Ru103- concentration) + units: Bq m**-3 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500244 + shortname: ru-103d + longname: Ru103-dry deposition + units: Bq m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500245 + shortname: ru-103w + longname: Ru103-wet deposition + units: Bq m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500246 + shortname: sr-90 + longname: Air concentration of Strontium 90 + units: Bq m**-3 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500247 + shortname: sr-90d + longname: Sr90-dry deposition + units: Bq m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500248 + shortname: sr-90w + longname: Sr90-wet deposition + units: Bq m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500249 + shortname: i-131a + longname: I131-concentration + units: Bq m**-3 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500250 + shortname: i-131ad + longname: I131-dry deposition + units: Bq m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500251 + shortname: i-131aw + longname: I131-wet deposition + units: Bq m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500252 + shortname: cs-137 + longname: Cs137-concentration + units: Bq m**-3 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500253 + shortname: cs-137d + longname: Cs137-dry deposition + units: Bq m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500254 + shortname: cs-137w + longname: Cs137-wet deposition + units: Bq m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500255 + shortname: te-132 + longname: Air concentration of Tellurium 132 (Te132-concentration) + units: Bq m**-3 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500256 + shortname: te-132d + longname: Te132-dry deposition + units: Bq m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500257 + shortname: te-132w + longname: Te132-wet deposition + units: Bq m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500258 + shortname: zr-95 + longname: Air concentration of Zirconium 95 (Zr95-concentration) + units: Bq m**-3 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500259 + shortname: zr-95d + longname: Zr95-dry deposition + units: Bq m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500260 + shortname: zr-95w + longname: Zr95-wet deposition + units: Bq m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500261 + shortname: kr-85 + longname: Air concentration of Krypton 85 (Kr85-concentration) + units: Bq m**-3 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500262 + shortname: kr-85d + longname: Kr85-dry deposition + units: Bq m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500263 + shortname: kr-85w + longname: Kr85-wet deposition + units: Bq m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500264 + shortname: tr-2 + longname: TRACER - concentration + units: Bq m**-3 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500265 + shortname: tr-2d + longname: TRACER - dry deposition + units: Bq m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500266 + shortname: tr-2w + longname: TRACER - wet deposition + units: Bq m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500267 + shortname: xe-133 + longname: Air concentration of Xenon 133 (Xe133 - concentration) + units: Bq m**-3 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500268 + shortname: xe-133d + longname: Xe133 - dry deposition + units: Bq m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500269 + shortname: xe-133w + longname: Xe133 - wet deposition + units: Bq m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500270 + shortname: i-131g + longname: I131g - concentration + units: Bq m**-3 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500271 + shortname: i-131gd + longname: Xe133 - wet deposition + units: Bq m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500272 + shortname: i-131gw + longname: I131g - wet deposition + units: Bq m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500273 + shortname: i-131o + longname: I131o - concentration + units: Bq m**-3 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500274 + shortname: i-131od + longname: I131o - dry deposition + units: Bq m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500275 + shortname: i-131ow + longname: I131o - wet deposition + units: Bq m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500276 + shortname: ba-140 + longname: Air concentration of Barium 40 + units: Bq m**-3 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500277 + shortname: ba-140d + longname: Ba140 - dry deposition + units: Bq m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500278 + shortname: ba-140w + longname: Ba140 - wet deposition + units: Bq m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500279 + shortname: austr_sso + longname: u-momentum flux due to SSO-effects + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500280 + shortname: ustr_sso + longname: u-momentum flux due to SSO-effects + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500281 + shortname: avstr_sso + longname: v-momentum flux due to SSO-effects + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500282 + shortname: vstr_sso + longname: v-momentum flux due to SSO-effects + units: N m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500283 + shortname: avdis_sso + longname: Gravity wave dissipation (vertical integral) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500284 + shortname: vdis_sso + longname: Gravity wave dissipation (vertical integral) + units: W m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500285 + shortname: uv_max + longname: UV_Index_Maximum_W UV_Index clouded (W), daily maximum + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500286 + shortname: w_shaer + longname: wind shear + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500287 + shortname: srh + longname: storm relative helicity + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500288 + shortname: vabs + longname: absolute vorticity advection + units: s**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500289 + shortname: cl_typ + longname: NiederschlagBew.-ArtKombination Niederschl.-Bew.-Blautherm. (283..407) + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500290 + shortname: ccl_gnd + longname: Konvektions-U-GrenzeHoehe der Konvektionsuntergrenze ueber Grund + units: m + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500291 + shortname: ccl_nn + longname: Konv.-U-Grenze-nn Hoehe der Konvektionsuntergrenze ueber nn + units: m + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500292 + shortname: ww + longname: weather interpretation (WMO) + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500293 + shortname: advorg + longname: geostrophische Vorticityadvektion + units: s**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500294 + shortname: advor + longname: Geo Temperatur Adv geostrophische Schichtdickenadvektion + units: m**3 kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500295 + shortname: adrtg + longname: Schichtdicken-Advektion + units: m**3 kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500296 + shortname: wdiv + longname: Winddivergenz + units: s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500297 + shortname: fqn + longname: Qn-Vektor Q isother-senkr-KompQn ,Komp. Q-Vektor senkrecht zu den Isothermen + units: m**2 kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500298 + shortname: ipv + longname: Isentrope potentielle Vorticity + units: K m**2 kg**-1 s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500299 + shortname: up + longname: XIPV Wind X-Komp Wind X-Komponente auf isentropen Flaechen + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500300 + shortname: vp + longname: YIPV Wind Y-Komp Wind Y-Komponente auf isentropen Flaechen + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500301 + shortname: ptheta + longname: Druck einer isentropen Flaeche + units: Pa + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500302 + shortname: ko + longname: KO index + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500303 + shortname: thetae + longname: Aequivalentpotentielle Temperatur + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500304 + shortname: ceiling + longname: Ceiling + units: m + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500305 + shortname: ice_grd + longname: Icing Grade (1=LGT,2=MOD,3=SEV) + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500306 + shortname: cldepth + longname: modified cloud depth for media + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500307 + shortname: clct_mod + longname: modified cloud cover for media + units: '~' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500308 + shortname: efa-ps + longname: Monthly Mean of RMS of difference FG-AN of pressure reduced to MSL + units: Pa + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500309 + shortname: eia-ps + longname: Monthly Mean of RMS of difference IA-AN of pressure reduced to MSL + units: Pa + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500310 + shortname: efa-u + longname: Monthly Mean of RMS of difference FG-AN of u-component of wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500311 + shortname: eia-u + longname: Monthly Mean of RMS of difference IA-AN of u-component of wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500312 + shortname: efa-v + longname: Monthly Mean of RMS of difference FG-AN of v-component of wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500313 + shortname: eia-v + longname: Monthly Mean of RMS of difference IA-AN of v-component of wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500314 + shortname: efa-fi + longname: Monthly Mean of RMS of difference FG-AN of geopotential + units: m**2 s**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500315 + shortname: eia-fi + longname: Monthly Mean of RMS of difference IA-AN of geopotential + units: m**2 s**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500316 + shortname: efa-rh + longname: Monthly Mean of RMS of difference FG-AN of relative humidity + units: '%' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500317 + shortname: eia-rh + longname: Monthly Mean of RMS of difference IA-AN of relative humidity + units: '%' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500318 + shortname: efa-t + longname: Monthly Mean of RMS of difference FG-AN of temperature + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500319 + shortname: eia-t + longname: Monthly Mean of RMS of difference IA-AN of temperature + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500320 + shortname: efa-om + longname: Monthly Mean of RMS of difference FG-AN of vert.velocity (pressure) + units: Pa s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500321 + shortname: eia-om + longname: Monthly Mean of RMS of difference IA-AN of vert.velocity (pressure) + units: Pa s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500322 + shortname: efa-ke + longname: Monthly Mean of RMS of difference FG-AN of kinetic energy + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500323 + shortname: eia-ke + longname: Monthly Mean of RMS of difference IA-AN of kinetic energy + units: J kg**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500324 + shortname: synme5_bt_cl + longname: Synth. Sat. brightness temperature cloudy + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500325 + shortname: synme5_bt_cs + longname: Synth. Sat. brightness temperature clear sky + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500326 + shortname: synme5_rad_cl + longname: Synth. Sat. radiance cloudy + units: W m sr m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500327 + shortname: synme5_rad_cs + longname: Synth. Sat. radiance cloudy + units: W m sr m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500328 + shortname: synme6_bt_cl + longname: Synth. Sat. brightness temperature cloudy + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500329 + shortname: synme6_bt_cs + longname: Synth. Sat. brightness temperature clear sky + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500330 + shortname: synme6_rad_cl + longname: Synth. Sat. radiance cloudy + units: W m sr m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500331 + shortname: synme6_rad_cs + longname: Synth. Sat. radiance cloudy + units: W m sr m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500332 + shortname: synme7_bt_cl_ir11.5 + longname: Synth. Sat. brightness temperature clear sky + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500333 + shortname: synme7_bt_cl_wv6.4 + longname: Synth. Sat. brightness temperature cloudy + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500334 + shortname: synme7_bt_cs_ir11.5 + longname: Synth. Sat. brightness temperature clear sky + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500335 + shortname: synme7_bt_cs_wv6.4 + longname: Synth. Sat. brightness temperature cloudy + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500336 + shortname: synme7_rad_cl_ir11.5 + longname: Synth. Sat. radiance clear sky + units: W m sr m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500337 + shortname: synme7_rad_cl_wv6.4 + longname: Synth. Sat. radiance cloudy + units: W m sr m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500338 + shortname: synme7_rad_cs_ir11.5 + longname: Synth. Sat. radiance clear sky + units: W m sr m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500339 + shortname: synme7_rad_cs_wv6.4 + longname: Synth. Sat. radiance cloudy + units: W m sr m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500340 + shortname: synmsg_bt_cl_ir10.8 + longname: Synth. Sat. brightness temperature cloudy + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500341 + shortname: synmsg_bt_cl_ir12.1 + longname: Synth. Sat. brightness temperature cloudy + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500342 + shortname: synmsg_bt_cl_ir13.4 + longname: Synth. Sat. brightness temperature cloudy + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500343 + shortname: synmsg_bt_cl_ir3.9 + longname: Synth. Sat. brightness temperature cloudy + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500344 + shortname: synmsg_bt_cl_ir8.7 + longname: Synth. Sat. brightness temperature cloudy + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500345 + shortname: synmsg_bt_cl_ir9.7 + longname: Synth. Sat. brightness temperature cloudy + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500346 + shortname: synmsg_bt_cl_wv6.2 + longname: Synth. Sat. brightness temperature cloudy + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500347 + shortname: synmsg_bt_cl_wv7.3 + longname: Synth. Sat. brightness temperature cloudy + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500348 + shortname: synmsg_bt_cs_ir8.7 + longname: Synth. Sat. brightness temperature clear sky + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500349 + shortname: synmsg_bt_cs_ir10.8 + longname: Synth. Sat. brightness temperature clear sky + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500350 + shortname: synmsg_bt_cs_ir12.1 + longname: Synth. Sat. brightness temperature clear sky + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500351 + shortname: synmsg_bt_cs_ir13.4 + longname: Synth. Sat. brightness temperature clear sky + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500352 + shortname: synmsg_bt_cs_ir3.9 + longname: Synth. Sat. brightness temperature clear sky + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500353 + shortname: synmsg_bt_cs_ir9.7 + longname: Synth. Sat. brightness temperature clear sky + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500354 + shortname: synmsg_bt_cs_wv6.2 + longname: Synth. Sat. brightness temperature clear sky + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500355 + shortname: synmsg_bt_cs_wv7.3 + longname: Synth. Sat. brightness temperature clear sky + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500356 + shortname: synmsg_rad_cl_ir10.8 + longname: Synth. Sat. radiance cloudy + units: W m sr m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500357 + shortname: synmsg_rad_cl_ir12.1 + longname: Synth. Sat. radiance cloudy + units: W m sr m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500358 + shortname: synmsg_rad_cl_ir13.4 + longname: Synth. Sat. radiance cloudy + units: W m sr m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500359 + shortname: synmsg_rad_cl_ir3.9 + longname: Synth. Sat. radiance cloudy + units: W m sr m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500360 + shortname: synmsg_rad_cl_ir8.7 + longname: Synth. Sat. radiance cloudy + units: W m sr m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500361 + shortname: synmsg_rad_cl_ir9.7 + longname: Synth. Sat. radiance cloudy + units: W m sr m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500362 + shortname: synmsg_rad_cl_wv6.2 + longname: Synth. Sat. radiance cloudy + units: W m sr m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500363 + shortname: synmsg_rad_cl_wv7.3 + longname: Synth. Sat. radiance cloudy + units: W m sr m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500364 + shortname: synmsg_rad_cs_ir10.8 + longname: Synth. Sat. radiance clear sky + units: W m sr m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500365 + shortname: synmsg_rad_cs_ir12.1 + longname: Synth. Sat. radiance clear sky + units: W m sr m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500366 + shortname: synmsg_rad_cs_ir13.4 + longname: Synth. Sat. radiance clear sky + units: W m sr m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500367 + shortname: synmsg_rad_cs_ir3.9 + longname: Synth. Sat. radiance clear sky + units: W m sr m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500368 + shortname: synmsg_rad_cs_ir8.7 + longname: Synth. Sat. radiance clear sky + units: W m sr m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500369 + shortname: synmsg_rad_cs_ir9.7 + longname: Synth. Sat. radiance clear sky + units: W m sr m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500370 + shortname: synmsg_rad_cs_wv6.2 + longname: Synth. Sat. radiance clear sky + units: W m sr m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500371 + shortname: synmsg_rad_cs_wv7.3 + longname: Synth. Sat. radiance clear sky + units: W m sr m**-2 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500372 + shortname: t_2m_s + longname: smoothed forecast, temperature + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500373 + shortname: tmax_2m_s + longname: smoothed forecast, maximum temp. + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500374 + shortname: tmin_2m_s + longname: smoothed forecast, minimum temp. + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500375 + shortname: td_2m_s + longname: smoothed forecast, dew point temp. + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500376 + shortname: u_10m_s + longname: smoothed forecast, u comp. of wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500377 + shortname: v_10m_s + longname: smoothed forecast, v comp. of wind + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500378 + shortname: tot_prec_s + longname: smoothed forecast, total precipitation rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500379 + shortname: clct_s + longname: smoothed forecast, total cloud cover + units: '%' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500380 + shortname: clcl_s + longname: smoothed forecast, cloud cover low + units: '%' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500381 + shortname: clcm_s + longname: smoothed forecast, cloud cover medium + units: '%' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500382 + shortname: clch_s + longname: smoothed forecast, cloud cover high + units: '%' + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500383 + shortname: snow_gsp_s + longname: smoothed forecast, large-scale snowfall rate w.e. + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500384 + shortname: t_s_s + longname: smoothed forecast, soil temperature + units: K + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500385 + shortname: vmax_10m_s + longname: smoothed forecast, wind speed (gust) + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500386 + shortname: tot_prec_c + longname: calibrated forecast, total precipitation rate + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500387 + shortname: snow_gsp_c + longname: calibrated forecast, large-scale snowfall rate w.e. + units: kg m**-2 s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500388 + shortname: vmax_10m_c + longname: calibrated forecast, wind speed (gust) + units: m s**-1 + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500389 + shortname: obsmsg_alb_hrv + longname: Obser. Sat. Meteosat sec. generation Albedo (scaled) + units: Numeric + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500390 + shortname: obsmsg_alb_nir1.6 + longname: Obser. Sat. Meteosat sec. generation Albedo (scaled) + units: Numeric + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500391 + shortname: obsmsg_alb_vis0.6 + longname: Obser. Sat. Meteosat sec. generation Albedo (scaled) + units: Numeric + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500392 + shortname: obsmsg_alb_vis0.8 + longname: Obser. Sat. Meteosat sec. generation Albedo (scaled) + units: Numeric + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500393 + shortname: obsmsg_bt_ir10.8 + longname: Obser. Sat. Meteosat sec. generation brightness temperature + units: Numeric + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500394 + shortname: obsmsg_bt_ir12.0 + longname: Obser. Sat. Meteosat sec. generation brightness temperature + units: Numeric + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500395 + shortname: obsmsg_bt_ir13.4 + longname: Obser. Sat. Meteosat sec. generation brightness temperature + units: Numeric + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500396 + shortname: obsmsg_bt_ir3.9 + longname: Obser. Sat. Meteosat sec. generation brightness temperature + units: Numeric + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500397 + shortname: obsmsg_bt_ir8.7 + longname: Obser. Sat. Meteosat sec. generation brightness temperature + units: Numeric + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500398 + shortname: obsmsg_bt_ir9.7 + longname: Obser. Sat. Meteosat sec. generation brightness temperature + units: Numeric + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500399 + shortname: obsmsg_bt_wv6.2 + longname: Obser. Sat. Meteosat sec. generation brightness temperature + units: Numeric + description: null + access_ids: [] + origin_ids: + - 80 +- id: 500400 + shortname: obsmsg_bt_wv7.3 + longname: Obser. Sat. Meteosat sec. generation brightness temperature + units: Numeric + description: null + access_ids: [] + origin_ids: + - 80 +- id: 7001292 + shortname: SUNSD + longname: Sunshine Duration + units: s + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001293 + shortname: ICSEV + longname: Icing severity + units: Numeric + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001294 + shortname: AMSRE10 + longname: Simulated Brightness Temperature for AMSRE on Aqua, Channel 10 + units: K + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001295 + shortname: AMSRE11 + longname: Simulated Brightness Temperature for AMSRE on Aqua, Channel 11 + units: K + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001296 + shortname: AMSRE12 + longname: Simulated Brightness Temperature for AMSRE on Aqua, Channel 12 + units: K + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001297 + shortname: AMSRE9 + longname: Simulated Brightness Temperature for AMSRE on Aqua, Channel 9 + units: K + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001298 + shortname: SBC123 + longname: Simulated Brightness Counts for GOES 12, Channel 3 + units: Byte + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001299 + shortname: SBC124 + longname: Simulated Brightness Counts for GOES 12, Channel 4 + units: Byte + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001300 + shortname: SBT112 + longname: Simulated Brightness Temperature for GOES 11, Channel 2 + units: K + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001301 + shortname: SBT113 + longname: Simulated Brightness Temperature for GOES 11, Channel 3 + units: K + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001302 + shortname: SBT114 + longname: Simulated Brightness Temperature for GOES 11, Channel 4 + units: K + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001303 + shortname: SBT115 + longname: Simulated Brightness Temperature for GOES 11, Channel 5 + units: K + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001304 + shortname: SBT122 + longname: Simulated Brightness Temperature for GOES 12, Channel 2 + units: K + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001305 + shortname: SBT123 + longname: Simulated Brightness Temperature for GOES 12, Channel 3 + units: K + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001306 + shortname: SBT124 + longname: Simulated Brightness Temperature for GOES 12, Channel 4 + units: K + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001307 + shortname: SBT126 + longname: Simulated Brightness Temperature for GOES 12, Channel 6 + units: K + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001308 + shortname: SBTA1610 + longname: Simulated Brightness Temperature for ABI GOES-16, Band-10 + units: K + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001309 + shortname: SBTA1611 + longname: Simulated Brightness Temperature for ABI GOES-16, Band-11 + units: K + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001310 + shortname: SBTA1612 + longname: Simulated Brightness Temperature for ABI GOES-16, Band-12 + units: K + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001311 + shortname: SBTA1613 + longname: Simulated Brightness Temperature for ABI GOES-16, Band-13 + units: K + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001312 + shortname: SBTA1614 + longname: Simulated Brightness Temperature for ABI GOES-16, Band-14 + units: K + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001313 + shortname: SBTA1615 + longname: Simulated Brightness Temperature for ABI GOES-16, Band-15 + units: K + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001314 + shortname: SBTA1616 + longname: Simulated Brightness Temperature for ABI GOES-16, Band-16 + units: K + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001315 + shortname: SBTA167 + longname: Simulated Brightness Temperature for ABI GOES-16, Band-7 + units: K + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001316 + shortname: SBTA168 + longname: Simulated Brightness Temperature for ABI GOES-16, Band-8 + units: K + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001317 + shortname: SBTA169 + longname: Simulated Brightness Temperature for ABI GOES-16, Band-9 + units: K + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001318 + shortname: SBTA1710 + longname: Simulated Brightness Temperature for ABI GOES-17, Band-10 + units: K + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001319 + shortname: SBTA1711 + longname: Simulated Brightness Temperature for ABI GOES-17, Band-11 + units: K + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001320 + shortname: SBTA1712 + longname: Simulated Brightness Temperature for ABI GOES-17, Band-12 + units: K + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001321 + shortname: SBTA1713 + longname: Simulated Brightness Temperature for ABI GOES-17, Band-13 + units: K + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001322 + shortname: SBTA1714 + longname: Simulated Brightness Temperature for ABI GOES-17, Band-14 + units: K + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001323 + shortname: SBTA1715 + longname: Simulated Brightness Temperature for ABI GOES-17, Band-15 + units: K + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001324 + shortname: SBTA1716 + longname: Simulated Brightness Temperature for ABI GOES-17, Band-16 + units: K + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001325 + shortname: SBTA177 + longname: Simulated Brightness Temperature for ABI GOES-17, Band-7 + units: K + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001326 + shortname: SBTA178 + longname: Simulated Brightness Temperature for ABI GOES-17, Band-8 + units: K + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001327 + shortname: SBTA179 + longname: Simulated Brightness Temperature for ABI GOES-17, Band-9 + units: K + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001328 + shortname: SRFA161 + longname: Simulated Reflectance Factor for ABI GOES-16, Band-1 + units: '~' + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001329 + shortname: SRFA162 + longname: Simulated Reflectance Factor for ABI GOES-16, Band-2 + units: '~' + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001330 + shortname: SRFA163 + longname: Simulated Reflectance Factor for ABI GOES-16, Band-3 + units: '~' + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001331 + shortname: SRFA164 + longname: Simulated Reflectance Factor for ABI GOES-16, Band-4 + units: '~' + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001332 + shortname: SRFA165 + longname: Simulated Reflectance Factor for ABI GOES-16, Band-5 + units: '~' + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001333 + shortname: SRFA166 + longname: Simulated Reflectance Factor for ABI GOES-16, Band-6 + units: '~' + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001334 + shortname: SRFA171 + longname: Simulated Reflectance Factor for ABI GOES-17, Band-1 + units: '~' + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001335 + shortname: SRFA172 + longname: Simulated Reflectance Factor for ABI GOES-17, Band-2 + units: '~' + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001336 + shortname: SRFA173 + longname: Simulated Reflectance Factor for ABI GOES-17, Band-3 + units: '~' + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001337 + shortname: SRFA174 + longname: Simulated Reflectance Factor for ABI GOES-17, Band-4 + units: '~' + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001338 + shortname: SRFA175 + longname: Simulated Reflectance Factor for ABI GOES-17, Band-5 + units: '~' + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001339 + shortname: SRFA176 + longname: Simulated Reflectance Factor for ABI GOES-17, Band-6 + units: '~' + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 7001353 + shortname: VRATE + longname: Ventilation Rate + units: m**2 s**-1 + description: '' + access_ids: [] + origin_ids: + - 7 +- id: 85001156 + shortname: PREC_CONVEC + longname: Total convective Precipitation + units: kg m**-2 + description: '' + access_ids: [] + origin_ids: + - 85 +- id: 85001157 + shortname: PREC_GDE_ECH + longname: Total large scale precipitation + units: kg m**-2 + description: '' + access_ids: [] + origin_ids: + - 85 +- id: 85001160 + shortname: CAPE_INS + longname: Convective Available Potential Energy instantaneous + units: m**2 s**-2 + description: '' + access_ids: [] + origin_ids: + - 85 diff --git a/share/metkit/unit_metadata.yaml b/share/metkit/unit_metadata.yaml new file mode 100644 index 00000000..eea86322 --- /dev/null +++ b/share/metkit/unit_metadata.yaml @@ -0,0 +1,416 @@ +- id: 1 + name: m**2 s**-1 +- id: 2 + name: K +- id: 3 + name: (0 - 1) +- id: 4 + name: m +- id: 5 + name: m s**-1 +- id: 6 + name: J m**-2 +- id: 7 + name: '~' +- id: 8 + name: s**-1 +- id: 9 + name: kg m**-3 +- id: 10 + name: m**3 m**-3 +- id: 11 + name: 10**-6 W m**-2 sr**-1 m**-1 +- id: 12 + name: s +- id: 13 + name: mol mol**-1 +- id: 14 + name: N m**-2 s +- id: 15 + name: m**2 s**-2 +- id: 16 + name: Pa +- id: 17 + name: J kg**-1 +- id: 18 + name: K m**2 kg**-1 s**-1 +- id: 19 + name: m**2 m**-2 +- id: 20 + name: s m**-1 +- id: 21 + name: kg kg**-1 +- id: 22 + name: kg m**-2 +- id: 23 + name: dimensionless +- id: 24 + name: m**-3 +- id: 25 + name: Various +- id: 26 + name: Pa s**-1 +- id: 27 + name: m of water equivalent +- id: 28 + name: gpm +- id: 29 + name: '%' +- id: 30 + name: radians +- id: 31 + name: m**2 +- id: 32 + name: N m**-2 +- id: 33 + name: kg m**-2 s**-1 +- id: 34 + name: (-1 to 1) +- id: 35 + name: Millimetres*100 + number of stations +- id: 36 + name: kg m**-2 s +- id: 37 + name: K s**-1 +- id: 38 + name: m**2 s**-3 +- id: 39 + name: kg kg**-1 s**-1 +- id: 40 + name: DU +- id: 41 + name: degrees +- id: 42 + name: m**2 s radian**-1 +- id: 43 + name: deg C +- id: 44 + name: psu +- id: 45 + name: kg m**-3 -1000 +- id: 46 + name: m s**-2 +- id: 47 + name: m s**-1 deg C +- id: 48 + name: m s**-1 degC +- id: 49 + name: m**3 s**-1 +- id: 50 + name: N m**-3 +- id: 51 + name: Nm**-3 +- id: 52 + name: degrees C +- id: 53 + name: J m**-1 s**-1 +- id: 54 + name: m s**-1 per time step +- id: 55 + name: psu per time step +- id: 56 + name: deg C per time step +- id: 57 + name: Pa m**-1 +- id: 58 + name: N m**-2 s**-1 +- id: 59 + name: K m**2 s**-2 +- id: 60 + name: m**3 s**-3 +- id: 61 + name: K m s**-1 +- id: 62 + name: Pa m**2 s**-3 +- id: 63 + name: K Pa s**-1 +- id: 64 + name: Pa m s**-2 +- id: 65 + name: K kg m**-2 +- id: 66 + name: kg m**-1 s**-1 +- id: 67 + name: m**4 s**-4 +- id: 68 + name: m**2 K s**-2 +- id: 69 + name: K**2 +- id: 70 + name: m s**-1 K +- id: 71 + name: m**2 Pa s**-3 +- id: 72 + name: Pa s**-1 K +- id: 73 + name: m Pa s**-2 +- id: 74 + name: Pa**2 s**-2 +- id: 75 + name: Pa**2 +- id: 76 + name: W m**-2 +- id: 78 + name: m of water equivalent s**-1 +- id: 79 + name: W m**-2 s**-1 +- id: 80 + name: kg C m**-2 s**-1 +- id: 81 + name: (Code table 4.239) +- id: 82 + name: g kg**-1 m**-2 s**-1 +- id: 83 + name: g kg**-1 s**-1 +- id: 84 + name: W**-2 m**4 +- id: 85 + name: kg s**-1 m**-2 +- id: 86 + name: m**-1 +- id: 87 + name: m**3 m**-2 +- id: 88 + name: J kg**-1 s**-1 +- id: 89 + name: s**-2 +- id: 90 + name: kg s**2 m**-5 +- id: 92 + name: Degree true +- id: 93 + name: W m**-1 sr**-1 +- id: 94 + name: W m**-3 sr**-1 +- id: 95 + name: J +- id: 96 + name: m**-1 sr**-1 +- id: 97 + name: m**2/3 s**-1 +- id: 98 + name: day +- id: 100 + name: (Code table 4.201) +- id: 103 + name: (Code table 4.202) +- id: 104 + name: (Code table 4.222) +- id: 105 + name: Proportion +- id: 106 + name: Numeric +- id: 107 + name: km**-2 day**-1 +- id: 110 + name: (Code table 4.203) +- id: 111 + name: (Code table 4.204) +- id: 112 + name: (Code table 4.234) +- id: 113 + name: (Code table 4.205) +- id: 114 + name: Dobson +- id: 115 + name: dB +- id: 116 + name: kg m**-1 +- id: 117 + name: Bq m**-3 +- id: 118 + name: Bq m**-2 +- id: 119 + name: Bq s m**-3 +- id: 120 + name: (Code table 4.206) +- id: 121 + name: (Code table 4.207) +- id: 122 + name: (Code table 4.208) +- id: 123 + name: (Code table 4.209) +- id: 124 + name: (Code table 4.210) +- id: 125 + name: (Code table 4.211) +- id: 126 + name: CCITTIA5 +- id: 127 + name: (Code table 4.215) +- id: 128 + name: (Code table 4.216) +- id: 129 + name: kg**-2 s**-1 +- id: 130 + name: (Code table 4.212) +- id: 131 + name: (Code table JMA-252) +- id: 133 + name: (Code table 4.219) +- id: 134 + name: Degree +- id: 137 + name: J m**-2 K**-1 +- id: 139 + name: kg (m**2 s**-1)**-1 +- id: 140 + name: kg (kg s**-1)**-1 +- id: 142 + name: cm per day +- id: 143 + name: g kg**-1 m +- id: 145 + name: mm per day +- id: 146 + name: m s**-1 per day +- id: 147 + name: g kg**-1 +- id: 148 + name: deg +- id: 154 + name: (s m**-1)**-1 +- id: 157 + name: ln(kPa) +- id: 158 + name: kg (m**2 s-1)**-1 +- id: 159 + name: 10**-3 +- id: 161 + name: (10**-6 g) m**-3 +- id: 162 + name: log10((10**-6g) m**-3) +- id: 163 + name: ppb +- id: 164 + name: mm**6 m**-3 +- id: 165 + name: categorical +- id: 166 + name: Integer +- id: 167 + name: log10(kg m**-3) +- id: 168 + name: Fraction +- id: 169 + name: ppm +- id: 170 + name: Integer(0-13) +- id: 171 + name: 10**-3 m**-2 +- id: 173 + name: Index +- id: 176 + name: degreeperday +- id: 177 + name: psuperday +- id: 178 + name: W m**-1 +- id: 179 + name: W +- id: 180 + name: kg**2 m**-4 +- id: 181 + name: s**-1 m**-2 +- id: 182 + name: Degree N +- id: 183 + name: Degree E +- id: 184 + name: m**3 kg**-1 s**-1 +- id: 185 + name: m**2 kg**-1 s**-1 +- id: 186 + name: W m sr m**-2 +- id: 188 + name: 10**5 s**-1 +- id: 189 + name: K s**-2 +- id: 190 + name: K m**-1 +- id: 191 + name: Pa hPa +- id: 192 + name: Ws m**-2 +- id: 193 + name: cbar s**-1 +- id: 194 + name: cm +- id: 195 + name: dam +- id: 196 + name: hPa +- id: 197 + name: image^data +- id: 198 + name: kg m**-2/day +- id: 199 + name: ln(cbar) +- id: 200 + name: m cm +- id: 201 + name: m s**-12 +- id: 202 + name: m**2 s**-12 +- id: 203 + name: mb +- id: 204 + name: s s**-1 +- id: 205 + name: s**-12 +- id: 206 + name: -/+ +- id: 207 + name: m**3 +- id: 208 + name: m**3 s**-1 m**-1 +- id: 209 + name: (Code table 4.217) +- id: 210 + name: (Code table 4.218) +- id: 211 + name: (Code table 4.223) +- id: 212 + name: K per day +- id: 213 + name: kg kg**-1 per day +- id: 214 + name: mg kg**-1 +- id: 215 + name: kg m**-3 s**-1 +- id: 216 + name: psu*m +- id: 217 + name: hour +- id: 218 + name: Number m**-2 +- id: 219 + name: Person m**-2 +- id: 220 + name: Bites per day per person +- id: 221 + name: Byte +- id: 222 + name: J m**-1 +- id: 223 + name: W s +- id: 224 + name: km**-2 +- id: 225 + name: day**-1 +- id: 226 + name: '% K' +- id: 227 + name: '% m**3 m**-3' +- id: 228 + name: K K +- id: 229 + name: K m**3 m**-3 +- id: 230 + name: m**3 m**-3 m**3 m**-3 +- id: 231 + name: (Code table 4.213) +- id: 232 + name: (Code table 4.106) +- id: 233 + name: (Code table 4.253)